/* ============================================
   VistaClubePlay — REDESIGN v2
   Font: Space Grotesk + Cormorant Garamond
   Palette: Deep Forest + Emerald + Teal + Mint
   Layout: asymmetric, bold, volumetric
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&display=swap');

:root {
  --forest:   #071510;
  --deep:     #0a1f17;
  --dark:     #0f2d22;
  --emerald:  #0d5c3a;
  --jade:     #0e7a4e;
  --teal:     #0fb882;
  --mint:     #3de8a8;
  --cyan:     #22d3ee;
  --gold:     #f4c430;
  --amber:    #f59e0b;
  --white:    #eefaf5;
  --offwhite: #cfe8dc;
  --muted:    #7aab94;
  --card-bg:  rgba(15, 45, 34, 0.82);
  --border:   rgba(13, 184, 130, 0.18);
  --border2:  rgba(13, 184, 130, 0.35);
  --radius:   10px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow:   0 12px 60px rgba(0,0,0,.55);
  --glow:     0 0 40px rgba(13,184,130,.25);
  --t:        0.28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--forest);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--jade); border-radius: 4px; }

/* ══════════════════════════════
   AGE POPUP
══════════════════════════════ */
#age-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(4, 12, 9, 0.97);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.age-box {
  background: linear-gradient(160deg, var(--dark) 0%, #071a12 100%);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 56px 48px 48px;
  text-align: center;
  max-width: 460px; width: 92%;
  box-shadow: var(--shadow), var(--glow);
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1) both;
  position: relative;
  overflow: hidden;
}
.age-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--mint), var(--cyan));
}
@keyframes popIn {
  from { opacity:0; transform: scale(.82) translateY(40px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.age-icon { font-size: 3.8rem; margin-bottom: 18px; display: block; }
.age-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--mint); margin-bottom: 12px;
}
.age-box p { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-bottom: 32px; }
.age-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--teal), var(--jade));
  color: var(--forest); font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: .3px;
  border: none; cursor: pointer;
  padding: 16px 36px; border-radius: var(--radius);
  transition: var(--t);
  box-shadow: 0 4px 24px rgba(13,184,130,.35);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(13,184,130,.55); }
.btn-age-no {
  background: transparent; color: var(--muted);
  font-family: 'Space Grotesk', sans-serif; font-size: .9rem; font-weight: 500;
  border: 1px solid rgba(122,171,148,.25); cursor: pointer;
  padding: 13px 28px; border-radius: var(--radius);
  transition: var(--t);
}
.btn-age-no:hover { border-color: var(--muted); color: var(--offwhite); }

/* ══════════════════════════════
   COOKIE BANNER
══════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8888;
  background: rgba(7,21,16,.97);
  border-top: 1px solid var(--border);
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  backdrop-filter: blur(10px);
}
#cookie-banner p { font-size: .8rem; color: var(--muted); max-width: 720px; line-height: 1.55; }
#cookie-banner a { color: var(--teal); }
.btn-cookie {
  background: linear-gradient(135deg, var(--teal), var(--jade));
  color: var(--forest); font-weight: 700; font-size: .82rem;
  border: none; cursor: pointer;
  padding: 10px 26px; border-radius: var(--radius);
  white-space: nowrap; transition: var(--t);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: .3px;
}
.btn-cookie:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,184,130,.4); }

/* ══════════════════════════════
   HEADER  — правая сторона: лого слева, nav по центру, CTA справа
══════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px;
  background: rgba(7,21,16,.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 36px;
  gap: 20px;
}
.logo-wrap {
  display: flex; align-items: center; gap: 11px;
  justify-self: start;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--jade));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  box-shadow: 0 0 16px rgba(13,184,130,.4);
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; letter-spacing: .2px;
}
.logo-text span { color: var(--mint); }

nav {
  display: flex; align-items: center; gap: 4px;
  justify-self: center;
}
nav a {
  font-size: .78rem; font-weight: 600;
  padding: 7px 15px; border-radius: 8px;
  color: var(--muted); transition: var(--t);
  letter-spacing: .5px; text-transform: uppercase;
}
nav a:hover, nav a.active { color: var(--white); background: rgba(13,184,130,.1); }

.header-cta {
  justify-self: end;
  display: flex; align-items: center; gap: 10px;
}
.btn-header-play {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal); font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .8rem;
  padding: 8px 20px; border-radius: var(--radius);
  cursor: pointer; transition: var(--t); letter-spacing: .3px;
}
.btn-header-play:hover { background: var(--teal); color: var(--forest); box-shadow: 0 0 20px rgba(13,184,130,.4); }

/* ══════════════════════════════
   MOBILE NAV
══════════════════════════════ */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); display: block; }
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 899;
  background: rgba(7,21,16,.98); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px); padding: 14px 20px;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: .9rem; font-weight: 500; padding: 11px 14px;
  border-radius: 8px; color: var(--muted); transition: var(--t);
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(13,184,130,.1); color: var(--white); }
.mobile-nav .btn-mobile-cta {
  background: linear-gradient(135deg, var(--teal), var(--jade));
  color: var(--forest); font-weight: 700; margin-top: 8px;
}

