/* ============================================
   ENGLISH ROSE CLUB — Design System
   ============================================ */

:root {
  /* Color ramps */
  --rose-50: #FBF1F2;
  --rose-100: #F5DDE0;
  --rose-200: #EBBFC5;
  --rose-300: #D98FA0;
  --rose-400: #C44569;
  --rose-500: #A8334F;
  --rose-600: #8B2942;
  --rose-700: #6B1E32;
  --rose-800: #4F1525;
  --rose-900: #330D19;

  --gold-50: #FBF7EC;
  --gold-100: #F5E9C9;
  --gold-200: #EBD49B;
  --gold-300: #DDB85F;
  --gold-400: #C9A961;
  --gold-500: #B08D3E;
  --gold-600: #8C6E2A;

  --sage-50: #F2F4EF;
  --sage-100: #E2E8DA;
  --sage-200: #C7D3B5;
  --sage-300: #A4B889;
  --sage-400: #7B9168;
  --sage-500: #5A7145;
  --sage-600: #4A5D3A;

  --ink-900: #1A1410;
  --ink-800: #2D2520;
  --ink-700: #3D332C;
  --ink-600: #5A4F48;
  --ink-500: #7A6F68;
  --ink-400: #9A908A;
  --ink-300: #C4BBAE;
  --ink-200: #E0D9CE;
  --ink-100: #EFE9E0;
  --ink-50: #FAF6F0;

  --success-400: #5B9E5B;
  --success-500: #3D7A3D;
  --warning-400: #D4A543;
  --warning-500: #B0842A;
  --error-400: #D45D5D;
  --error-500: #A83333;

  /* Semantic tokens */
  --bg: var(--ink-50);
  --bg-alt: #FFFFFF;
  --bg-dark: var(--ink-900);
  --bg-card: #FFFFFF;
  --text: var(--ink-800);
  --text-muted: var(--ink-500);
  --text-light: var(--ink-300);
  --primary: var(--rose-500);
  --primary-dark: var(--rose-700);
  --accent: var(--gold-400);
  --accent-dark: var(--gold-600);
  --border: var(--ink-200);
  --border-light: var(--ink-100);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing — 8px system */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 1px 3px rgba(26,20,16,0.08);
  --sh-md: 0 4px 16px rgba(26,20,16,0.10);
  --sh-lg: 0 12px 40px rgba(26,20,16,0.14);
  --sh-glow: 0 0 24px rgba(196,69,105,0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.3s;
}

/* ============================================
   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);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

.section { padding: var(--sp-9) 0; }
.section--tight { padding: var(--sp-8) 0; }
.section--alt { background: var(--bg-alt); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--sp-7); }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-3);
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: var(--sp-4); }
.section-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--rose-400), var(--rose-600));
  color: #fff;
  box-shadow: 0 4px 14px rgba(168,51,79,0.3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(168,51,79,0.4); }
.btn--ghost {
  background: transparent;
  color: var(--ink-800);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--ink-900);
  box-shadow: 0 4px 14px rgba(176,141,62,0.3);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(176,141,62,0.4); }
.btn--lg { padding: var(--sp-4) var(--sp-7); font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,246,240,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(250,246,240,0.97);
  border-bottom-color: var(--border-light);
  box-shadow: var(--sh-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-900);
}
.brand-icon {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}
.brand-text { letter-spacing: -0.01em; }
.brand-text span { color: var(--primary); }

.nav { display: flex; align-items: center; gap: var(--sp-5); }
.nav-links { display: flex; align-items: center; gap: var(--sp-5); }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: var(--sp-3); }
.balance-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-600);
}
.balance-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: var(--sp-2); }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink-800); border-radius: 2px; transition: all var(--dur) var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background:
    linear-gradient(90deg, rgba(11, 35, 30, 0.06) 30%, rgba(11, 35, 30, 0.56) 58%, rgba(11, 35, 30, 0.9) 100%),
    url("images/hero.png") center / cover no-repeat;
  overflow: hidden;
}
.hero-deco {
  position: absolute;
  pointer-events: none;
  display: none;
}
.hero-deco--1 { top: 10%; right: 5%; width: 280px; animation: floatDeco 8s ease-in-out infinite; }
.hero-deco--2 { bottom: 5%; left: 3%; width: 200px; animation: floatDeco 10s ease-in-out infinite reverse; }
.hero-deco--3 { top: 50%; right: 15%; width: 120px; animation: floatDeco 6s ease-in-out infinite; }

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

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: auto;
  padding: var(--sp-8) 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rose-200);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--sp-5);
  backdrop-filter: blur(8px);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success-400); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: var(--sp-5);
  color: #fff;
}
.hero-title .accent { color: var(--gold-200); font-style: italic; }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--sp-6);
}
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-7); }
.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.hero .btn--ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.14); }

.hero-stats { display: flex; gap: var(--sp-7); flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; }
.hero-stat .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin-top: var(--sp-1); }

/* ============================================
   GAMES SECTION
   ============================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.game-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
  cursor: pointer;
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.game-card-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.game-card-visual--rose { background: linear-gradient(135deg, var(--rose-300), var(--rose-600)); }
.game-card-visual--gold { background: linear-gradient(135deg, var(--gold-200), var(--gold-500)); }
.game-card-visual--sage { background: linear-gradient(135deg, var(--sage-300), var(--sage-600)); }
.game-card-icon { width: 80px; height: 80px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }
.game-card-badge {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(255,255,255,0.9);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-800);
  backdrop-filter: blur(8px);
}
.game-card-body { padding: var(--sp-5); }
.game-card-title { font-size: 1.3rem; margin-bottom: var(--sp-2); }
.game-card-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: var(--sp-4); }
.game-card-play {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--dur) var(--ease);
}
.game-card:hover .game-card-play { gap: var(--sp-3); }
.game-card-play .arrow { transition: transform var(--dur) var(--ease); }
.game-card:hover .game-card-play .arrow { transform: translateX(4px); }

/* ============================================
   ADVANTAGES
   ============================================ */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.adv-card {
  padding: var(--sp-6);
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  transition: all var(--dur) var(--ease);
}
.adv-card:hover { border-color: var(--rose-200); box-shadow: var(--sh-md); transform: translateY(-4px); }
.adv-icon-wrap {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--rose-50);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
}
.adv-icon-wrap svg { width: 28px; height: 28px; color: var(--primary); }
.adv-title { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.adv-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--rose-600), var(--rose-800));
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-7);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,97,0.2), transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: var(--sp-3); position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: var(--sp-5); position: relative; }
.cta-banner .btn { position: relative; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: var(--sp-8) 0 var(--sp-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}
.footer-brand .brand { color: #fff; margin-bottom: var(--sp-3); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; color: var(--ink-400); max-width: 320px; }
.footer-contact {
  display: grid;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  max-width: 340px;
  font-style: normal;
}
.footer-contact-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: var(--sp-2);
  font-size: 0.82rem;
  line-height: 1.5;
}
.footer-contact-label {
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-contact-value { color: var(--ink-300); overflow-wrap: anywhere; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-col ul li { margin-bottom: var(--sp-2); }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--ink-400);
  transition: color var(--dur) var(--ease);
}
.footer-col ul a:hover { color: var(--gold-300); }

.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.footer-disclaimer p { font-size: 0.82rem; line-height: 1.6; color: var(--ink-400); margin-bottom: var(--sp-3); }
.footer-disclaimer-links { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.footer-disclaimer-links a {
  font-size: 0.82rem;
  color: var(--gold-300);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease);
}
.footer-disclaimer-links a:hover { color: var(--gold-200); }

.footer-bottom {
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-bottom p { font-size: 0.85rem; color: var(--ink-500); }
.footer-18plus {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-300);
}

/* ============================================
   AGE GATE MODAL
   ============================================ */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26,20,16,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.age-overlay.is-open { visibility: visible; opacity: 1; }
.age-overlay.hidden { visibility: hidden; opacity: 0; pointer-events: none; }
.age-modal {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  max-width: 440px;
  width: 100%;
  padding: var(--sp-7);
  text-align: center;
  box-shadow: var(--sh-lg);
  transform: scale(1);
  transition: transform 0.4s var(--ease-out);
}
.age-overlay.hidden .age-modal { transform: scale(0.95); }
.age-modal-icon { width: 64px; height: 64px; margin: 0 auto var(--sp-4); }
.age-modal h2 { font-size: 1.6rem; margin-bottom: var(--sp-3); }
.age-modal p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: var(--sp-5); }
.age-check-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  text-align: left;
  padding: var(--sp-3);
  background: var(--rose-50);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.age-check-row:hover { background: var(--rose-100); }
