@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/* ─── Variables ─── */
:root {
  --dark:        #212227;
  --dark-2:      #2a2b32;
  --dark-3:      #33343c;
  --light:       #FAFAFA;
  --light-dim:   rgba(250, 250, 250, 0.65);
  --accent:      #C1E3FF;
  --accent-dim:  rgba(193, 227, 255, 0.10);
  --accent-mid:  #89C4F4;
  --accent-glow: rgba(193, 227, 255, 0.25);
  --electric:    #7DD3FF;
  --electric-hot:#F7FBFF;
  --electric-dim:rgba(125, 211, 255, 0.16);

  --font-head: 'League Spartan', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-h:    100px;
  --max-w:    1200px;
  --radius:   12px;
  --ease:     0.3s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body {
  background:
    radial-gradient(circle at 12% 22%, rgba(193, 227, 255, 0.07) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 14%, rgba(250, 250, 250, 0.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 42% 72%, rgba(137, 196, 244, 0.06) 0 1px, transparent 1.5px),
    radial-gradient(ellipse at 72% 18%, rgba(125, 211, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #1b1c22 0%, var(--dark) 44%, #191a20 100%);
  background-size: 180px 180px, 260px 260px, 220px 220px, 100% 100%, 100% 100%;
  color: var(--light);
  font-family: var(--font-body);
  line-height: 1.6;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 9% 18%, rgba(250, 250, 250, 0.18) 0 1px, transparent 1.8px),
    radial-gradient(circle at 31% 82%, rgba(193, 227, 255, 0.16) 0 1px, transparent 1.8px),
    radial-gradient(circle at 84% 64%, rgba(250, 250, 250, 0.12) 0 1px, transparent 1.8px),
    linear-gradient(118deg, transparent 0 43%, rgba(125, 211, 255, 0.07) 43.2% 43.7%, transparent 44%),
    linear-gradient(302deg, transparent 0 58%, rgba(247, 251, 255, 0.05) 58.2% 58.55%, transparent 59%),
    radial-gradient(circle at 70% 18%, rgba(125, 211, 255, 0.07), transparent 28%);
  background-size: 320px 320px, 440px 440px, 520px 520px, 100% 100%, 100% 100%, 100% 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
p, h1, h2, h3, a, span, strong { overflow-wrap: break-word; }

.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  border-radius: 60%;
  background: radial-gradient(circle, rgba(193, 227, 255, 0.18) 0%, rgba(125, 211, 255, 0.10) 28%, transparent 68%);
  mix-blend-mode: screen;
  translate: -50% -50%;
  transition: opacity 0.22s ease;
  will-change: transform, opacity;
}

.cursor-light.is-active { opacity: 1; }

.page-neon-frame {
  position: fixed;
  inset: 12px;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(125, 211, 255, 0.34);
  border-radius: 14px;
  box-shadow:
    inset 0 0 18px rgba(125, 211, 255, 0.12),
    0 0 24px rgba(125, 211, 255, 0.12);
}

.page-neon-frame::before,
.page-neon-frame::after {
  content: '';
  position: absolute;
  width: min(18vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 227, 255, 0.86), transparent);
  box-shadow: 0 0 14px rgba(125, 211, 255, 0.48);
}

.page-neon-frame::before {
  top: -1px;
  left: 36px;
}

.page-neon-frame::after {
  right: 36px;
  bottom: -1px;
}

main,
section,
footer,
nav {
  width: 100%;
  max-width: 100%;
}

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(33, 34, 39, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 227, 255, 0.07);
  z-index: 200;
  transition: background var(--ease), border-color var(--ease);
}
nav.scrolled {
  background: rgba(33, 34, 39, 0.97);
  border-bottom-color: rgba(193, 227, 255, 0.12);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25), 0 1px 18px rgba(125, 211, 255, 0.08);
}

