/* ==========================================================================
   Arcade Unlimited — Social Gaming Platform
   Stylesheet (mobile-first, BEM-ish, CSS Custom Properties)
   ========================================================================== */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  /* Brand palette — twilight teal + coral sunset */
  --c-bg:           #0d1424;
  --c-bg-2:         #131c33;
  --c-bg-3:         #1a2540;
  --c-surface:      rgba(255, 255, 255, 0.04);
  --c-surface-2:    rgba(255, 255, 255, 0.07);
  --c-border:       rgba(255, 255, 255, 0.10);
  --c-border-2:     rgba(255, 255, 255, 0.18);

  --c-primary:      #2dd4bf;   /* teal */
  --c-primary-2:    #14b8a6;
  --c-accent:       #fb7185;   /* coral */
  --c-accent-2:     #f43f5e;
  --c-gold:         #fcd34d;
  --c-violet:       #a78bfa;

  --c-text:         #f1f5f9;
  --c-text-muted:   #94a3b8;
  --c-text-dim:     #64748b;

  --c-success:      #34d399;
  --c-warning:      #fbbf24;
  --c-danger:       #f87171;

  /* Gradients */
  --g-primary:      linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
  --g-accent:       linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
  --g-play:         linear-gradient(135deg, #fcd34d 0%, #fb7185 50%, #a78bfa 100%);
  --g-play-hover:   linear-gradient(135deg, #fef08a 0%, #f43f5e 50%, #8b5cf6 100%);
  --g-bg-hero:      radial-gradient(ellipse at 20% 0%, rgba(45, 212, 191, 0.18), transparent 50%),
                    radial-gradient(ellipse at 80% 100%, rgba(251, 113, 133, 0.18), transparent 55%),
                    linear-gradient(180deg, #0b1020 0%, #131c33 100%);
  --g-card:         linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm:   0 2px 8px rgba(0, 0, 0, 0.25);
  --sh-md:   0 10px 30px rgba(0, 0, 0, 0.35);
  --sh-lg:   0 20px 60px rgba(0, 0, 0, 0.45);
  --sh-glow-play: 0 0 0 0 rgba(251, 113, 133, 0.55);

  /* Typography */
  --font-sans:    'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --container:    1200px;
  --header-h:     74px;

  /* Motion */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:       0.18s;
  --t-base:       0.3s;
  --t-slow:       0.6s;
}

/* ---------- Base / Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(45, 212, 191, 0.08), transparent 40%),
    radial-gradient(circle at 88% 92%, rgba(251, 113, 133, 0.08), transparent 45%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--c-accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p  { margin: 0 0 1em; color: var(--c-text-muted); }

::selection { background: var(--c-accent); color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section {
  padding: 4rem 0;
  position: relative;
}
.section--alt { background: linear-gradient(180deg, var(--c-bg-2), var(--c-bg)); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
  background: rgba(45, 212, 191, 0.10);
  border: 1px solid rgba(45, 212, 191, 0.25);
}
.section__title { margin-bottom: 0.75rem; }
.section__lead  { font-size: 1.05rem; }

.text-gradient {
  background: var(--g-play);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-base) var(--ease),
              background var(--t-base) var(--ease),
              color var(--t-fast) var(--ease);
  white-space: nowrap;
  position: relative;
  border: 1px solid transparent;
}
.btn i { width: 18px; height: 18px; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--g-primary);
  color: #0a1220;
  box-shadow: 0 8px 22px rgba(45, 212, 191, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(45, 212, 191, 0.45); color: #0a1220; }

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border-2);
}
.btn--ghost:hover { background: var(--c-surface-2); border-color: var(--c-primary); color: var(--c-primary); }

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary); color: #0a1220; }

.btn--full { width: 100%; }
.btn--lg   { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn--xl   { padding: 1.2rem 2.6rem; font-size: 1.15rem; }

/* ---------- PLAY button — special, glowing ---------- */
.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #1a0f08;
  background: var(--g-play);
  background-size: 200% 200%;
  border: none;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  transition: transform var(--t-base) var(--ease-out),
              background-position var(--t-slow) var(--ease),
              box-shadow var(--t-base) var(--ease);
  animation: pulse-glow 2.4s ease-in-out infinite, gradient-shift 6s ease infinite;
  box-shadow:
    0 10px 30px rgba(251, 113, 133, 0.35),
    0 0 0 0 rgba(251, 113, 133, 0.7);
}
.btn-play i { width: 20px; height: 20px; }
.btn-play::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: var(--g-play);
  filter: blur(14px);
  opacity: 0.55;
  z-index: -1;
  transition: opacity var(--t-base) var(--ease);
}
.btn-play:hover {
  transform: scale(1.07);
  background-image: var(--g-play-hover);
  box-shadow:
    0 20px 50px rgba(251, 113, 133, 0.6),
    0 0 0 8px rgba(251, 113, 133, 0.15);
}
.btn-play:hover::before { opacity: 0.85; }
.btn-play:active { transform: scale(0.97); }