.age-check-row input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}
.age-check-row label {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-700);
  cursor: pointer;
}
.age-modal .btn:disabled { opacity: 0.4; }

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--ink-900);
  color: var(--ink-200);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.88rem; line-height: 1.5; max-width: 700px; }
.cookie-banner a { color: var(--gold-300); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--sp-3); }
.cookie-actions .btn { padding: var(--sp-2) var(--sp-4); font-size: 0.85rem; }
.btn--outline-light {
  background: transparent;
  color: var(--ink-200);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--outline-light:hover { border-color: var(--gold-300); color: var(--gold-300); }

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-hero {
  padding: calc(72px + var(--sp-8)) 0 var(--sp-7);
  background:
    radial-gradient(ellipse at 30% 50%, rgba(196,69,105,0.08), transparent 60%),
    var(--rose-50);
  border-bottom: 1px solid var(--border-light);
}
.page-hero .container { max-width: 800px; }
.page-breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.page-breadcrumb a { color: var(--primary); font-weight: 500; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--sp-3); }
.page-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   CONTENT PROSE
   ============================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin: var(--sp-6) 0 var(--sp-3); }
.prose h3 { font-size: 1.25rem; margin: var(--sp-5) 0 var(--sp-2); }
.prose p { margin-bottom: var(--sp-4); color: var(--ink-700); line-height: 1.7; }
.prose ul { margin: var(--sp-3) 0 var(--sp-4); padding-left: var(--sp-5); }
.prose ul li { list-style: disc; margin-bottom: var(--sp-2); color: var(--ink-700); line-height: 1.6; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink-900); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  background: var(--bg-card);
  transition: box-shadow var(--dur) var(--ease);
}
.faq-item.open { box-shadow: var(--sh-md); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  font-family: var(--font-body);
}
.faq-q .chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); transition: transform var(--dur) var(--ease); }
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner { padding: 0 var(--sp-5) var(--sp-4); color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-7);
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  color: #fff;
}
.contact-info-card h3 { color: #fff; margin-bottom: var(--sp-4); font-size: 1.3rem; }
.contact-info-item { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.contact-info-item .ic { width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .ic svg { width: 20px; height: 20px; color: #fff; }
.contact-info-item .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.contact-info-item .val { font-size: 0.95rem; font-weight: 500; }

.form-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-md);
}
.form-group { margin-bottom: var(--sp-4); }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink-800); margin-bottom: var(--sp-2); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--bg);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196,69,105,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  padding: var(--sp-4);
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  border-radius: var(--r-md);
  color: var(--sage-600);
  font-size: 0.92rem;
  margin-bottom: var(--sp-4);
}
.form-success.show { display: block; animation: fadeInUp 0.4s var(--ease-out); }