/* ══════════════════════════════
   BUTTONS — несколько вариантов
══════════════════════════════ */
/* Вариант 1 — pill gradient */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--teal), var(--jade));
  color: var(--forest); font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .92rem; letter-spacing: .2px;
  padding: 14px 32px; border-radius: var(--radius);
  border: none; cursor: pointer; transition: var(--t);
  box-shadow: 0 4px 20px rgba(13,184,130,.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(13,184,130,.5); }

/* Вариант 2 — ghost */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent;
  color: var(--mint); font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: .92rem;
  padding: 13px 28px; border-radius: var(--radius);
  border: 1.5px solid var(--teal); cursor: pointer; transition: var(--t);
}
.btn-ghost:hover { background: rgba(13,184,130,.1); color: var(--white); }

/* Вариант 3 — gold accent (для особых CTA) */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #1a0e00; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .92rem;
  padding: 14px 32px; border-radius: var(--radius);
  border: none; cursor: pointer; transition: var(--t);
  box-shadow: 0 4px 20px rgba(244,196,48,.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(244,196,48,.5); }

/* Вариант 4 — small pill */
.btn-sm {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(13,184,130,.12); border: 1px solid var(--border);
  color: var(--teal); font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: .78rem; letter-spacing: .4px;
  padding: 7px 16px; border-radius: 6px;
  cursor: pointer; transition: var(--t); text-transform: uppercase;
}
.btn-sm:hover { background: rgba(13,184,130,.22); border-color: var(--teal); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
/* Фоновое фото — правая колонка */
.hero-photo-col {
  position: relative; height: 100vh;
  overflow: hidden;
}
.hero-photo-col img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.65) saturate(1.2);
}
.hero-photo-col::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--forest) 0%, transparent 40%),
              linear-gradient(0deg, var(--forest) 0%, transparent 30%);
}
.hero-photo-fallback {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(13,184,130,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(34,211,238,.15) 0%, transparent 45%),
    linear-gradient(160deg, #0a2918 0%, #071510 60%, #051210 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; gap: 28px; flex-wrap: wrap;
  padding: 40px;
}

/* Левая текстовая колонка */
.hero-text-col {
  padding: 0 48px 60px 80px;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 20px;
}
.hero-kicker::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--teal);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--mint); }
.hero h1 strong { color: var(--teal); font-style: normal; }
.hero-desc {
  font-size: .97rem; color: var(--muted); line-height: 1.75;
  margin-bottom: 38px; max-width: 420px;
}

/* кнопки — ВЕРТИКАЛЬНЫЙ стек слева */
.hero-cta {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 14px;
  margin-bottom: 48px;
}
.hero-cta .btn-primary { width: fit-content; padding: 16px 38px; font-size: 1rem; }
.hero-cta .btn-ghost   { width: fit-content; }

/* stats — горизонталь */
.hero-stats {
  display: flex; gap: 0; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  width: fit-content;
}
.stat-item {
  padding: 14px 28px; border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--mint); line-height: 1;
}
.stat-label { font-size: .7rem; color: var(--muted); margin-top: 3px; letter-spacing: .5px; }

/* ══════════════════════════════
   DISCLAIMER STRIP
══════════════════════════════ */
.disclaimer-strip {
  background: rgba(13,184,130,.06);
  border-top: 1px solid rgba(13,184,130,.12);
  border-bottom: 1px solid rgba(13,184,130,.12);
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; text-align: center;
}
.disclaimer-strip .icon { font-size: 1.1rem; flex-shrink: 0; }
.disclaimer-strip p { font-size: .78rem; color: var(--muted); line-height: 1.55; max-width: 900px; }
.disclaimer-strip strong { color: var(--offwhite); }