.btn-play--xl {
  padding: 1.3rem 2.8rem;
  font-size: 1.2rem;
  animation: pulse-glow-strong 2s ease-in-out infinite, gradient-shift 6s ease infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 10px 30px rgba(251, 113, 133, 0.35), 0 0 0 0 rgba(251, 113, 133, 0.55); }
  50%      { box-shadow: 0 14px 40px rgba(251, 113, 133, 0.5),  0 0 0 14px rgba(251, 113, 133, 0); }
}
@keyframes pulse-glow-strong {
  0%, 100% { box-shadow: 0 14px 40px rgba(252, 211, 77, 0.4),  0 0 0 0 rgba(251, 113, 133, 0.6); }
  50%      { box-shadow: 0 22px 60px rgba(251, 113, 133, 0.6), 0 0 0 22px rgba(251, 113, 133, 0); }
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 20, 36, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t-base) var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.brand__icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--g-primary);
  box-shadow: 0 6px 18px rgba(45, 212, 191, 0.4);
}
.brand__icon svg { width: 22px; height: 22px; }
.brand:hover { color: var(--c-primary); }
.brand__name span { color: var(--c-primary); }

.nav { display: none; }
.nav__list { display: flex; gap: 0.4rem; align-items: center; }
.nav__link {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-text-muted);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav__link:hover, .nav__link.is-active {
  color: var(--c-text);
  background: var(--c-surface);
}

.header__cta { display: none; }