/* ============================================
   COMMUNITY / HELP CARDS
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.info-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  border: 1px solid var(--border-light);
  transition: all var(--dur) var(--ease);
}
.info-card:hover { border-color: var(--rose-200); box-shadow: var(--sh-md); transform: translateY(-3px); }
.info-card h3 { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.info-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: var(--sp-3); }
.info-card-link { font-size: 0.88rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: var(--sp-2); }

/* ============================================
   STEPS (How It Works)
   ============================================ */
.steps-list { max-width: 760px; margin: 0 auto; }
.step-item {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border-light);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--rose-400), var(--rose-600));
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-body h3 { font-size: 1.2rem; margin-bottom: var(--sp-2); }
.step-body p { color: var(--text-muted); line-height: 1.6; }

/* ============================================
   GAME PAGE
   ============================================ */
.game-page { padding-top: 72px; min-height: 100vh; background: var(--bg); }
.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border-light);
}
.game-back {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: color var(--dur) var(--ease);
}
.game-back:hover { color: var(--primary); }
.game-title-row h1 { font-size: 1.6rem; }
.game-title-row p { font-size: 0.88rem; color: var(--text-muted); }

.game-board {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--sh-lg);
  max-width: 900px;
  margin: var(--sp-5) auto;
  min-height: 400px;
}

