@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  /* Primary Color Ramps */
  --navy-50:  #eef1f8;
  --navy-100: #c9d0e8;
  --navy-200: #9aaad4;
  --navy-300: #6b85bf;
  --navy-400: #3d5fa8;
  --navy-500: #1b3a8c;
  --navy-600: #172f73;
  --navy-700: #12235a;
  --navy-800: #0d1842;
  --navy-900: #080d29;

  /* Gold Ramps */
  --gold-50:  #fdf8ec;
  --gold-100: #f9edcb;
  --gold-200: #f4dc98;
  --gold-300: #ecc558;
  --gold-400: #e3ae2a;
  --gold-500: #c5961a;
  --gold-600: #a87d14;
  --gold-700: #8a640f;
  --gold-800: #6d4c0b;
  --gold-900: #4f3407;

  /* Burgundy Ramps */
  --burgundy-50:  #fdf0f0;
  --burgundy-100: #f8d3d3;
  --burgundy-200: #f0a8a8;
  --burgundy-300: #e37878;
  --burgundy-400: #cf4848;
  --burgundy-500: #9b2020;
  --burgundy-600: #7a1a1a;
  --burgundy-700: #5e1313;
  --burgundy-800: #430d0d;
  --burgundy-900: #280808;

  /* Forest Green Ramps */
  --green-50:  #eef4ec;
  --green-100: #cce0c6;
  --green-200: #a0c898;
  --green-300: #74af68;
  --green-400: #4d943e;
  --green-500: #2d6e20;
  --green-600: #245819;
  --green-700: #1b4213;
  --green-800: #122c0d;
  --green-900: #091607;

  /* Success / Warning / Error */
  --success-500: #16a34a;
  --success-100: #dcfce7;
  --warning-500: #d97706;
  --warning-100: #fef3c7;
  --error-500:   #dc2626;
  --error-100:   #fee2e2;

  /* Neutral / Cream */
  --cream-50:  #faf8f3;
  --cream-100: #f5f0e4;
  --cream-200: #ede5d0;
  --cream-300: #ddd2b8;
  --cream-400: #c8bca0;
  --cream-500: #a89878;
  --neutral-600: #6b6356;
  --neutral-700: #4a443a;
  --neutral-800: #2e2a22;
  --neutral-900: #1a1714;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing (8px base) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 2.5rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(8,13,41,0.12), 0 1px 2px rgba(8,13,41,0.08);
  --shadow-md:  0 4px 12px rgba(8,13,41,0.15), 0 2px 6px rgba(8,13,41,0.10);
  --shadow-lg:  0 10px 30px rgba(8,13,41,0.18), 0 4px 12px rgba(8,13,41,0.12);
  --shadow-xl:  0 20px 50px rgba(8,13,41,0.22), 0 8px 20px rgba(8,13,41,0.14);
  --shadow-gold: 0 4px 20px rgba(197,150,26,0.35);

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream-50);
  color: var(--neutral-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 600;
  line-height: 1.3;
}

.heading-md {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.35;
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

.body-md {
  font-size: 1rem;
  line-height: 1.65;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =============================================
   ORNAMENT / DIVIDER
   ============================================= */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-2);
}

.ornament-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--gold-400));
}

.ornament-line.right {
  background: linear-gradient(to left, transparent, var(--gold-400));
}

.ornament-icon {
  color: var(--gold-500);
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  border: none;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(197,150,26,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--cream-100);
  border: 1.5px solid rgba(245,240,228,0.4);
}

.btn-secondary:hover {
  background: rgba(245,240,228,0.1);
  border-color: rgba(245,240,228,0.7);
}

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border: 1.5px solid var(--navy-200);
}

