/* ============================================
   NORTHERN PLAY VENTURE — Social Gaming Hub
   Stylesheet | Mobile-first | WCAG AA
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  --black: #0a0908;
  --jet-black: #22333b;
  --almond-cream: #eae0d5;
  --khaki-beige: #c6ac8f;
  --stone-brown: #5e503f;

  --color-primary: var(--khaki-beige);
  --color-accent: #d9b97a;
  --color-bg: var(--black);
  --color-bg-alt: #11171a;
  --color-surface: #1a2429;
  --color-surface-2: #243038;
  --color-text: var(--almond-cream);
  --color-muted: #9ca7ad;
  --color-border: rgba(234, 224, 213, 0.12);
  --color-danger: #d97a6c;
  --color-success: #84c79c;

  --gradient-primary: linear-gradient(135deg, #d9b97a 0%, #c6ac8f 50%, #a0876a 100%);
  --gradient-warm: linear-gradient(135deg, #c6ac8f 0%, #5e503f 100%);
  --gradient-dark: linear-gradient(160deg, #0a0908 0%, #22333b 100%);
  --gradient-glow: radial-gradient(circle at 50% 0%, rgba(217, 185, 122, 0.18), transparent 60%);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 32px rgba(217, 185, 122, 0.35);

  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --header-h: 76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--almond-cream); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--color-text); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  padding: 64px 0;
  position: relative;
}
.section-alt { background: var(--color-bg-alt); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(217, 185, 122, 0.12);
  color: var(--color-accent);
  border: 1px solid rgba(217, 185, 122, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-head p { color: var(--color-muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- BUTTONS ---------- */
.btn, .btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--black);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg), var(--shadow-glow); color: var(--black); }
.btn-secondary {
  background: transparent;
  color: var(--almond-cream);
  border-color: var(--color-border);
}
.btn-secondary:hover { background: rgba(234, 224, 213, 0.06); border-color: var(--khaki-beige); }
.btn-ghost { background: rgba(234, 224, 213, 0.04); color: var(--almond-cream); border: 1px solid var(--color-border); }
.btn-ghost:hover { background: rgba(234, 224, 213, 0.1); }
.btn:active, .btn-play:active { transform: scale(0.97); }

/* Special Play button with pulse-glow */
.btn-play {
  background: var(--gradient-primary);
  color: var(--black);
  font-weight: 700;
  position: relative;
  animation: pulse-glow 2.6s ease-in-out infinite;
}
.btn-play:hover {
  transform: scale(1.07) translateY(-1px);
  background: linear-gradient(135deg, #e8c889 0%, #d2bb9c 50%, #b4977a 100%);
  color: var(--black);
}
.btn-play:active { transform: scale(0.97); }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 18px rgba(217, 185, 122, 0.4), 0 0 0 0 rgba(217, 185, 122, 0.55); }
  50% { box-shadow: 0 8px 28px rgba(217, 185, 122, 0.55), 0 0 0 12px rgba(217, 185, 122, 0); }
}