.nav-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  display: block;
  width: auto;
  height: clamp(70px, calc(var(--nav-h) - 16px), 86px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.nav-logo .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--electric-hot);
  box-shadow: 0 0 12px var(--accent-glow), 0 0 24px var(--electric-dim);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--light-dim);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active {
  color: var(--accent);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--dark) !important;
  padding: 9px 22px !important;
  border-radius: 7px;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease) !important;
}
.nav-cta:hover {
  background: var(--light) !important;
  box-shadow: 0 4px 20px var(--accent-glow) !important;
  transform: translateY(-1px);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 2px;
}

.nav-language {
  display: flex;
  align-items: center;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(193, 227, 255, 0.12);
  border-radius: 999px;
  background: rgba(193, 227, 255, 0.05);
}

.language-switcher__option {
  min-width: 48px;
  padding: 7px 12px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--light-dim);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}

.language-switcher__option:hover,
.language-switcher__option:focus-visible {
  color: var(--light);
  outline: none;
}

.language-switcher__option.is-active {
  color: var(--dark);
  background: var(--accent);
  box-shadow: 0 0 18px rgba(193, 227, 255, 0.22);
}

.nav-links .social-link,
.social-link--nav {
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--light-dim);
}

.nav-links .social-link.active::after { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 17px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile menu */
.nav-mobile {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(33, 34, 39, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 227, 255, 0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav-mobile.open { max-height: 460px; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li a {
  display: block;
  padding: 15px 28px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--light-dim);
  border-bottom: 1px solid rgba(193, 227, 255, 0.04);
  transition: color var(--ease), background var(--ease);
}
.nav-mobile ul li a:hover { color: var(--accent); background: var(--accent-dim); }
.nav-mobile ul li:last-child a { border-bottom: none; }

.nav-mobile-language {
  padding: 18px 28px 0;
}

.language-switcher--mobile {
  width: 100%;
  justify-content: space-between;
}

.language-switcher--mobile .language-switcher__option {
  flex: 1 1 50%;
  min-width: 0;
  text-transform: none;
  letter-spacing: 0.02em;
}

.nav-mobile-socials {
  display: flex;
  gap: 10px;
  padding: 16px 20px 20px;
}

.nav-mobile-socials .social-link {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: inset 0 -2px 0 rgba(33, 34, 39, 0.18);
}
.btn-primary:hover {
  background: var(--electric-hot);
  box-shadow: 0 8px 32px var(--accent-glow), 0 0 24px var(--electric-dim);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--light);
  border: 1.5px solid rgba(250, 250, 250, 0.22);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 24px rgba(125, 211, 255, 0.09);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 42px; font-size: 1.0625rem; }

/* ─── Section helpers ─── */
section { padding: 100px 28px; }
section[id] { scroll-margin-top: var(--nav-h); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-family: 'Josefin Sans';
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  -webkit-text-stroke: 1px rgba(247, 251, 255, 0.28);
  text-shadow:
    0 0 8px rgba(193, 227, 255, 0.28),
    0 0 22px rgba(125, 211, 255, 0.22),
    0 0 42px rgba(125, 211, 255, 0.14);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  max-width: 100%;
}

.section-label--contact {
  white-space: nowrap;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--light-dim);
  font-size: 1.0625rem;
  max-width: 480px;
  font-weight: 300;
}
.section-header { margin-bottom: 56px; }

/* ─── Hero (shared) ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 28px 0;
}

.game-hero::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: clamp(82px, 12vw, 150px);
  height: clamp(180px, 25vw, 330px);
  top: 18%;
  right: clamp(18px, 8vw, 132px);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.28), rgba(125, 211, 255, 0.09));
  clip-path: polygon(56% 0, 96% 0, 66% 39%, 100% 39%, 26% 100%, 43% 56%, 0 56%);
  opacity: 0.48;
  pointer-events: none;
  filter: drop-shadow(0 0 22px rgba(125, 211, 255, 0.2));
  animation: boltPulse 4.8s ease-in-out infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-videos {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.42) contrast(1.02);
  transform: scale(1.06);
}

.hero-bg-video--primary {
  opacity: 0.50;
}

.hero-bg-video--secondary {
  opacity: 0.12;
  mix-blend-mode: screen;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(250, 250, 250, 0.18) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(193, 227, 255, 0.14) 0 1px, transparent 1.6px),
    linear-gradient(128deg, transparent 0 48%, rgba(125, 211, 255, 0.04) 48.15% 48.45%, transparent 48.8%),
    radial-gradient(circle, rgba(193, 227, 255, 0.13) 1px, transparent 1px);
  background-size: 240px 240px, 380px 380px, 36px 36px, 36px 36px;
  animation: starDrift 44s linear infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 19, 24, 0.72) 0%, rgba(24, 25, 31, 0.56) 38%, rgba(24, 25, 31, 0.84) 100%),
    radial-gradient(ellipse 42% 28% at 18% 28%, rgba(137, 196, 244, 0.06), transparent 72%),
    radial-gradient(ellipse 36% 24% at 82% 68%, rgba(125, 211, 255, 0.05), transparent 74%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(193, 227, 255, 0.04) 0%, transparent 70%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(193, 227, 255, 0.07) 0%, transparent 70%);
  top: -150px; left: 25%;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(193, 227, 255, 0.045) 0%, transparent 70%);
  bottom: -80px; right: 15%;
  animation: orbFloat 15s ease-in-out infinite reverse;
  animation-delay: -6s;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(100%, 1600px);
}
.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(193, 227, 255, 0.28);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
  background: var(--accent-dim);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .hero-title-accent {
  color: var(--accent);
  text-shadow: 0 0 34px rgba(125, 211, 255, 0.45), 0 0 70px rgba(193, 227, 255, 0.28);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--light-dim);
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 250, 250, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: bounceDown 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 50px; height: 50px; stroke: var(--accent); }

/* ─── Games section ─── */
#games { background: var(--dark); }

.games-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 32px;
  flex-wrap: wrap;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.game-card {
  background: var(--dark-2);
  border: 1px solid rgba(193, 227, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(125deg, transparent 0 68%, rgba(125, 211, 255, 0.12) 68.4% 69%, transparent 69.4%);
  opacity: 0;
  transition: opacity var(--ease);
}
.game-card:hover {
  border-color: rgba(125, 211, 255, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 44px var(--electric-dim);
}
.game-card:hover::before { opacity: 1; }
.game-card--upcoming { cursor: default; }
.game-card--upcoming:hover { transform: none; box-shadow: none; border-color: rgba(193, 227, 255, 0.08); }

.game-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
}
.game-card-image img {
  width: 100%; height: 100%;
  object-fit:cover;
  transition: transform 0.6s ease;
}
.game-card-image--ml-poster {
  object-position: center 34%;
}
.game-card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-card-hover-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.6s ease;
  z-index: 1;
}
.game-card-hover-video + .game-card-image-placeholder {
  display: none;
}
.game-card:hover .game-card-hover-video {
  opacity: 1;
}
.game-card:hover .game-card-image img { transform: scale(1.06); }
.game-card:hover .game-card-image video { transform: scale(1.06); }

.game-card-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-3) 0%, #1b1c22 100%);
}
.game-card-image-placeholder--dim svg { opacity: 0.4; }