.burger {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.burger i { width: 22px; height: 22px; }

/* Mobile fullscreen overlay */
.mobile-nav {
  position: fixed;
  inset: 0;                       /* full viewport */
  width: 100vw;
  height: 100vh;
  height: 100dvh;                  /* dynamic vh for mobile browsers */
  background: linear-gradient(160deg, #0b1020 0%, #131c33 60%, #1a0f24 100%);
  z-index: 200;                    /* above header */
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out),
              visibility var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* decorative ambient glows inside overlay */
.mobile-nav::before,
.mobile-nav::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.mobile-nav::before {
  top: -120px; left: -80px;
  width: 320px; height: 320px;
  background: rgba(45, 212, 191, 0.35);
}
.mobile-nav::after {
  bottom: -140px; right: -100px;
  width: 360px; height: 360px;
  background: rgba(251, 113, 133, 0.35);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  position: relative;
  z-index: 2;
}
.mobile-nav__close {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  color: var(--c-text);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.mobile-nav__close:hover { background: var(--c-accent); color: #fff; transform: rotate(90deg); }
.mobile-nav__close i { width: 22px; height: 22px; }

.mobile-nav__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  border-radius: var(--r-lg);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.mobile-nav__link::after {
  content: '\2192';
  font-size: 1.4rem;
  color: var(--c-text-dim);
  transition: transform var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.mobile-nav__link:hover,
.mobile-nav__link:focus-visible,
.mobile-nav__link.is-active {
  background: rgba(45, 212, 191, 0.10);
  border-color: rgba(45, 212, 191, 0.45);
  color: var(--c-primary);
  transform: translateX(4px);
}
.mobile-nav__link:hover::after,
.mobile-nav__link.is-active::after {
  color: var(--c-primary);
  transform: translateX(4px);
}

.mobile-nav__cta { margin-top: 0.75rem; }
.mobile-nav__cta .btn-play { width: 100%; }

.mobile-nav__footer {
  position: relative;
  z-index: 2;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid var(--c-border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--c-text-dim);
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}
.mobile-nav__footer .badge-18 {
  width: 30px; height: 30px;
  font-size: 0.68rem;
  margin: 0 auto 0.5rem;
}
.mobile-nav__footer a {
  color: var(--c-text-muted);
  margin: 0 0.5rem;
}
.mobile-nav__footer a:hover { color: var(--c-primary); }

@media (min-width: 900px) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .burger { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background: var(--g-bg-hero);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(13, 20, 36, 0.85) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(251, 113, 133, 0.12);
  border: 1px solid rgba(251, 113, 133, 0.4);
  color: var(--c-accent);
  margin-bottom: 1.4rem;
}
.hero__title { margin-bottom: 1.2rem; }
.hero__title-line { display: block; }
.hero__slogan { font-size: 1.1rem; max-width: 540px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
}
.hero__visual svg { width: 100%; height: 100%; }

/* Floating decoration */
.hero__floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero__float {
  position: absolute;
  opacity: 0.55;
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
}
.hero__float--1 { top: 12%; left: 6%;  width: 56px; animation-delay: 0s; }
.hero__float--2 { top: 70%; left: 12%; width: 44px; animation-delay: 1.2s; }
.hero__float--3 { top: 22%; right: 8%; width: 60px; animation-delay: 2.4s; }
.hero__float--4 { top: 78%; right: 14%; width: 48px; animation-delay: 0.6s; }
.hero__float--5 { top: 45%; left: 48%; width: 38px; animation-delay: 3.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-22px) rotate(6deg); }
}

/* Particle layer */
.hero__particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.9), transparent 70%);
  filter: blur(1px);
  animation: drift 12s linear infinite;
}
@keyframes drift {
  0%   { transform: translateY(100vh) scale(0.5); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1.1); opacity: 0; }
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
  .hero__actions { gap: 1.2rem; }
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.about__media { position: relative; max-width: 520px; margin: 0 auto; }
.about__media svg { width: 100%; height: auto; border-radius: var(--r-xl); }

.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  background: var(--g-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.feature:hover { transform: translateY(-3px); border-color: rgba(45, 212, 191, 0.45); }
.feature__icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.12);
  color: var(--c-primary);
  border: 1px solid rgba(45, 212, 191, 0.3);
}
.feature__icon i { width: 22px; height: 22px; }
.feature__title { font-size: 1rem; margin: 0 0 0.25rem; font-family: var(--font-sans); font-weight: 700; }
.feature__text  { font-size: 0.92rem; color: var(--c-text-muted); margin: 0; }

@media (min-width: 768px) {
  .about__features { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 1fr 1.15fr; gap: 4rem; }
}

/* ---------- GAME SHOWCASE ---------- */
.showcase__card {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  background: var(--g-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.showcase__card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.25), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.showcase__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1a2540, #0d1424);
}
.showcase__media img {
  width: 100%; 
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.showcase__card:hover .showcase__media img { transform: scale(1.04); }
.showcase__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 20, 36, 0.7) 100%);
  pointer-events: none;
}
.showcase__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-pill);
  background: rgba(13, 20, 36, 0.7);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid rgba(252, 211, 77, 0.35);
  z-index: 2;
}
.showcase__name { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.showcase__desc { font-size: 1.05rem; margin-bottom: 1.2rem; }
.showcase__meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.6rem;
}
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-pill);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.chip i { width: 14px; height: 14px; color: var(--c-primary); }