/* ══════════════════════════════
   SECTIONS BASE
══════════════════════════════ */
section { padding: 100px 80px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px;
}
.section-tag::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--teal); }

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700;
  color: var(--white); margin-bottom: 14px; line-height: 1.1;
}
.section-header h2 span { color: var(--mint); font-style: italic; }
.section-header p { font-size: .93rem; color: var(--muted); line-height: 1.7; max-width: 540px; }

/* ══════════════════════════════
   FEATURES — bento grid
══════════════════════════════ */
.features-section {
  background: var(--deep);
  position: relative; overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,184,130,.08) 0%, transparent 70%);
  pointer-events: none;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--t);
  position: relative; overflow: hidden;
}
.bento-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  opacity: 0; transition: var(--t);
}
.bento-card:hover { transform: translateY(-5px); border-color: var(--border2); box-shadow: 0 20px 50px rgba(0,0,0,.4), var(--glow); }
.bento-card:hover::after { opacity: 1; }
.bento-card.wide { grid-column: span 2; }
.bento-card.tall { display: flex; align-items: center; gap: 24px; }

.feat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 700;
  color: rgba(13,184,130,.12); line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.feat-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(13,184,130,.15), rgba(34,211,238,.1));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px; flex-shrink: 0;
  border: 1px solid rgba(13,184,130,.2);
}
.bento-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -.1px; }
.bento-card p { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════
   PHOTO SECTION (между разделами)
══════════════════════════════ */
.photo-divider {
  width: 100%; height: 400px;
  position: relative; overflow: hidden;
}
.photo-divider img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.5) saturate(1.3);
}
.photo-divider-fallback {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(34,211,238,.2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 30%, rgba(13,184,130,.15) 0%, transparent 50%),
    linear-gradient(135deg, #051a0f 0%, #0a2918 50%, #071510 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; gap: 40px; opacity: .85;
}
.photo-divider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--forest) 0%, transparent 25%, transparent 75%, var(--forest) 100%),
              linear-gradient(0deg, var(--forest) 0%, transparent 25%);
  display: flex; align-items: center; justify-content: center;
}
.photo-divider-text {
  text-align: center; position: relative; z-index: 2;
  padding: 0 20px;
}
.photo-divider-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700;
  color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,.5);
  margin-bottom: 8px;
}
.photo-divider-text h3 span { color: var(--mint); font-style: italic; }
.photo-divider-text p { font-size: .9rem; color: var(--offwhite); opacity: .85; }

/* ══════════════════════════════
   GAMES SECTION — новый layout
══════════════════════════════ */
.games-section {
  background: var(--dark);
  padding: 100px 80px;
}
.games-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  max-width: 1100px; margin: 0 auto;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden; transition: var(--t);
  display: flex; flex-direction: column;
}
.game-card:hover { transform: translateY(-6px); border-color: var(--border2); box-shadow: 0 24px 60px rgba(0,0,0,.5), var(--glow); }

.game-thumb {
  width: 100%; aspect-ratio: 16/9; position: relative; overflow: hidden;
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.game-card:hover .game-thumb img { transform: scale(1.08); }
.game-thumb-art {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; gap: 16px; letter-spacing: 4px;
}
.game-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(4,12,9,.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--t);
}
.game-card:hover .game-thumb-overlay { opacity: 1; }
.play-ring {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2.5px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--teal);
  transform: scale(.7); transition: var(--t);
  box-shadow: 0 0 24px rgba(13,184,130,.4);
}
.game-card:hover .play-ring { transform: scale(1); }

.game-body {
  padding: 24px 26px 28px; flex: 1;
  display: flex; flex-direction: column;
}
.game-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 8px;
}
.game-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; line-height: 1.2;
}
.game-body p { font-size: .84rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }

/* кнопки в карточке игры — справа */
.game-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 18px; margin-top: auto;
}
.game-info-tag {
  font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: 6px;
}