.game-card-status {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
}
.status-early-access {
  background: rgba(193, 227, 255, 0.13);
  color: var(--accent);
  border: 1px solid rgba(193, 227, 255, 0.28);
}
.status-coming-soon {
  background: rgba(250, 250, 250, 0.07);
  color: rgba(250, 250, 250, 0.45);
  border: 1px solid rgba(250, 250, 250, 0.12);
}

.game-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.game-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--light-dim);
  background: rgba(250, 250, 250, 0.06);
  padding: 3px 8px;
  border-radius: 4px;
}
.game-card-title {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.game-card-desc {
  font-size: 0.875rem;
  color: var(--light-dim);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.game-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.game-card-action-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.game-card-price {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}
.game-card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
}
.game-card-link--secondary {
  color: rgba(250, 250, 250, 0.7);
}
.game-card-link--secondary:hover {
  color: var(--light);
}
.game-card:hover .game-card-link { gap: 11px; }

/* ─── About ─── */
#services {
  background: linear-gradient(180deg, rgba(42, 43, 50, 0.94) 0%, rgba(33, 34, 39, 0.98) 100%);
  border-top: 1px solid rgba(193, 227, 255, 0.05);
  border-bottom: 1px solid rgba(193, 227, 255, 0.05);
}

.services-carousel {
  position: relative;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(193, 227, 255, 0.16);
  background: rgba(193, 227, 255, 0.06);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), opacity var(--ease);
}