@media (min-width: 900px) {
  .showcase__card { grid-template-columns: 1.1fr 1fr; padding: 2.5rem; gap: 3rem; }
  .showcase__body { display: flex; flex-direction: column; justify-content: center; }
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq__item {
  background: var(--g-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease);
}
.faq__item.is-open { border-color: rgba(45, 212, 191, 0.5); }
.faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--c-text);
}
.faq__btn:hover { color: var(--c-primary); }
.faq__icon {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-surface);
  color: var(--c-primary);
  transition: transform var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.faq__icon i { width: 18px; height: 18px; }
.faq__item.is-open .faq__icon { transform: rotate(180deg); background: var(--c-primary); color: #0a1220; }
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq__body-inner {
  padding: 0 1.4rem 1.4rem;
  color: var(--c-text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.t-card {
  padding: 1.5rem;
  background: var(--g-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  position: relative;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.t-card:hover { transform: translateY(-4px); border-color: rgba(251, 113, 133, 0.4); }
.t-card__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.t-card__avatar { flex: none; width: 48px; height: 48px; border-radius: 50%; overflow: hidden; }
.t-card__avatar svg { width: 100%; height: 100%; }
.t-card__name { font-weight: 700; color: var(--c-text); font-size: 0.98rem; line-height: 1.2; }
.t-card__location { color: var(--c-text-dim); font-size: 0.82rem; }
.t-card__stars { display: flex; gap: 2px; color: var(--c-gold); margin-bottom: 0.6rem; }
.t-card__stars i { width: 16px; height: 16px; fill: currentColor; }
.t-card__text { font-size: 0.95rem; line-height: 1.65; margin: 0; color: var(--c-text-muted); }
.t-card__quote {
  position: absolute;
  top: -10px; right: 16px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--g-accent);
  color: #fff;
}
.t-card__quote i { width: 18px; height: 18px; }

@media (min-width: 700px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

/* ---------- NEWSLETTER ---------- */
.newsletter {
  position: relative;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(251, 113, 133, 0.10));
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h2 { margin-bottom: 0.5rem; }
.newsletter p  { margin-bottom: 1.5rem; }
.newsletter__form { display: grid; gap: 0.9rem; max-width: 540px; margin: 0 auto; }
.newsletter__row  { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 600px) { .newsletter__row { grid-template-columns: 1fr auto; } }

/* ---------- Form controls ---------- */
.input, .textarea, .select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-size: 0.98rem;
  color: var(--c-text);
  background: rgba(13, 20, 36, 0.55);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--c-primary);
  background: rgba(13, 20, 36, 0.85);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.18);
}
.input::placeholder, .textarea::placeholder { color: var(--c-text-dim); }
.textarea { min-height: 140px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2394a3b8' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.select option { background: var(--c-bg-2); color: var(--c-text); }

.form-row { display: grid; gap: 1rem; }
@media (min-width: 700px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field__label { font-size: 0.88rem; font-weight: 600; color: var(--c-text); }
.field__label .req { color: var(--c-accent); }
.field__hint { font-size: 0.8rem; color: var(--c-text-dim); }
.field__error { font-size: 0.82rem; color: var(--c-danger); display: none; }
.field.is-error .input,
.field.is-error .textarea,
.field.is-error .select { border-color: var(--c-danger); }
.field.is-error .field__error { display: block; }

.checkbox {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}
.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 20px; height: 20px;
  border: 1.5px solid var(--c-border-2);
  border-radius: 6px;
  background: rgba(13, 20, 36, 0.6);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  margin-top: 2px;
}
.checkbox input[type="checkbox"]::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--g-primary);
  transform: scale(0);
  transition: transform var(--t-fast) var(--ease);
}
.checkbox input[type="checkbox"]:checked { border-color: var(--c-primary); }
.checkbox input[type="checkbox"]:checked::after { transform: scale(1); }
.checkbox a { color: var(--c-primary); text-decoration: underline; }

.form-status {
  display: none;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  border-radius: var(--r-md);
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--c-success);
  font-size: 0.95rem;
  text-align: center;
}
.form-status.is-visible { display: block; }

