:root {
  --studio-bg: radial-gradient(circle at 10% -20%, rgba(59, 130, 246, 0.4), transparent 40%),
    radial-gradient(circle at 85% -10%, rgba(236, 72, 153, 0.28), transparent 50%),
    radial-gradient(circle at 40% 120%, rgba(147, 51, 234, 0.35), transparent 55%),
    #050810;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: "Urbanist", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--studio-bg);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

body.no-scroll {
  overflow: hidden;
}

.background-overlay {
  background: linear-gradient(125deg, rgba(236, 72, 153, 0.12), transparent 45%),
    linear-gradient(220deg, rgba(59, 130, 246, 0.12), transparent 60%);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) 96px;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 9vw, 100px);
  width: 100%;
  box-sizing: border-box;
}

.header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 36px);
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: clamp(16px, 4vw, 32px);
}

.nav a {
  color: rgba(203, 213, 225, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 160ms ease;
}

.nav a:hover {
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  padding-top: clamp(24px, 8vw, 96px);
  width: 100%;
  box-sizing: border-box;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}


.hero-visual {
  position: relative;
  display: grid;
  gap: clamp(20px, 4vw, 30px);
  justify-items: center;
}

.hero-orb {
  position: relative;
  width: clamp(260px, 40vw, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orb-ring {
  position: absolute;
  width: 94%;
  height: 94%;
  border-radius: 50%;
  border: 2px solid rgba(236, 72, 153, 0.4);
  filter: blur(0.4px);
}

.orb-core {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(236, 72, 153, 0.9), rgba(59, 130, 246, 0.4));
  filter: blur(2px);
  box-shadow: 0 40px 120px -40px rgba(236, 72, 153, 0.8);
}

.orb-spark {
  position: absolute;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.9);
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.9);
  animation: orbit 6s linear infinite;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(160px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(160px) rotate(-360deg);
  }
}

.hero-quote {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 20px;
  padding: clamp(18px, 3.5vw, 26px);
  max-width: 320px;
  width: 100%;
  text-align: center;
  color: rgba(226, 232, 240, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px -50px rgba(15, 23, 42, 0.85);
  box-sizing: border-box;
}

.hero-quote span {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.8);
}

.games .section-heading {
  max-width: 540px;
  width: 100%;
  box-sizing: border-box;
}

.game-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4.6vw, 36px);
  width: 100%;
  box-sizing: border-box;
}

.game-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.22);
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(260px, 1fr);
  min-height: clamp(220px, 32vw, 320px);
  box-shadow: 0 40px 90px -48px rgba(15, 23, 42, 0.9);
  transition: transform 200ms ease, border-color 200ms ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(236, 72, 153, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.4);
}

.game-card:hover::after {
  opacity: 1;
}

.game-cover {
  position: relative;
  min-height: clamp(220px, 32vw, 320px);
  background-size: cover;
  background-position: center;
  filter: saturate(1.15);
}

.game-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.58));
}

.neon-one {
  background-image: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(59, 130, 246, 0.08)),
    url("img/insaat.png");
}

.neon-two {
  background-image: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(59, 130, 246, 0.1)),
    url("img/sehirtemiz.png");
}

.neon-three {
  background-image: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(125, 211, 252, 0.12)),
    url("img/tennis.png");
}

.game-meta {
  padding: clamp(26px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  color: rgba(226, 232, 240, 0.88);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.78));
}

.game-meta span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(148, 163, 184, 0.78);
}

.game-meta h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.pipeline-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 4vw, 28px);
  width: 100%;
  box-sizing: border-box;
}

.pipeline article {
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 32px);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.pipeline article:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.4);
}

.step-index {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-content: center;
  background: rgba(59, 130, 246, 0.24);
  color: white;
  font-weight: 600;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  width: 100%;
  box-sizing: border-box;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.about-text p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: rgba(203, 213, 225, 0.85);
  margin: 0;
}

.about-text p:first-child {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(226, 232, 240, 0.9);
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.9), rgba(147, 51, 234, 0.9));
  color: white;
  box-shadow: 0 20px 44px -20px rgba(236, 72, 153, 0.85);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -20px rgba(236, 72, 153, 0.9);
}

.ghost-button {
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: rgba(226, 232, 240, 0.85);
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(14px);
}

.ghost-button:hover {
  transform: translateY(-2px);
  color: white;
  border-color: rgba(226, 232, 240, 0.5);
}