/* ══════════════════════════════
   HOW IT WORKS — timeline
══════════════════════════════ */
.how-section {
  background: var(--forest);
  padding: 100px 80px;
  position: relative;
}
.how-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(13,184,130,.07) 0%, transparent 65%);
  pointer-events: none;
}
.how-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; max-width: 1100px; margin: 0 auto;
}
.how-timeline::before {
  content: '';
  position: absolute; top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.how-step {
  padding: 0 20px; text-align: center; position: relative;
}
.how-step-ring {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1.5px solid var(--border2);
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--mint);
  position: relative; z-index: 1;
  box-shadow: 0 0 20px rgba(13,184,130,.15);
  transition: var(--t);
}
.how-step:hover .how-step-ring {
  border-color: var(--teal); background: rgba(13,184,130,.1);
  box-shadow: 0 0 30px rgba(13,184,130,.3);
}
.how-step h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════
   COMPLIANCE
══════════════════════════════ */
.compliance-section { background: var(--deep); padding: 100px 80px; }
.compliance-inner {
  max-width: 900px; margin: 0 auto;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 48px;
  position: relative; overflow: hidden;
}
.compliance-inner::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; bottom: 0;
  background: linear-gradient(180deg, var(--teal), var(--cyan));
}
.compliance-inner p { font-size: .87rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.compliance-inner p:last-of-type { margin-bottom: 0; }
.reg-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.reg-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,184,130,.07); border: 1px solid var(--border);
  padding: 10px 18px; border-radius: var(--radius);
  font-size: .78rem; font-weight: 600; color: var(--teal);
  transition: var(--t); letter-spacing: .2px;
}
.reg-link:hover { background: rgba(13,184,130,.15); border-color: var(--teal); transform: translateY(-2px); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #040d09;
  border-top: 1px solid var(--border);
  padding: 70px 80px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto 48px;
}
.footer-brand .logo-text { font-size: 1.3rem; display: block; margin: 10px 0 14px; }
.footer-brand p { font-size: .8rem; color: var(--muted); line-height: 1.7; max-width: 300px; }
.footer-brand .age-seal {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  background: rgba(13,184,130,.07); border: 1px solid var(--border);
  padding: 7px 16px; border-radius: var(--radius);
  font-size: .75rem; font-weight: 700; color: var(--teal);
}
.footer-col h4 {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--teal); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .82rem; color: var(--muted); transition: var(--t); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .72rem; color: var(--muted); }

/* ══════════════════════════════
   INNER PAGE HERO
══════════════════════════════ */
.page-hero {
  padding: 140px 80px 70px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--forest) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,184,130,.07) 0%, transparent 70%);
  transform: translate(150px, -150px); pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 700;
  margin-bottom: 10px; line-height: 1.1;
}
.page-hero h1 span { color: var(--mint); font-style: italic; }
.page-hero p { font-size: .9rem; color: var(--muted); margin-top: 6px; }

/* ══════════════════════════════
   LEGAL PAGES
══════════════════════════════ */
.legal-wrap {
  max-width: 880px; margin: 0 auto; padding: 64px 80px;
}
.legal-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--teal);
  margin: 40px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-wrap h3 { font-size: .95rem; font-weight: 700; color: var(--offwhite); margin: 22px 0 8px; }
.legal-wrap p, .legal-wrap li { font-size: .87rem; color: var(--muted); line-height: 1.82; margin-bottom: 12px; }
.legal-wrap ul { padding-left: 18px; list-style: disc; }
.legal-wrap a { color: var(--teal); transition: var(--t); }
.legal-wrap a:hover { color: var(--mint); }

/* ══════════════════════════════
   GAMES FULL PAGE
══════════════════════════════ */
.games-full-wrap {
  padding: 60px 80px 100px; background: var(--forest);
}
.games-full-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 36px; max-width: 960px; margin: 0 auto;
}
.game-card-full {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden; transition: var(--t);
}
.game-card-full:hover { transform: translateY(-6px); border-color: var(--border2); box-shadow: var(--shadow), var(--glow); }
.game-card-full .game-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.game-card-full .game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-card-body { padding: 26px 28px 30px; }
.game-card-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; margin-bottom: 10px;
}
.game-card-body p { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.game-rules-list { padding-left: 18px; list-style: disc; margin-bottom: 22px; }
.game-rules-list li { font-size: .82rem; color: var(--muted); line-height: 1.7; margin-bottom: 5px; }

/* ══════════════════════════════
   CONTACTS PAGE
══════════════════════════════ */
.contacts-wrap {
  max-width: 1100px; margin: 0 auto; padding: 60px 80px;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--mint); margin-bottom: 24px;
}
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; }
.c-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.c-text strong { display: block; font-size: .83rem; font-weight: 600; margin-bottom: 3px; color: var(--offwhite); }
.c-text span { font-size: .82rem; color: var(--muted); }
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--mint); margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(15,45,34,.9);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; color: var(--white);
  font-family: 'Space Grotesk', sans-serif; font-size: .87rem;
  transition: var(--t); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,184,130,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ══════════════════════════════
   GAME MODALS