.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- DISCLAIMER ---------- */
.disclaimer {
  margin: 3rem 0;
}
.disclaimer__inner {
  display: grid;
  gap: 1.25rem;
  padding: 1.6rem;
  border: 1.5px dashed rgba(251, 113, 133, 0.45);
  border-radius: var(--r-lg);
  background: rgba(251, 113, 133, 0.06);
  align-items: start;
}
.disclaimer__head { display: flex; align-items: center; gap: 0.85rem; }
.disclaimer__icon {
  flex: none;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--g-accent);
  color: #fff;
}
.disclaimer__icon i { width: 24px; height: 24px; }
.disclaimer__title { margin: 0; font-size: 1.05rem; font-family: var(--font-sans); font-weight: 700; }
.disclaimer__badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.55rem;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--c-accent);
  color: #fff;
  letter-spacing: 0.05em;
}
.disclaimer__text { font-size: 0.92rem; color: var(--c-text-muted); margin: 0; line-height: 1.65; }

@media (min-width: 768px) {
  .disclaimer__inner { grid-template-columns: auto 1fr; gap: 1.4rem; padding: 1.8rem 2rem; }
  .disclaimer__head { padding-top: 4px; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--c-bg) 0%, #07101f 100%);
  border-top: 1px solid var(--c-border);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.footer__col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-text-dim);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}
.footer__about { max-width: 360px; font-size: 0.92rem; color: var(--c-text-muted); margin: 1rem 0 1rem; }
.footer__brand { margin-bottom: 0.5rem; }
.footer__list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__list a { color: var(--c-text-muted); font-size: 0.93rem; }
.footer__list a:hover { color: var(--c-primary); }
.footer__contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; color: var(--c-text-muted); }
.footer__contact-item i { width: 18px; height: 18px; color: var(--c-primary); flex: none; margin-top: 2px; }
.footer__contact-item a { color: inherit; }
.footer__contact-item a:hover { color: var(--c-primary); }

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.footer__copy { font-size: 0.85rem; color: var(--c-text-dim); margin: 0; }
.footer__badges { display: flex; align-items: center; gap: 0.6rem; }
.badge-18 {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  border: 2px solid rgba(255,255,255,0.2);
}
.footer__disclaim {
  font-size: 0.82rem;
  color: var(--c-text-dim);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 700px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

/* ---------- GAME PAGE ---------- */
.game-page { padding: 3rem 0 2rem; }
.game-page__head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.game-page__cta { text-align: center; margin-bottom: 2rem; }

.game-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 2rem 0 2.5rem;
}
.game-step {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem;
  background: var(--g-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}
.game-step__num {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--g-primary);
  color: #0a1220;
  font-weight: 800;
  font-family: var(--font-display);
}
.game-step__icon { color: var(--c-accent); }
.game-step__icon i { width: 18px; height: 18px; }
.game-step h4 { margin: 0 0 0.25rem; font-size: 1rem; font-family: var(--font-sans); }
.game-step p  { margin: 0; font-size: 0.9rem; }
@media (min-width: 700px) { .game-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .game-steps { grid-template-columns: repeat(4, 1fr); } }

.game-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0d1424, #1a2540);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(45, 212, 191, 0.15);
  overflow: hidden;
}
.game-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.game-frame__fallback {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--c-text-muted);
  font-size: 0.95rem;
  z-index: 0;
}

.game-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  color: var(--c-text-muted);
  display: flex; gap: 0.7rem; align-items: flex-start;
}
.game-note i { width: 20px; height: 20px; color: var(--c-primary); flex: none; margin-top: 2px; }