.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 255, 0.34);
  background: rgba(193, 227, 255, 0.12);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 24px;
}

.project-card {
  flex: 0 0 min(380px, calc(100vw - 84px));
  scroll-snap-align: start;
  min-height: 100%;
}

.project-card-image {
  background:
    radial-gradient(circle at top left, rgba(193, 227, 255, 0.14), transparent 42%),
    linear-gradient(135deg, #323442 0%, #1f2026 100%);
}

.project-card-image--jose-grooming {
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 30%, rgba(193, 227, 255, 0.1), transparent 34%),
    linear-gradient(135deg, #313341 0%, #1b1c22 100%);
}

.project-card-video {
  transition: transform 0.6s ease;
}


.project-card .game-card-image-placeholder {
  background:
    radial-gradient(circle at 30% 20%, rgba(193, 227, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #313341 0%, #1b1c22 100%);
}

.project-card .game-card-price {
  font-size: 0.92rem;
}

#partners {
  position: relative;
  overflow: hidden;
}

.partners-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 520px);
  gap: 48px;
  align-items: center;
}

.partners-copy {
  margin-bottom: 0;
}

.partners-showcase {
  position: relative;
  min-height: 420px;
}

.partners-showcase-orbit {
  position: absolute;
  inset: 12% 10% 8%;
  border-radius: 50%;
  border: 1px solid rgba(193, 227, 255, 0.08);
  box-shadow:
    0 0 80px rgba(125, 211, 255, 0.08),
    inset 0 0 48px rgba(193, 227, 255, 0.04);
}

.partners-showcase-orbit::before,
.partners-showcase-orbit::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(193, 227, 255, 0.09);
}

.partners-showcase-orbit::after {
  inset: 26%;
  border-style: solid;
  opacity: 0.45;
}

.partners-showcase-frame {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(193, 227, 255, 0.1);
  background:
    radial-gradient(circle at 18% 22%, rgba(193, 227, 255, 0.14), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(125, 211, 255, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(49, 51, 61, 0.9) 0%, rgba(27, 28, 34, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(250, 250, 250, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.partners-showcase-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(250, 250, 250, 0.06) 35.5% 36.1%, transparent 36.6%),
    linear-gradient(300deg, transparent 0 62%, rgba(125, 211, 255, 0.08) 62.2% 62.8%, transparent 63%);
  pointer-events: none;
}

.partner-logo-stack {
  position: relative;
  min-height: 340px;
  padding: 20px;
}

.partner-logo-card {
  position: absolute;
  inset: 55% auto auto 50%;
  width: min(100%, 420px);
  min-height: 170px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  animation: partnerCardCycle 20s infinite;
}

.partner-logo-card img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.partner-logo-card--video {
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(10, 12, 18, 0.9);
  border: 1px solid rgba(193, 227, 255, 0.12);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(125, 211, 255, 0.08);
}

.partner-logo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.partner-logo-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(12, 18, 28, 0.08) 0%, rgba(10, 12, 18, 0.62) 72%, rgba(10, 12, 18, 0.88) 100%),
    linear-gradient(180deg, rgba(10, 12, 18, 0.1) 0%, rgba(10, 12, 18, 0.76) 100%);
}

.partner-logo-image--darknight {
  width: min(76%, 220px);
  filter:
    drop-shadow(0 0 22px rgba(193, 227, 255, 0.26))
    drop-shadow(0 0 42px rgba(125, 211, 255, 0.18));
}

.partner-logo-card--1 { animation-delay: 0s; }
.partner-logo-card--2 { animation-delay: 4s; }
.partner-logo-card--3 { animation-delay: 8s; }
.partner-logo-card--4 { animation-delay: 12s; }
.partner-logo-card--5 { animation-delay: 16s; }

.partner-logo-mark {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  background:
    radial-gradient(circle at 30% 25%, rgba(250, 250, 250, 0.85), rgba(193, 227, 255, 0.88) 58%, rgba(125, 211, 255, 0.82) 100%);
  box-shadow:
    0 0 26px rgba(193, 227, 255, 0.22),
    inset 0 -3px 10px rgba(33, 34, 39, 0.14);
}

.partner-logo-name {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--light);
  text-shadow: 0 0 18px rgba(125, 211, 255, 0.15);
}