/* Slots */
.slots-machine {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}
.slots-reels {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: linear-gradient(135deg, var(--ink-800), var(--ink-900));
  border-radius: var(--r-lg);
  box-shadow: inset 0 4px 20px rgba(0,0,0,0.4);
}
.slot-reel {
  width: 90px;
  height: 120px;
  background: var(--ink-700);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  border: 2px solid var(--gold-400);
}
.slot-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s var(--ease-out);
}
.slot-symbol {
  width: 90px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.slots-controls { display: flex; align-items: center; gap: var(--sp-4); }
.slots-bet { display: flex; align-items: center; gap: var(--sp-2); }
.slots-bet button {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: var(--rose-50);
  border: 1px solid var(--rose-200);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  transition: all var(--dur) var(--ease);
}
.slots-bet button:hover { background: var(--rose-100); }
.slots-bet .val { font-size: 1.1rem; font-weight: 700; min-width: 60px; text-align: center; color: var(--ink-900); }
.slots-result {
  min-height: 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--dur) var(--ease);
}
.slots-result.win { color: var(--success-500); animation: winPulse 0.6s; }
.slots-result.lose { color: var(--text-muted); }
@keyframes winPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* Blackjack */
.bj-table {
  background: linear-gradient(135deg, var(--sage-500), var(--sage-600));
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.bj-hand-area { display: flex; flex-direction: column; gap: var(--sp-2); }
.bj-hand-label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.bj-cards { display: flex; gap: var(--sp-2); flex-wrap: wrap; min-height: 110px; }
.bj-card {
  width: 70px; height: 100px;
  background: #fff;
  border-radius: var(--r-sm);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 8px;
  font-family: var(--font-display);
  animation: dealCard 0.4s var(--ease-out);
}
@keyframes dealCard { from { transform: translateY(-30px) rotate(-10deg); opacity: 0; } to { transform: translateY(0) rotate(0); opacity: 1; } }
.bj-card.red { color: var(--rose-500); }
.bj-card.black { color: var(--ink-900); }
.bj-card .rank { font-size: 1.1rem; font-weight: 700; }
.bj-card .suit { font-size: 1.4rem; align-self: center; }
.bj-card .rank-b { font-size: 1.1rem; font-weight: 700; align-self: flex-end; transform: rotate(180deg); }
.bj-score { font-size: 0.9rem; font-weight: 600; color: #fff; }
.bj-controls { display: flex; gap: var(--sp-3); justify-content: center; }

/* Roulette */
.roulette-wrap { display: flex; flex-direction: column; align-items: center; gap: var(--sp-5); }
.roulette-wheel {
  width: 280px; height: 280px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    var(--rose-500) 0deg 9.73deg, #000 9.73deg 19.46deg,
    var(--rose-500) 19.46deg 29.19deg, #000 29.19deg 38.92deg,
    var(--rose-500) 38.92deg 48.65deg, #000 48.65deg 58.38deg,
    var(--rose-500) 58.38deg 68.11deg, #000 68.11deg 77.84deg,
    var(--rose-500) 77.84deg 87.57deg, #000 87.57deg 97.30deg,
    var(--rose-500) 97.30deg 107.03deg, #000 107.03deg 116.76deg,
    var(--rose-500) 116.76deg 126.49deg, #000 126.49deg 136.22deg,
    var(--rose-500) 136.22deg 145.95deg, #000 145.95deg 155.68deg,
    var(--rose-500) 155.68deg 165.41deg, #000 165.41deg 175.14deg,
    var(--rose-500) 175.14deg 184.87deg, #000 184.87deg 194.60deg,
    var(--rose-500) 194.60deg 204.33deg, #000 204.33deg 214.06deg,
    var(--rose-500) 214.06deg 223.79deg, #000 223.79deg 233.52deg,
    var(--rose-500) 233.52deg 243.25deg, #000 243.25deg 252.98deg,
    var(--rose-500) 252.98deg 262.71deg, #000 262.71deg 272.44deg,
    var(--rose-500) 272.44deg 282.17deg, #000 282.17deg 291.90deg,
    var(--rose-500) 291.90deg 301.63deg, #000 301.63deg 311.36deg,
    var(--rose-500) 311.36deg 321.09deg, #000 321.09deg 330.82deg,
    var(--rose-500) 330.82deg 340.55deg, #000 340.55deg 350.28deg,
    var(--rose-500) 350.28deg 360deg
  );
  border: 8px solid var(--gold-400);
  box-shadow: 0 0 40px rgba(201,169,97,0.3), inset 0 0 30px rgba(0,0,0,0.3);
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
.roulette-pointer {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid var(--gold-500);
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.roulette-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60px; height: 60px;
  background: var(--gold-400);
  border-radius: 50%;
  border: 4px solid var(--ink-900);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}
.roulette-bets { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; }
.roulette-bet-btn {
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--ink-800);
  transition: all var(--dur) var(--ease);
}
.roulette-bet-btn:hover { border-color: var(--primary); color: var(--primary); }
.roulette-bet-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.roulette-result {
  min-height: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

/* Game balance bar */
.game-balance-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  padding: var(--sp-3) var(--sp-5);
  background: var(--bg-card);
  border-radius: var(--r-full);
  box-shadow: var(--sh-sm);
  margin-bottom: var(--sp-5);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.game-balance-bar .item { display: flex; align-items: center; gap: var(--sp-2); font-size: 0.9rem; font-weight: 600; }
.game-balance-bar .item .lbl { color: var(--text-muted); }
.game-balance-bar .item .val { color: var(--ink-900); }
.game-balance-bar .divider { width: 1px; height: 20px; background: var(--border); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .games-grid, .adv-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--bg-card);
    padding: var(--sp-5);
    gap: var(--sp-4);
    box-shadow: var(--sh-md);
    border-bottom: 1px solid var(--border-light);
  }
  .menu-toggle { display: flex; }
  .games-grid, .adv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: var(--sp-5); }
  .hero-stat .num { font-size: 1.5rem; }
  .hero {
    min-height: auto;
    background:
      linear-gradient(rgba(11, 35, 30, 0.74), rgba(11, 35, 30, 0.9)),
      url("images/hero.png") 34% center / cover no-repeat;
  }
  .hero-inner { margin-left: 0; padding: var(--sp-9) 0 var(--sp-8); }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}
@media (max-width: 500px) {
  .slots-reels { padding: var(--sp-3); gap: var(--sp-2); }
  .slot-reel { width: 70px; height: 100px; }
  .slot-symbol { width: 70px; height: 100px; font-size: 2.2rem; }
  .roulette-wheel { width: 220px; height: 220px; }
  .bj-card { width: 56px; height: 84px; }
}