.btn-outline:hover {
  background: var(--navy-50);
  border-color: var(--navy-400);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem var(--sp-4);
  transition: all 0.35s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(11, 19, 50, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.875rem var(--sp-4);
  box-shadow: var(--shadow-lg);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-crest {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 500;
  margin-top: 2px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  color: rgba(245,240,228,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-link.active {
  color: var(--gold-300);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.coins-display {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(197,150,26,0.15);
  border: 1px solid rgba(197,150,26,0.3);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.875rem;
  color: var(--gold-300);
  font-weight: 600;
  font-size: 0.875rem;
}

.coins-icon {
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-900);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  font-size: 1.25rem;
  padding: 0.75rem 2rem;
  color: rgba(245,240,228,0.85);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,13,41,0.95) 0%,
    rgba(11,19,65,0.85) 40%,
    rgba(27,42,100,0.7) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-20vh) translateX(30px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(80px + var(--sp-8)) var(--sp-4) var(--sp-16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197,150,26,0.15);
  border: 1px solid rgba(197,150,26,0.35);
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem;
  margin-bottom: var(--sp-3);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}

.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(245,240,228,0.75);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(197,150,26,0.2);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(245,240,228,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-crest {
  width: 340px;
  height: 340px;
  position: relative;
  animation: slow-rotate 20s linear infinite;
}

.hero-crest-outer {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(197,150,26,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-crest-inner {
  width: 240px;
  height: 240px;
  border: 2px solid rgba(197,150,26,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197,150,26,0.06);
}

.hero-crest-center {
  font-size: 5rem;
  animation: counter-rotate 20s linear infinite;
}

@keyframes slow-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes counter-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

.hero-crest-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(197,150,26,0.6);
}

/* =============================================
   SECTION LAYOUTS
   ============================================= */
.section {
  padding: var(--sp-12) var(--sp-4);
}

.section-sm {
  padding: var(--sp-8) var(--sp-4);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: var(--sp-2);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =============================================
   GAMES SECTION
   ============================================= */
.games-section {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.games-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500), transparent);
}

.games-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500), transparent);
}

.games-section .section-title {
  color: #fff;
}

.games-section .section-subtitle {
  color: rgba(245,240,228,0.65);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.game-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,150,26,0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
}

.game-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(197,150,26,0.5);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.game-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,13,41,0.85) 0%, transparent 60%);
}

.game-card-badge {
  position: absolute;
  top: var(--sp-2);
  right: var(--sp-2);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.game-card-body {
  padding: var(--sp-3);
}

.game-card-icon {
  font-size: 2rem;
  margin-bottom: var(--sp-1);
}

.game-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.game-card-desc {
  font-size: 0.875rem;
  color: rgba(245,240,228,0.6);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}

.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(197,150,26,0.15);
}

.game-card-players {
  font-size: 0.75rem;
  color: rgba(197,150,26,0.8);
  font-weight: 500;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-section {
  background: var(--cream-50);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  transition: all 0.3s var(--ease-out);
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold-200);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy-50), var(--navy-100));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-2);
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--navy-800);
  position: relative;
}

.testimonials-section .section-title {
  color: #fff;
}

.testimonials-section .section-subtitle {
  color: rgba(245,240,228,0.6);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
}

.testimonial-stars {
  color: var(--gold-400);
  font-size: 0.875rem;
  margin-bottom: var(--sp-2);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: rgba(245,240,228,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--sp-3);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-400), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.875rem;
}

.testimonial-location {
  font-size: 0.75rem;
  color: rgba(245,240,228,0.45);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--neutral-900);
  padding: var(--sp-10) var(--sp-4) 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--burgundy-600), var(--gold-500), var(--navy-500));
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--sp-6);
  padding-bottom: var(--sp-8);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(245,240,228,0.5);
  line-height: 1.7;
  margin-top: var(--sp-2);
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(245,240,228,0.55);
  transition: color 0.2s ease;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-disclaimer {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(155,32,32,0.12);
  border: 1px solid rgba(155,32,32,0.25);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-4);
}

.footer-disclaimer p {
  font-size: 0.8125rem;
  color: rgba(245,240,228,0.6);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer a {
  color: var(--gold-300);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-disclaimer a:hover {
  color: var(--gold-200);
}

.footer-disclaimer strong {
  color: rgba(245,240,228,0.75);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-3) 0 var(--sp-4);
  border-top: 1px solid rgba(245,240,228,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(245,240,228,0.35);
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(155,32,32,0.2);
  border: 1px solid rgba(155,32,32,0.35);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(245,240,228,0.7);
}

/* =============================================
   AGE VERIFICATION MODAL
   ============================================= */
.age-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,13,41,0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  backdrop-filter: blur(8px);
}

.age-modal-overlay.hidden {
  display: none;
}

.age-modal {
  background: var(--navy-800);
  border: 1px solid rgba(197,150,26,0.3);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: modal-enter 0.4s var(--ease-out);
}

@keyframes modal-enter {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.age-modal-crest {
  font-size: 3.5rem;
  margin-bottom: var(--sp-3);
}

.age-modal-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.age-modal-subtitle {
  color: var(--gold-300);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.age-modal-text {
  font-size: 0.9375rem;
  color: rgba(245,240,228,0.7);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.age-modal-divider {
  height: 1px;
  background: rgba(197,150,26,0.2);
  margin: var(--sp-3) 0;
}

.age-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  text-align: left;
  cursor: pointer;
  margin-bottom: var(--sp-3);
  padding: var(--sp-2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(197,150,26,0.15);
  background: rgba(197,150,26,0.05);
  transition: all 0.2s ease;
}

.age-checkbox-label:hover {
  border-color: rgba(197,150,26,0.35);
  background: rgba(197,150,26,0.1);
}

.age-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--gold-500);
  cursor: pointer;
  margin-top: 2px;
}

.age-checkbox-text {
  font-size: 0.9rem;
  color: rgba(245,240,228,0.8);
  line-height: 1.5;
}

.age-modal-confirm {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem var(--sp-4);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: var(--sp-2);
}

.age-modal-confirm:disabled {
  background: rgba(245,240,228,0.15);
  color: rgba(245,240,228,0.35);
  cursor: not-allowed;
  box-shadow: none;
}

.age-modal-confirm:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.age-modal-note {
  font-size: 0.75rem;
  color: rgba(245,240,228,0.35);
  line-height: 1.5;
}

/* =============================================
   COOKIE CONSENT
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-3);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  background: var(--navy-800);
  border: 1px solid rgba(197,150,26,0.3);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  max-width: 760px;
  width: calc(100% - 2rem);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--shadow-xl);
  transition: all 0.4s var(--ease-out);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  font-size: 0.875rem;
  color: rgba(245,240,228,0.75);
  line-height: 1.55;
}

.cookie-text a {
  color: var(--gold-300);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-decline {
  background: transparent;
  color: rgba(245,240,228,0.6);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245,240,228,0.15);
  cursor: pointer;
  white-space: nowrap;
}

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  background: var(--navy-900);
  padding: calc(80px + var(--sp-8)) var(--sp-4) var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500), transparent);
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-header-subtitle {
  font-size: 1.0625rem;
  color: rgba(245,240,228,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =============================================
   PROSE CONTENT (legal pages etc.)
   ============================================= */
.prose-content {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-4);
}

.prose-content h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: var(--sp-5) 0 var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--cream-200);
}