/* ---------- BADGES ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(217, 185, 122, 0.13);
  color: var(--color-accent);
  border: 1px solid rgba(217, 185, 122, 0.3);
  letter-spacing: 0.03em;
}
.badge-age {
  background: var(--color-danger);
  color: var(--black);
  border-color: transparent;
}
.badge-virtual {
  background: rgba(132, 199, 156, 0.12);
  color: var(--color-success);
  border-color: rgba(132, 199, 156, 0.3);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--almond-cream);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(217, 185, 122, 0.45);
}
.logo-mark svg { width: 22px; height: 22px; color: var(--black); }
.logo span.brand-suffix { color: var(--color-accent); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  color: var(--color-muted);
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.94rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}
.main-nav a:hover { color: var(--almond-cream); }
.main-nav a.active { color: var(--color-accent); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px); left: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition-fast);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.dropdown-menu a:hover { background: rgba(234, 224, 213, 0.05); color: var(--color-accent); }

.header-cta { display: none; }

.menu-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(234, 224, 213, 0.05);
  border: 1px solid var(--color-border);
}
.menu-toggle svg { width: 22px; height: 22px; color: var(--almond-cream); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  /* position: fixed; */
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 9, 8, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 80;
  padding: 24px 20px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open {
  display: block;
  animation: mobile-nav-in 0.25s ease-out;
}
@keyframes mobile-nav-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1.05rem;
  color: var(--almond-cream);
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(217, 185, 122, 0.08); color: var(--color-accent); }
.mobile-nav .btn-play {
  margin-top: 22px;
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
.mobile-section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  padding: 18px 16px 8px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding: 60px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-dark);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(234, 224, 213, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 224, 213, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
.hero-content .badge { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 18px;
  line-height: 1.08;
}
.hero h1 .accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.hero-meta-item { display: flex; align-items: center; gap: 8px; color: var(--color-muted); font-size: 0.9rem; }
.hero-meta-item svg { width: 18px; height: 18px; color: var(--color-accent); }

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 560px;
  
}
.hero-visual-frame {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(217, 185, 122, 0.2), transparent 60%);
  border-radius: 50%;
}
.hero-float {
  position: absolute;
  width: 100%; height: 100%;
}
.hero-float svg { width: 100%; height: 100%; }
.float-icon {
  position: absolute;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.float-icon svg { width: 32px; height: 32px; color: var(--color-accent); }
.float-icon:nth-child(1) { top: 8%; left: 18%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 22%; right: 8%; animation-delay: 1s; }
.float-icon:nth-child(3) { bottom: 28%; left: 6%; animation-delay: 2s; }
.float-icon:nth-child(4) { bottom: 8%; right: 22%; animation-delay: 3s; }
.float-icon:nth-child(5) { top: 48%; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }

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

/* ---------- CARDS ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 185, 122, 0.4);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(217, 185, 122, 0.13);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 28px; height: 28px; color: var(--color-accent); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--color-muted); font-size: 0.95rem; }

/* ---------- GAME CARD ---------- */
.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.game-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 185, 122, 0.45);
  box-shadow: var(--shadow-lg);
}
.game-card-preview {
  aspect-ratio: 16/10;
  background: var(--gradient-warm);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.game-card-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(10, 9, 8, 0.1), rgba(10, 9, 8, 0.6) 100%);
  pointer-events: none;
}
.game-card-preview svg {
  width: 60%; height: 60%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
}
.game-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.game-card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 6px;
}
.game-card h3 { margin-bottom: 8px; }
.game-card-desc { color: var(--color-muted); font-size: 0.94rem; flex: 1; margin-bottom: 18px; }
.game-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.game-card-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--color-muted);
}
.game-card-meta span { display: inline-flex; align-items: center; gap: 4px; }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-content h2 { margin-bottom: 16px; }
.about-content > p { color: var(--color-muted); margin-bottom: 24px; font-size: 1.02rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}
.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-feature-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(217, 185, 122, 0.13);
  display: grid;
  place-items: center;
}
.about-feature-icon svg { width: 22px; height: 22px; color: var(--color-accent); }
.about-feature h4 { font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 2px; color: var(--almond-cream); font-weight: 600; }
.about-feature p { font-size: 0.85rem; color: var(--color-muted); margin: 0; }
.about-visual {
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}
.about-visual svg { width: 100%; height: 100%; }