.cta {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(59, 130, 246, 0.22));
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 32px;
  padding: clamp(32px, 6vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(22px, 4vw, 32px);
  align-items: center;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px -40px rgba(15, 23, 42, 0.9);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.cta-content p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.splash {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 999;
  opacity: 1;
  transition: opacity 600ms ease;
}

.splash-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(236, 72, 153, 0.35), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.28), transparent 65%),
    rgba(5, 8, 16, 0.98);
  backdrop-filter: blur(26px);
}

.splash-hidden {
  display: none;
}

.splash-hide {
  opacity: 0;
  pointer-events: none;
}

.splash-content {
  position: relative;
  text-align: center;
  padding: clamp(36px, 8vw, 72px);
  border-radius: 36px;
  background: rgba(5, 8, 16, 0.72);
  border: 1px solid rgba(236, 72, 153, 0.4);
  box-shadow: 0 50px 120px -40px rgba(236, 72, 153, 0.85);
  display: grid;
  gap: clamp(16px, 4vw, 26px);
  align-items: center;
  justify-items: center;
  backdrop-filter: blur(24px);
  animation: splashIn 700ms ease forwards;
}

.splash-logo {
  position: relative;
  width: clamp(120px, 20vw, 180px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.splash-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 2px solid rgba(236, 72, 153, 0.6);
  animation: splashRotate 6s linear infinite;
  box-shadow: 0 0 24px rgba(236, 72, 153, 0.45);
}

.splash-core {
  width: 62%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 35%, rgba(236, 72, 153, 0.9), rgba(59, 130, 246, 0.5));
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.7);
  filter: blur(1px);
}

.splash-glare {
  position: absolute;
  width: 24%;
  height: 24%;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.9);
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.9);
  animation: splashOrbit 5s ease-in-out infinite;
}

.splash-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: rgba(236, 72, 153, 0.78);
}

.splash-content h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  color: white;
}

.splash-title {
  display: grid;
  gap: clamp(6px, 1.8vw, 10px);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  line-height: 1;
}

.splash-title span {
  display: block;
}

.splash-title-top {
  font-size: clamp(1.4rem, 3.6vw, 2.6rem);
  color: rgba(203, 213, 225, 0.85);
  letter-spacing: 0.26em;
}

.splash-title-bottom {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: white;
  text-shadow: 0 0 30px rgba(236, 72, 153, 0.55);
}

.splash-title::after {
  content: "";
  justify-self: center;
  width: min(220px, 55vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.6), transparent);
  margin-top: clamp(6px, 1.2vw, 10px);
}

.splash-progress {
  width: min(280px, 62vw);
  height: 4px;
  background: rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.splash-progress-bar {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.95), rgba(59, 130, 246, 0.95));
}

.splash-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.45), transparent);
  opacity: 0;
}

.splash-progress-bar.is-animating {
  animation: splashProgress 2.8s ease forwards;
}

.splash-progress-bar.is-animating::after {
  animation: splashPulse 1.2s ease-in-out infinite;
}

.splash-glow {
  position: absolute;
  inset: auto auto 12% auto;
  width: clamp(320px, 45vw, 540px);
  height: clamp(320px, 45vw, 540px);
  background: radial-gradient(circle, rgba(236, 72, 153, 0.38), transparent 60%);
  filter: blur(70px);
  z-index: -1;
}

@keyframes splashRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes splashOrbit {
  0% {
    transform: rotate(0deg) translateX(58px) rotate(0deg);
  }
  50% {
    transform: rotate(180deg) translateX(58px) rotate(-180deg);
  }
  100% {
    transform: rotate(360deg) translateX(58px) rotate(-360deg);
  }
}

@keyframes splashProgress {
  0% {
    transform: scaleX(0);
  }
  20% {
    transform: scaleX(0.1);
  }
  60% {
    transform: scaleX(0.75);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes splashIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes splashPulse {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-40%);
  }
  50% {
    opacity: 1;
    transform: translateX(40%);
  }
}

@media (max-width: 720px) {
  html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  .page {
    padding: 0 20px 72px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .header {
    flex-wrap: wrap;
    gap: 18px;
    padding: 24px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav a {
    font-size: 0.85rem;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 24px 20px;
    grid-template-columns: 1fr;
  }

  .cta-actions {
    align-items: stretch;
    width: 100%;
  }

  .splash-content {
    padding: 32px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .game-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .game-card {
    grid-template-columns: 1fr;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .game-cover {
    min-height: clamp(200px, 50vw, 260px);
    width: 100%;
    max-width: 100%;
  }

  .game-meta {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .pipeline-track {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-content {
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-orb {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1;
  }

  .hero-quote {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }

  .section-heading {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .games .section-heading {
    max-width: 100%;
    width: 100%;
  }

  .pipeline article {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