.partners-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(193, 227, 255, 0.08);
  background: rgba(193, 227, 255, 0.04);
}

.partners-marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 16px 0;
  animation: partnerMarquee 22s linear infinite;
}

.partners-marquee-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.55);
  white-space: nowrap;
}

#about {
  background: var(--dark-2);
  border-top: 1px solid rgba(193, 227, 255, 0.06);
  border-bottom: 1px solid rgba(193, 227, 255, 0.06);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: var(--light-dim);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.0625rem;
}
.about-text p:last-of-type { margin-bottom: 32px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--dark);
  border: 1px solid rgba(193, 227, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 9px;
  height: 20px;
  background: rgba(125, 211, 255, 0.22);
  clip-path: polygon(58% 0, 100% 0, 62% 42%, 100% 42%, 24% 100%, 45% 54%, 0 54%);
}
.stat-card:hover { border-color: rgba(125, 211, 255, 0.32); }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--light-dim);
  font-weight: 400;
}

/* ─── Contact ─── */
.contact-section { text-align: center; }
.contact-inner { max-width: 1000px; margin: 0 auto; }
.contact-inner .section-sub { margin: 0 auto 32px; }

/* ─── Footer ─── */
footer {
  padding: 56px 28px 40px;
  border-top: 1px solid rgba(193, 227, 255, 0.08);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 255, 0.55), transparent);
  box-shadow: 0 0 18px rgba(125, 211, 255, 0.22);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color var(--ease);
}
.footer-logo:hover { color: var(--accent); }
.footer-logo .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(193, 227, 255, 0.06);
  border: 1px solid rgba(193, 227, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-dim);
  transition: all var(--ease);
}
.social-link:hover {
  background: var(--accent-dim);
  border-color: rgba(193, 227, 255, 0.3);
  color: var(--accent);
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }
.social-link--youtube svg { width: 18px; height: 18px; }
.social-link--tiktok svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(193, 227, 255, 0.06);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(250, 250, 250, 0.45);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.8125rem; color: rgba(250, 250, 250, 0.28); }

/* ─── Game Hero ─── */
.game-page .hero,
.game-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 28px 72px;
  justify-content: flex-start;
}

.game-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.game-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(193, 227, 255, 0.25);
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  background: var(--accent-dim);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.65);
  animation: pulseGreen 2s ease-in-out infinite;
}

.game-hero-title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  max-width: 760px;
}
.game-hero-title span {
  color: var(--accent);
  text-shadow: 0 0 34px rgba(125, 211, 255, 0.45), 0 0 70px rgba(193, 227, 255, 0.32);
}
.game-hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--light-dim);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.game-hero-desc {
  font-size: 1rem;
  color: rgba(250, 250, 250, 0.48);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 38px;
}
.game-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.game-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* Steam button variant */
.btn-steam {
  background: var(--accent);
  color: var(--dark);
  border: none;
}
.btn-steam:hover {
  background: var(--light);
  box-shadow: 0 10px 36px var(--accent-glow);
  transform: translateY(-2px);
}