/* ---------- STEPS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  counter-increment: step;
  transition: all var(--transition-normal);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(217, 185, 122, 0.18);
  line-height: 1;
}
.step:hover { border-color: rgba(217, 185, 122, 0.35); transform: translateY(-3px); }
.step-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step-icon svg { width: 24px; height: 24px; color: var(--black); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--color-muted); font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-fast);
}
.faq-item.active { border-color: rgba(217, 185, 122, 0.4); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--almond-cream);
  transition: color var(--transition-fast);
}
.faq-q:hover { color: var(--color-accent); }
.faq-q svg {
  width: 20px; height: 20px;
  transition: transform var(--transition-normal);
  color: var(--color-accent);
  flex-shrink: 0;
}
.faq-item.active .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}
.faq-a-inner {
  padding: 0 22px 22px;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
.testi-slider {
  position: relative;
  overflow: hidden;
  padding: 10px 0 30px;
}
.testi-track {
  display: flex;
  gap: 20px;
  cursor: grab;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  touch-action: pan-y;
}
.testi-track.dragging { cursor: grabbing; transition: none; }
.testi-item {
  flex: 0 0 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--color-accent);
}
.testi-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testi-text { flex: 1; color: var(--color-text); font-size: 0.98rem; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
}
.testi-avatar svg { width: 100%; height: 100%; }
.testi-author-name { font-weight: 600; color: var(--almond-cream); font-size: 0.92rem; }
.testi-author-loc { font-size: 0.8rem; color: var(--color-muted); }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.testi-dot.active { background: var(--color-accent); width: 26px; border-radius: 4px; }

/* ---------- NEWSLETTER ---------- */
.newsletter-box {
  background: var(--gradient-warm);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(217, 185, 122, 0.3), transparent 60%);
  pointer-events: none;
}
.newsletter-box > * { position: relative; }
.newsletter-box h2 { color: var(--almond-cream); margin-bottom: 8px; }
.newsletter-box p { color: rgba(234, 224, 213, 0.8); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}
.newsletter-form-row { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(234, 224, 213, 0.2);
  background: rgba(10, 9, 8, 0.4);
  color: var(--almond-cream);
  font-size: 0.96rem;
}
.newsletter-form input::placeholder { color: rgba(234, 224, 213, 0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--color-accent); }
.newsletter-form .form-check { color: rgba(234, 224, 213, 0.85); font-size: 0.82rem; }
.newsletter-form .form-check a { color: var(--almond-cream); text-decoration: underline; }
.newsletter-status { font-size: 0.9rem; min-height: 20px; }
.newsletter-status.success { color: var(--almond-cream); font-weight: 600; }
.newsletter-status.error { color: #ffd6cf; }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  color: var(--color-muted);
  font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--almond-cream);
  font-size: 0.96rem;
  transition: border-color var(--transition-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(217, 185, 122, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent);
}
.form-error {
  color: var(--color-danger);
  font-size: 0.82rem;
  margin-top: 4px;
  display: none;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea {
  border-color: var(--color-danger);
}
.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  font-size: 0.94rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(132, 199, 156, 0.12); color: var(--color-success); border: 1px solid rgba(132, 199, 156, 0.3); }
.form-status.error { background: rgba(217, 122, 108, 0.12); color: var(--color-danger); border: 1px solid rgba(217, 122, 108, 0.3); }

.btn-loader { display: none; animation: spin 0.8s linear infinite; }
.btn-loader.show { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(217, 185, 122, 0.13);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--color-accent); }
.contact-info-item h4 { font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted); margin-bottom: 4px; font-weight: 600; }
.contact-info-item p, .contact-info-item a { color: var(--almond-cream); font-size: 0.96rem; }

.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* ---------- LEGAL PAGES ---------- */
.legal-hero {
  padding: 60px 0 30px;
  text-align: center;
  background: var(--gradient-dark);
  border-bottom: 1px solid var(--color-border);
}
.legal-hero h1 { margin-bottom: 12px; }
.legal-hero p { color: var(--color-muted); max-width: 640px; margin: 0 auto; }
.legal-hero .meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--color-muted);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 18px 70px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.15rem; margin: 22px 0 10px; color: var(--color-accent); }
.legal-content p { color: var(--color-text); margin-bottom: 14px; line-height: 1.75; }
.legal-content ul, .legal-content ol { margin: 12px 0 18px 22px; }
.legal-content ul li, .legal-content ol li {
  margin-bottom: 8px;
  color: var(--color-text);
  list-style: disc;
}
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--almond-cream); }
.legal-content .callout {
  background: rgba(217, 185, 122, 0.08);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 18px 0;
  color: var(--color-text);
}

/* ---------- DISCLAIMER ---------- */
.disclaimer-block {
  background: rgba(217, 122, 108, 0.06);
  border: 1px solid rgba(217, 122, 108, 0.3);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 50px auto;
  max-width: var(--container);
  position: relative;
}
.disclaimer-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.disclaimer-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(217, 122, 108, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.disclaimer-icon svg { width: 24px; height: 24px; color: var(--color-danger); }
.disclaimer-body { flex: 1; }
.disclaimer-body .badge { margin-bottom: 8px; }
.disclaimer-body p { color: var(--color-text); font-size: 0.92rem; line-height: 1.6; }
.disclaimer-body a { color: var(--color-accent); text-decoration: underline; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 56px 0 26px;
  margin-top: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--color-muted); font-size: 0.92rem; margin-bottom: 18px; max-width: 360px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-muted);
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--color-accent); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--color-muted); }
.footer-contact-item a:hover { color: var(--color-accent); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--almond-cream);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--color-muted); font-size: 0.92rem; transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--color-accent); }

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.footer-bottom p { color: var(--color-muted); font-size: 0.84rem; }
.footer-bottom .badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.footer-mini-disclaimer {
  font-size: 0.78rem !important;
  color: var(--color-muted);
  max-width: 720px;
}