══════════════════════════════ */
.game-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(4,12,9,.95); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
.game-modal-overlay.active { display: flex; }
.game-modal {
  background: var(--dark); border: 1px solid var(--border2);
  border-radius: var(--radius-xl); width: 96%; max-width: 680px;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow), var(--glow);
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1) both;
}
.modal-header {
  padding: 26px 30px 0; display: flex; align-items: center; justify-content: space-between;
}
.modal-header h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--mint);
}
.modal-close {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: none;
  color: var(--muted); font-size: 1.1rem; cursor: pointer;
  transition: var(--t); display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(13,184,130,.15); color: var(--teal); }
.modal-body { padding: 20px 30px 30px; }
.modal-disclaimer {
  background: rgba(13,184,130,.06); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px;
  font-size: .78rem; color: var(--muted); line-height: 1.55;
}

/* Game elements (same logic) */
.fruit-reels {
  display: flex; gap: 14px; justify-content: center;
  background: rgba(4,12,9,.8); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--border); margin-bottom: 20px;
}
.reel {
  width: 82px; height: 104px; background: rgba(255,255,255,.04);
  border-radius: 12px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; transition: transform .15s ease; overflow: hidden;
}
.reel.spinning { animation: spinReel .3s steps(6) infinite; }
@keyframes spinReel {
  0%{transform:translateY(-10px);opacity:.5} 50%{transform:translateY(5px);opacity:1} 100%{transform:translateY(-10px);opacity:.5}
}
.credits-display {
  background: rgba(13,184,130,.1); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 20px;
  font-size: .87rem; font-weight: 700; color: var(--teal);
}
.result-msg { text-align: center; font-size: .98rem; font-weight: 600; min-height: 28px; color: var(--mint); transition: all .3s; }

.card-game-area {
  background: rgba(4,12,9,.8); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--border); margin-bottom: 20px;
}
.card-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.playing-card {
  width: 64px; height: 92px; border-radius: 8px;
  background: linear-gradient(135deg, var(--dark), var(--deep));
  border: 1.5px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; cursor: pointer; transition: var(--t);
}
.playing-card.face-up { background: linear-gradient(160deg,#fff 0%,#f0ece3 100%); color:#c0392b; border-color:#c0392b; }
.playing-card.face-up.black { color:#1a1a2e; border-color:#1a1a2e; }
.playing-card.selected { transform: translateY(-10px); box-shadow: 0 8px 24px rgba(13,184,130,.4); border-color: var(--teal); }
.score-row { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; }
.score-box { text-align: center; }
.score-box .score-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--mint);
}
.score-box .score-lbl { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  section { padding: 80px 40px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo-col { display: none; }
  .hero-text-col { padding: 120px 40px 60px; }
  .hero-cta { flex-direction: row; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.wide { grid-column: span 2; }
  .how-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-timeline::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .games-section { padding: 80px 40px; }
  .contacts-wrap { grid-template-columns: 1fr; }
  .legal-wrap, .games-full-wrap { padding: 60px 40px; }
  .page-hero { padding: 120px 40px 60px; }
  header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn-header-play { display: none; }
}
@media (max-width: 640px) {
  section { padding: 60px 20px; }
  .hero-text-col { padding: 100px 20px 50px; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .how-timeline { grid-template-columns: 1fr; }
  .games-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .legal-wrap, .games-full-wrap, .contacts-wrap { padding: 40px 20px; }
  .page-hero { padding: 100px 20px 50px; }
  .age-box { padding: 36px 22px 28px; }
  header { padding: 0 20px; }
  .disclaimer-strip { padding: 14px 20px; }
  footer { padding: 50px 20px 24px; }
}