/* ─── Game Overview ─── */
.game-overview {
  padding: 64px 28px;
  background: var(--dark-2);
  border-top: 1px solid rgba(193, 227, 255, 0.06);
  border-bottom: 1px solid rgba(193, 227, 255, 0.06);
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: rgba(193, 227, 255, 0.07);
  border: 1px solid rgba(193, 227, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}
.overview-item {
  background: var(--dark-2);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: background var(--ease);
}
.overview-item:hover { background: var(--dark-3); }
.overview-icon { font-size: 1.75rem; line-height: 1; margin-bottom: 4px; }
.overview-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.32);
}
.overview-value {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--light);
}

/* ─── Game About ─── */
.game-about {
  background: var(--dark-2);
  border-top: 1px solid rgba(193, 227, 255, 0.06);
  border-bottom: 1px solid rgba(193, 227, 255, 0.06);
}
.game-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.game-about-text .section-title { margin-bottom: 20px; }
.game-about-text p {
  color: var(--light-dim);
  line-height: 1.8;
  font-size: 1.0625rem;
  margin-bottom: 16px;
}
.game-about-text p:last-child { margin-bottom: 0; }
.game-about-highlights { display: flex; flex-direction: column; gap: 20px; }
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--dark);
  border: 1px solid rgba(193, 227, 255, 0.07);
  border-radius: 10px;
  transition: border-color var(--ease);
}
.highlight-item:hover { border-color: rgba(193, 227, 255, 0.18); }
.highlight-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 1px; }
.highlight-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--light);
}
.highlight-item p { font-size: 0.8125rem; color: var(--light-dim); line-height: 1.55; margin: 0; }

/* ─── Features ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(193, 227, 255, 0.07);
  border: 1px solid rgba(193, 227, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--dark);
  padding: 36px 32px;
  transition: background var(--ease);
}
.feature-card:hover { background: var(--dark-2); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(193, 227, 255, 0.15);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--light-dim);
  line-height: 1.7;
}

/* ─── Media ─── */
.media-section {
  background: var(--dark-2);
  border-top: 1px solid rgba(193, 227, 255, 0.06);
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.media-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.media-item--wide { grid-column: span 2; }

.media-placeholder {
  width: 100%; height: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(193, 227, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.media-placeholder:hover {
  border-color: rgba(193, 227, 255, 0.22);
  background: #3a3b44;
}
.media-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(250, 250, 250, 0.22);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Steam CTA ─── */
.steam-cta-section { background: var(--dark); }
.steam-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 64px;
  background: var(--dark-2);
  border: 1px solid rgba(193, 227, 255, 0.1);
  border-radius: 16px;
  flex-wrap: wrap;
}
.steam-cta-price {
  font-size: 1.125rem;
  color: var(--light-dim);
  margin-top: 12px;
}
.steam-cta-price strong { color: var(--accent); font-size: 1.5rem; }
.price-note { font-size: 0.8125rem; color: rgba(250, 250, 250, 0.32); }
.steam-cta-action { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.steam-cta-note { font-size: 0.875rem; color: var(--light-dim); }
.steam-cta-note a {
  color: var(--accent);
  border-bottom: 1px solid rgba(193, 227, 255, 0.28);
  transition: border-color var(--ease);
}
.steam-cta-note a:hover { border-color: var(--accent); }

/* ─── Animations ─── */
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 36px 36px; }
}
@keyframes starDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to   { background-position: 240px 180px, -180px 260px, 36px 36px, 36px 36px; }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.04); }
}
@keyframes boltPulse {
  0%, 100% { opacity: 0.34; transform: translateY(0) skewX(-4deg); }
  45%      { opacity: 0.62; transform: translateY(-8px) skewX(-4deg); }
  50%      { opacity: 0.88; filter: drop-shadow(0 0 30px rgba(125, 211, 255, 0.42)); }
  56%      { opacity: 0.44; }
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 8px rgba(74, 222, 128, 0.6); }
  50%       { box-shadow: 0 0 18px rgba(74, 222, 128, 0.9); }
}

/* ─── Scroll fade-in ─── */
@keyframes partnerCardCycle {
  0%, 16% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
  }
  20%, 36% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  40%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes partnerMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video,
  .hero-bg::before,
  .orb-1,
  .orb-2,
  .hero::before,
  .game-hero::before,
  .background-lightning,
  .partner-logo-card,
  .partners-marquee-track {
    animation: none;
  }

  .cursor-light {
    display: none;
  }

  .partner-logo-card {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }

  .partner-logo-card--1 {
    opacity: 1;
  }

  .hero-bg-video {
    display: none;
  }
}