/* ---------- AGE GATE ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(18px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fade-in 0.3s ease;
}
.age-gate.show { display: flex; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.age-gate-card {
  background: var(--color-surface);
  border: 1px solid rgba(217, 185, 122, 0.25);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: scale-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes scale-in { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.age-gate-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 32px rgba(217, 185, 122, 0.5);
}
.age-gate-icon svg { width: 44px; height: 44px; color: var(--black); }
.age-gate-card h2 { font-size: 1.7rem; margin-bottom: 12px; }
.age-gate-card p { color: var(--color-muted); margin-bottom: 22px; font-size: 0.96rem; }
.age-gate-card .form-check { background: rgba(234, 224, 213, 0.04); border-radius: var(--radius-md); padding: 14px; margin-bottom: 22px; text-align: left; }
.age-gate-actions { display: flex; gap: 10px; }
.age-gate-actions .btn { flex: 1; }
.age-gate-actions .btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- COOKIE CONSENT ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: rgba(10, 9, 8, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(217, 185, 122, 0.3);
  padding: 18px 0;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.cookie-msg { display: flex; gap: 12px; align-items: flex-start; }
.cookie-msg svg { width: 28px; height: 28px; color: var(--color-accent); flex-shrink: 0; }
.cookie-msg p { font-size: 0.88rem; color: var(--color-text); margin: 0; }
.cookie-msg a { color: var(--color-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- GAME PAGES ---------- */
.game-hero {
  background: var(--gradient-dark);
  padding: 50px 0 30px;
  border-bottom: 1px solid var(--color-border);
}
.game-hero-inner { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.game-hero-content .badges { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.game-hero-content h1 { margin-bottom: 14px; }
.game-hero-content p { color: var(--color-muted); font-size: 1.02rem; }

.how-to-play {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.how-step {
  background: rgba(234, 224, 213, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
}
.how-step-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(217, 185, 122, 0.13);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.how-step-icon svg { width: 18px; height: 18px; color: var(--color-accent); }
.how-step h4 { font-family: var(--font-body); font-size: 0.86rem; margin-bottom: 4px; color: var(--almond-cream); }
.how-step p { font-size: 0.8rem; color: var(--color-muted); margin: 0; }

.game-stage {
  padding: 40px 0 30px;
}
.game-container {
  max-width: 920px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
}
.game-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.game-stat {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
}
.game-stat-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.game-stat-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--almond-cream);
  font-weight: 700;
}
.game-stat-value.accent { color: var(--color-accent); }
.game-stat-value.success { color: var(--color-success); }
.game-stat-value.danger { color: var(--color-danger); }

.game-area {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  margin-bottom: 22px;
  min-height: 280px;
}

.game-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.game-bet-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.game-bet-row label { font-size: 0.84rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.bet-controls { display: flex; gap: 6px; align-items: center; }
.bet-controls input {
  flex: 1;
  padding: 11px 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--almond-cream);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
.bet-quick {
  padding: 10px 14px;
  background: rgba(234, 224, 213, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--almond-cream);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.bet-quick:hover { background: rgba(217, 185, 122, 0.12); border-color: var(--color-accent); }

.game-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.game-actions .btn, .game-actions .btn-play { flex: 1; min-width: 130px; }

.game-msg {
  text-align: center;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-top: 12px;
  background: rgba(234, 224, 213, 0.04);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.95rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-msg.win { background: rgba(132, 199, 156, 0.12); border-color: rgba(132, 199, 156, 0.4); color: var(--color-success); animation: pop-win 0.5s ease; }
.game-msg.lose { background: rgba(217, 122, 108, 0.1); border-color: rgba(217, 122, 108, 0.35); color: var(--color-danger); }
@keyframes pop-win { 0% { transform: scale(0.92); } 50% { transform: scale(1.04); } 100% { transform: scale(1); } }

.game-footnote {
  text-align: center;
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--color-muted);
  padding: 0 16px;
}

/* PLINKO */
.plinko-board {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a2429 0%, #0f1518 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.plinko-canvas { width: 100%; height: 100%; display: block; }
.plinko-slots {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  font-size: 0.7rem;
}
.plinko-slot {
  flex: 1;
  text-align: center;
  padding: 6px 2px;
  font-weight: 700;
  border-top: 2px solid;
  color: var(--almond-cream);
  background: rgba(0, 0, 0, 0.3);
}

/* MINES */
.mines-grid-game {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  max-width: 380px;
  margin: 0 auto;
}
.mine-cell {
  aspect-ratio: 1;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}
.mine-cell:not(.revealed):not(.disabled):hover {
  transform: scale(1.05);
  border-color: var(--color-accent);
  background: rgba(217, 185, 122, 0.1);
}
.mine-cell.revealed.gem { background: linear-gradient(135deg, #84c79c, #5ea683); color: var(--black); border-color: transparent; animation: pop-win 0.4s ease; }
.mine-cell.revealed.mine { background: linear-gradient(135deg, #d97a6c, #a8584c); color: var(--almond-cream); border-color: transparent; animation: shake 0.5s ease; }
.mine-cell.disabled { cursor: not-allowed; opacity: 0.7; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.mine-cell svg { width: 22px; height: 22px; }
.mines-config {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}
.mines-config label { color: var(--color-muted); }
.mines-config select {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--almond-cream);
  padding: 8px 12px;
  border-radius: var(--radius-md);
}

/* CRASH */
.crash-display {
  text-align: center;
  padding: 30px 16px;
}
.crash-multiplier {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.5rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition-fast);
}
.crash-multiplier.crashed {
  background: linear-gradient(135deg, #d97a6c, #a8584c);
  -webkit-background-clip: text;
  background-clip: text;
  animation: shake 0.5s ease;
}
.crash-multiplier.cashed {
  background: linear-gradient(135deg, #84c79c, #5ea683);
  -webkit-background-clip: text;
  background-clip: text;
  animation: pop-win 0.5s ease;
}
.crash-status {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 20px;
  min-height: 22px;
}
.crash-graph {
  width: 100%;
  height: 140px;
  margin-bottom: 18px;
}

/* DICE */
.dice-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 12px;
}
.dice-row {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.die {
  width: 78px;
  height: 78px;
  background: var(--almond-cream);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--shadow-md);
  color: var(--black);
}
.die.rolling { animation: roll 0.6s ease; }
@keyframes roll {
  0% { transform: rotate(0) scale(1); }
  50% { transform: rotate(180deg) scale(1.08); }
  100% { transform: rotate(360deg) scale(1); }
}
.die-faces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: 70%;
  height: 70%;
  gap: 4px;
}
.die-dot {
  background: var(--black);
  border-radius: 50%;
  visibility: hidden;
}
.die-dot.show { visibility: visible; }
.dice-target-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px 0;
}
.dice-target {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(234, 224, 213, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.dice-target:hover { border-color: var(--color-accent); }
.dice-target.active { background: var(--gradient-primary); color: var(--black); border-color: transparent; }
.dice-prob {
  font-size: 0.86rem;
  color: var(--color-muted);
  text-align: center;
}
.dice-prob strong { color: var(--color-accent); }

/* ---------- HOW VIRTUAL COINS ---------- */
.virtual-coins-info {
  background: var(--gradient-warm);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.virtual-coins-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(217, 185, 122, 0.3), transparent 60%);
  pointer-events: none;
}
.virtual-coins-info > * { position: relative; }
.virtual-coins-info h2 { color: var(--almond-cream); margin-bottom: 12px; }
.virtual-coins-info p { color: rgba(234, 224, 213, 0.85); max-width: 620px; margin: 0 auto 22px; }
.virtual-coins-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.virtual-coin-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(10, 9, 8, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: left;
}
.virtual-coin-point svg { width: 24px; height: 24px; color: var(--almond-cream); flex-shrink: 0; }
.virtual-coin-point p { color: rgba(234, 224, 213, 0.95); font-size: 0.9rem; margin: 0; }

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-md { margin-top: 22px; }
.hidden { display: none !important; }
.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;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 480px) {
  .container { padding: 0 22px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .game-stats { gap: 10px; }
  .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-actions { flex-shrink: 0; }
  .newsletter-form-row { flex-direction: row; }
  .newsletter-form-row .btn { flex-shrink: 0; }
  
}

@media (min-width: 768px) {
  .section { padding: 88px 0; }
  .hero { padding: 80px 0 100px; }
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav, .mobile-nav.open { display: none; }
  .about-grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .testi-item { flex: 0 0 calc(50% - 10px); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
  .how-to-play { grid-template-columns: repeat(4, 1fr); }
  .virtual-coins-points { grid-template-columns: 1fr 1fr; }
  .newsletter-box, .virtual-coins-info { padding: 50px 40px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 28px; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-item { flex: 0 0 calc(33.333% - 14px); }
  .game-hero-inner { grid-template-columns: 1.2fr 0.8fr; gap: 50px; }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: 4.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