.prose-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.prose-content h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--navy-700);
  margin: var(--sp-3) 0 var(--sp-1);
}

.prose-content p {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.75;
  margin-bottom: var(--sp-2);
}

.prose-content ul, .prose-content ol {
  margin: var(--sp-2) 0;
  padding-left: var(--sp-3);
}

.prose-content ul { list-style: disc; }
.prose-content ol { list-style: decimal; }

.prose-content li {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.prose-content a {
  color: var(--navy-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose-content a:hover {
  color: var(--gold-600);
}

.info-box {
  background: var(--navy-50);
  border: 1px solid var(--navy-200);
  border-left: 4px solid var(--navy-500);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-3);
  margin: var(--sp-3) 0;
}

.info-box p {
  margin: 0;
  color: var(--navy-700);
}

.warning-box {
  background: var(--warning-100);
  border: 1px solid #fbbf24;
  border-left: 4px solid var(--warning-500);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  margin: var(--sp-3) 0;
}

.warning-box p {
  margin: 0;
  color: #92400e;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--sp-3) var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-800);
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--navy-600); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--navy-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--navy-600);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  background: var(--navy-600);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 var(--sp-3) var(--sp-3);
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* =============================================
   HOW IT WORKS STEPS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 1px;
  background: linear-gradient(to right, var(--gold-300), var(--gold-400), var(--gold-300));
}

.step-card {
  text-align: center;
  padding: var(--sp-4);
}

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border: 2px solid var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-300);
  margin: 0 auto var(--sp-3);
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* =============================================
   COMMUNITY GRID
   ============================================= */
.community-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.community-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
}

.community-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.community-card-img {
  height: 180px;
  overflow: hidden;
}

.community-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.community-card:hover .community-card-img img {
  transform: scale(1.04);
}

.community-card-body {
  padding: var(--sp-3);
}

.community-tag {
  display: inline-block;
  background: var(--navy-50);
  color: var(--navy-600);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.625rem;
}

/* =============================================
   RESPONSIBLE GAMING SPECIFIC
   ============================================= */
.rg-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}

.rg-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-3);
  display: flex;
  gap: var(--sp-2);
}

.rg-card-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.rg-card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.375rem;
}

.rg-card-desc {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.help-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: var(--sp-3) 0;
}

.help-link-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-2);
  transition: all 0.2s ease;
}

.help-link-item:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow-sm);
}

.help-link-org {
  flex: 1;
}

.help-link-name {
  font-weight: 600;
  color: var(--navy-800);
  font-size: 0.9375rem;
}

.help-link-desc {
  font-size: 0.8125rem;
  color: var(--neutral-600);
}

.help-link-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-600);
  padding: 0.375rem 0.875rem;
  border: 1.5px solid var(--navy-200);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.help-link-btn:hover {
  background: var(--navy-600);
  color: #fff;
  border-color: var(--navy-600);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto var(--sp-5); }

  .games-grid,
  .benefits-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

  .steps-grid { gap: var(--sp-3); }
  .steps-grid::before { display: none; }
  .community-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .navbar-actions .btn { display: none; }

  .games-grid,
  .benefits-grid,
  .testimonials-grid,
  .steps-grid,
  .community-cards { grid-template-columns: 1fr; }

  .rg-cards { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions { justify-content: center; }

  .age-modal { padding: var(--sp-4); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: var(--sp-2); }
}