/* ---------- CONTACTS ---------- */
.contacts__grid {
  display: grid;
  gap: 2.5rem;
}
.contacts__info {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.4rem;
  background: var(--g-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.contact-card:hover { transform: translateX(4px); border-color: rgba(45, 212, 191, 0.4); }
.contact-card__icon {
  flex: none;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--g-primary);
  color: #0a1220;
}
.contact-card__icon i { width: 22px; height: 22px; }
.contact-card h4 { margin: 0 0 0.2rem; font-size: 0.95rem; font-family: var(--font-sans); }
.contact-card p  { margin: 0; color: var(--c-text-muted); font-size: 0.95rem; }
.contact-card a  { color: var(--c-text-muted); }
.contact-card a:hover { color: var(--c-primary); }

.contact-form-card {
  padding: 2rem;
  background: var(--g-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
}

@media (min-width: 900px) {
  .contacts__grid { grid-template-columns: 1fr 1.4fr; gap: 3rem; }
}

/* ---------- LEGAL pages (terms/cookies/responsible) ---------- */
.legal {
  padding: 3rem 0;
}
.legal__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.legal__date {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-top: 1rem;
}
.legal__date strong { color: var(--c-text); }

.legal__body {
  max-width: 860px;
  margin: 0 auto;
  background: var(--g-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
}
.legal__body h2 {
  font-size: 1.4rem;
  margin: 2.2rem 0 0.85rem;
  padding-top: 0.5rem;
  color: var(--c-text);
  position: relative;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body h2::before {
  content: '';
  display: inline-block;
  width: 6px; height: 24px;
  background: var(--g-primary);
  border-radius: 3px;
  margin-right: 0.7rem;
  vertical-align: -5px;
}
.legal__body h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--c-text);
}
.legal__body p, .legal__body li {
  color: var(--c-text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}
.legal__body ul { padding-left: 0; margin: 0.6rem 0 1rem; }
.legal__body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal__body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--g-primary);
}
.legal__body a { color: var(--c-primary); text-decoration: underline; }
.legal__body strong { color: var(--c-text); }
.legal__highlight {
  padding: 1rem 1.25rem;
  background: rgba(251, 113, 133, 0.08);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r-sm);
  margin: 1.2rem 0;
}
@media (min-width: 700px) { .legal__body { padding: 2.5rem 2.5rem; } }

/* ---------- AGE GATE Modal ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(5, 8, 18, 0.92);
  backdrop-filter: blur(10px);
  animation: fade-in 0.4s var(--ease);
}
.age-gate.is-active { display: flex; }
.age-gate__card {
  width: 100%; max-width: 480px;
  padding: 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(160deg, #131c33, #0d1424);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  position: relative;
  animation: pop-in 0.5s var(--ease-out);
}
.age-gate__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.age-gate__18 {
  width: 90px; height: 90px;
  margin: 0 auto 1.2rem;
}
.age-gate h2 { margin-bottom: 0.5rem; }
.age-gate p  { font-size: 0.95rem; margin-bottom: 1.8rem; }
.age-gate__actions {
  display: grid; gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
.age-gate__note {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  color: var(--c-text-dim);
  line-height: 1.55;
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 999;
  max-width: 520px;
  margin-left: auto;
  padding: 1.25rem;
  background: rgba(13, 20, 36, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  transform: translateY(140%);
  transition: transform var(--t-slow) var(--ease-out);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(252, 211, 77, 0.15);
  color: var(--c-gold);
  border: 1px solid rgba(252, 211, 77, 0.35);
}
.cookie-banner__icon i { width: 22px; height: 22px; }
.cookie-banner__body { flex: 1; }
.cookie-banner__title { font-weight: 700; color: var(--c-text); margin: 0 0 0.3rem; font-size: 0.98rem; }
.cookie-banner__text  { font-size: 0.85rem; color: var(--c-text-muted); margin: 0 0 0.9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.cookie-banner__link { font-size: 0.82rem; color: var(--c-primary); text-decoration: underline; }

/* ---------- Utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.no-scroll,
.no-scroll body { overflow: hidden !important; height: 100%; touch-action: none; overscroll-behavior: contain; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