/* ─── Responsive ─── */
@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-cta { padding: 8px 16px !important; }
  .nav-links .social-link,
  .social-link--nav {
    width: 34px;
    height: 34px;
  }

  .language-switcher__option {
    min-width: 44px;
    padding: 7px 10px;
  }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }

  .nav-inner { padding: 0 22px; }
  .nav-logo,
  .footer-logo {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .nav-language {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: calc(var(--nav-h) + 40px) 22px 56px;
  }

  .hero-title {
    font-size: clamp(2.65rem, 12vw, 5.5rem);
    line-height: 0.98;
  }

  .hero-subtitle { max-width: 620px; }

  .games-header {
    align-items: flex-start;
    margin-bottom: 36px;
  }

  .project-card {
    flex-basis: min(340px, calc(100vw - 72px));
  }

  .partners-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .partners-showcase,
  .partners-showcase-frame {
    min-height: 360px;
  }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .steam-cta { padding: 40px; }
  .steam-cta-action { align-items: flex-start; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .media-item--wide { grid-column: span 2; }

  .game-page .hero,
  .game-hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 56px) 22px 72px;
  }

  .game-hero-title {
    font-size: clamp(3.25rem, 13vw, 6.5rem);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 72px 20px; }
  .hero,
  .game-hero {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-bg {
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
  }

  .section-label {
    font-size: clamp(2.2rem, 12vw, 4rem);
    letter-spacing: 0.12em;
    line-height: 0.95;
    white-space: normal;
    overflow-wrap: anywhere;
    -webkit-text-stroke-width: 0.75px;
  }
  .section-label--contact {
    font-size: clamp(1.8rem, 8vw, 3rem);
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow-wrap: normal;
  }
  .section-title { font-size: clamp(2rem, 9vw, 2.7rem); }
  .section-sub { font-size: 1rem; }
  .games-grid { grid-template-columns: 1fr; }
  .services-carousel {
    padding-inline: 10px;
  }
  .carousel-controls {
    position: absolute;
    top: 138px;
    left: -2px;
    right: -2px;
    z-index: 4;
    justify-content: space-between;
    margin-bottom: 0;
    pointer-events: none;
  }
  .carousel-btn {
    width: 52px;
    height: 52px;
    background: rgba(33, 34, 39, 0.76);
    border-color: rgba(193, 227, 255, 0.22);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
    pointer-events: auto;
  }
  .project-card { flex-basis: min(320px, calc(100vw - 56px)); }
  .partners-showcase,
  .partners-showcase-frame {
    min-height: 320px;
  }
  .partner-logo-stack {
    min-height: 270px;
    padding: 24px;
  }
  .partner-logo-card {
    width: min(100%, 280px);
    min-height: 150px;
    padding: 18px 20px;
  }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .steam-cta { flex-direction: column; padding: 36px 28px; }
  .steam-cta-action { align-items: flex-start; width: 100%; }
  .steam-cta-action .btn { width: 100%; justify-content: center; }
  .game-hero { padding: calc(var(--nav-h) + 28px) 20px 56px; }
  .game-about-grid { grid-template-columns: 1fr; gap: 40px; }

  .hero::before,
  .game-hero::before {
    right: -12px;
    top: 13%;
    opacity: 0.28;
  }

  .section-label::before {
    width: 14px;
    height: 28px;
  }

  .btn {
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .hero-actions,
  .game-hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .game-hero-actions .btn {
    flex: 1 1 220px;
  }
}

@media (max-width: 560px) {
  :root { --nav-h: 64px; }

  body {
    background-size: 150px 150px, 220px 220px, 190px 190px, 100% 100%, 100% 100%;
  }

  body::before {
    background-size: 260px 260px, 340px 340px, 420px 420px, 100% 100%, 100% 100%, 100% 100%;
  }

  .nav-inner { padding: 0 18px; }
  .nav-logo,
  .footer-logo {
    max-width: 78%;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }

  .nav-mobile ul li a {
    padding: 16px 20px;
    font-size: 1rem;
  }

  section { padding: 64px 18px; }

  .section-label {
    font-size: clamp(2rem, 15vw, 3.35rem);
    letter-spacing: 0.08em;
    gap: 10px;
    text-shadow:
      0 0 7px rgba(193, 227, 255, 0.24),
      0 0 18px rgba(125, 211, 255, 0.18);
  }
  .section-label--contact {
    font-size: clamp(1.5rem, 7.6vw, 2.3rem);
    letter-spacing: 0.05em;
  }

  .hero {
    min-height: 100svh;
    justify-content: flex-start;
    padding: calc(var(--nav-h) + 48px) 18px 52px;
  }

  .hero::before,
  .game-hero::before {
    width: 64px;
    height: 148px;
    right: -20px;
  }

  .hero-content { text-align: left; }

  .hero-tag,
  .game-hero-badge {
    max-width: 100%;
    line-height: 1.35;
    white-space: normal;
  }

  .hero-title {
    font-size: clamp(2.45rem, 14vw, 3.65rem);
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }

  .hero-title br { display: none; }

  .hero-subtitle {
    margin: 0 0 30px;
    font-size: 1rem;
  }

  .hero-actions,
  .game-hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn,
  .game-hero-actions .btn,
  .contact-inner .btn {
    width: 100%;
    flex: none;
  }

  .btn {
    width: 100%;
    padding: 14px 18px;
  }

  .btn-lg {
    padding: 15px 18px;
    font-size: 0.98rem;
  }

  .games-header { gap: 12px; }
  .games-grid { gap: 18px; }
  .carousel-controls {
    top: 122px;
    left: -4px;
    right: -4px;
  }
  .carousel-track { gap: 18px; }
  .project-card { flex-basis: calc(100vw - 36px); }
  .partners-layout { gap: 24px; }
  .partners-showcase,
  .partners-showcase-frame {
    min-height: 280px;
  }
  .partner-logo-stack {
    min-height: 220px;
    padding: 20px;
  }
  .partner-logo-card {
    width: min(100%, 240px);
    min-height: 132px;
    border-radius: 20px;
  }
  .partner-logo-mark {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    font-size: 1.15rem;
  }
  .partners-marquee-track {
    gap: 24px;
    padding: 14px 0;
  }
  .game-card-body { padding: 20px; }
  .game-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .game-card-action-row {
    width: 100%;
    justify-content: flex-start;
  }

  .about-stats { grid-template-columns: 1fr; gap: 14px; }
  .stat-card { padding: 22px 20px; }
  .stat-number { font-size: 2.25rem; }

  .footer-links {
    width: 100%;
    gap: 12px 20px;
  }

  .game-page .hero,
  .game-hero {
    padding: calc(var(--nav-h) + 44px) 18px 58px;
  }

  .game-hero-title {
    font-size: clamp(3rem, 18vw, 4.7rem);
    letter-spacing: -0.025em;
  }

  .game-hero-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .overview-grid { grid-template-columns: 1fr; }
  .overview-item { padding: 22px 16px; }
  .highlight-item {
    gap: 12px;
    padding: 18px;
  }
  .feature-card { padding: 28px 22px; }
  .steam-cta { padding: 30px 20px; }
  .steam-cta-price strong { display: inline-block; }
  .price-note {
    display: block;
    margin-top: 4px;
  }

  .media-grid { grid-template-columns: 1fr; }
  .media-item--wide { grid-column: span 1; }
  .hero-scroll { display: none; }
}

@media (max-width: 380px) {
  .nav-logo,
  .footer-logo { font-size: 0.82rem; }

  .hero-title { font-size: 2.35rem; }
  .game-hero-title { font-size: 2.75rem; }
  .section-title { font-size: 1.85rem; }
  .tag { font-size: 0.63rem; }
}
