/* ========================================
   CSS VARIABLES — "GIN & OAK" DESIGN SYSTEM
   ======================================== */
:root {
  /* Base Layers */
  --bg-primary: #0b0f0c;
  --bg-secondary: #141a16;
  --bg-elevated: rgba(255, 255, 255, 0.05);
  --bg-elevated-hover: rgba(255, 255, 255, 0.08);

  /* Irish Accents */
  --green-deep: #1f6f4a;
  --green-emerald: #2ea36a;
  --green-clover: #6ee7b7;

  /* Gin & Gold Accents */
  --gin-lime: #d9f99d;
  --gold-warm: #c8a45d;
  --gold-brass: #a67c2e;

  /* Wood Tones */
  --oak-dark: #3b2f2f;
  --barrel-brown: #5a4634;

  /* Typography */
  --text-primary: #f5f5f4;
  --text-secondary: #d6d3d1;
  --text-muted: #a8a29e;

  /* UI */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-btn: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow-green: 0 0 40px rgba(46, 163, 106, 0.15);
  --shadow-glow-gold: 0 0 40px rgba(200, 164, 93, 0.15);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;

  /* Container */
  --container-max: 1320px;
  --container-narrow: 800px;

  /* Spacing */
  --section-gap: 120px;

  /* Transition */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: var(--green-clover);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gin-lime);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* ========================================
   PUB ATMOSPHERE — FLOATING DUST
   ======================================== */
.pub-atmosphere {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.dust-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(200, 164, 93, 0.2);
  border-radius: 50%;
  animation: floatDust 20s infinite linear;
}

.dust-1 { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 22s; }
.dust-2 { left: 25%; top: 60%; animation-delay: -3s; animation-duration: 18s; }
.dust-3 { left: 50%; top: 30%; animation-delay: -7s; animation-duration: 25s; }
.dust-4 { left: 70%; top: 80%; animation-delay: -10s; animation-duration: 20s; }
.dust-5 { left: 85%; top: 15%; animation-delay: -5s; animation-duration: 23s; }
.dust-6 { left: 40%; top: 90%; animation-delay: -12s; animation-duration: 19s; }
.dust-7 { left: 15%; top: 45%; animation-delay: -2s; animation-duration: 26s; width: 2px; height: 2px; }
.dust-8 { left: 60%; top: 55%; animation-delay: -8s; animation-duration: 21s; width: 4px; height: 4px; opacity: 0.15; }
.dust-9 { left: 90%; top: 40%; animation-delay: -14s; animation-duration: 24s; }
.dust-10 { left: 35%; top: 10%; animation-delay: -6s; animation-duration: 17s; width: 2px; height: 2px; }
.dust-11 { left: 5%; top: 75%; animation-delay: -9s; animation-duration: 28s; }
.dust-12 { left: 75%; top: 5%; animation-delay: -11s; animation-duration: 22s; width: 2px; height: 2px; }

@keyframes floatDust {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.2;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translate(100px, -200px) rotate(360deg);
    opacity: 0;
  }
}

/* ========================================
   HEADER — "THE BAR TOP"
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 12, 0.7);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(200, 164, 93, 0.1);
  transition: var(--transition);
}

.header-scrolled {
  background: rgba(11, 15, 12, 0.92);
  border-bottom-color: rgba(200, 164, 93, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-dot {
  color: var(--gold-warm);
}

/* Nav Desktop */
.nav-desktop {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-emerald), var(--gold-warm));
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-clover);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header CTA */
.header-cta {
  font-size: 0.9rem;
  padding: 10px 24px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--glass-border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: var(--transition-slow);
}

.mobile-menu-overlay.active .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-header .logo-icon {
  font-size: 2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--bg-elevated);
  color: var(--green-clover);
}

.mobile-cta {
  margin-top: auto;
  text-align: center;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-deep), var(--green-emerald));
  color: #fff;
  box-shadow: 0 4px 20px rgba(46, 163, 106, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(46, 163, 106, 0.35);
  color: #fff;
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--bg-elevated-hover);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn-icon {
  font-size: 1.1em;
}

/* ========================================
   HERO — "WELCOME TO THE PUB"
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-warm-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 164, 93, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(31, 111, 74, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 60px 24px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--green-clover), var(--gold-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-humor {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.hero-image-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(46, 163, 106, 0.2), rgba(200, 164, 93, 0.2));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
  animation: glowPulse 4s ease-in-out infinite;
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-warm), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ========================================
   GIN TOAST
   ======================================== */
.gin-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.gin-toast.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gin-toast-inner {
  background: var(--bg-secondary);
  border: 1px solid rgba(200, 164, 93, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-medium), var(--shadow-glow-gold);
  backdrop-filter: blur(var(--glass-blur));
  max-width: 420px;
  position: relative;
}

.gin-toast-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.gin-toast-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.gin-toast-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.gin-toast-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* Gin Poured */
.gin-poured {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.gin-poured.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gin-poured-inner {
  background: var(--bg-secondary);
  border: 1px solid rgba(46, 163, 106, 0.3);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-medium), var(--shadow-glow-green);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.gin-poured-icon {
  font-size: 1.5rem;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--gold-warm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   HOW IT WORKS — "THE PUB JOURNEY"
   ======================================== */
.how-it-works {
  padding: var(--section-gap) 0;
  position: relative;
  z-index: 1;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.journey-step {
  text-align: center;
  padding: 40px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}

.journey-step:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 164, 93, 0.2);
  box-shadow: var(--shadow-glow-gold);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200, 164, 93, 0.15);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.step-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.step-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   GAME SECTION — "THE TABLE"
   ======================================== */
.game-section {
  padding: var(--section-gap) 0;
  position: relative;
  z-index: 1;
}

.game-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.game-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(59, 47, 47, 0.4), rgba(20, 26, 22, 0.8));
  border: 1px solid rgba(200, 164, 93, 0.15);
  box-shadow:
    var(--shadow-medium),
    0 0 60px rgba(46, 163, 106, 0.08),
    0 0 60px rgba(200, 164, 93, 0.08);
}

.game-glow-edge {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(46, 163, 106, 0.15), rgba(200, 164, 93, 0.15), rgba(46, 163, 106, 0.15));
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.game-iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: none;
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
  border-radius: 20px;
}

.game-footer {
  text-align: center;
  padding: 20px 0 0;
}

.game-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================
   FEATURES — "HOUSE SPECIALS"
   ======================================== */
.features {
  padding: var(--section-gap) 0;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-emerald), var(--gold-warm), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   AMBIANCE SECTION
   ======================================== */
.ambiance-section {
  padding: var(--section-gap) 0;
  position: relative;
  z-index: 1;
}

.ambiance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ambiance-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.ambiance-image {
  width: 100%;
  height: auto;
  display: block;
}

.ambiance-content .section-badge {
  display: inline-block;
  margin-bottom: 16px;
}

.ambiance-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.ambiance-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--green-clover), var(--gold-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ambiance-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ========================================
   TESTIMONIALS / SOCIAL PROOF
   ======================================== */
.social-proof {
  padding: var(--section-gap) 0;
  position: relative;
  z-index: 1;
}

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

.testimonial-card {
  padding: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(200, 164, 93, 0.15);
}

.testimonial-stars {
  color: var(--gold-warm);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.author-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: var(--section-gap) 0;
  position: relative;
  z-index: 1;
}

.cta-card {
  text-align: center;
  padding: 80px 40px;
  background:
    linear-gradient(135deg, rgba(31, 111, 74, 0.1), rgba(200, 164, 93, 0.05));
  border: 1px solid rgba(200, 164, 93, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 163, 106, 0.05) 0%, transparent 50%);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-actions {
  position: relative;
  margin-bottom: 24px;
}

.cta-humor {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  position: relative;
}

/* ========================================
   PAGE HERO (Sub-pages)
   ======================================== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(31, 111, 74, 0.08) 0%, transparent 60%);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   CONTENT SECTIONS (Sub-pages)
   ======================================== */
.content-section {
  padding: 0 0 var(--section-gap);
  position: relative;
  z-index: 1;
}

.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.content-block p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-image-block {
  margin: 48px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.content-image {
  width: 100%;
  height: auto;
  display: block;
}

.content-cta {
  text-align: center;
  padding: 48px 0 0;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-section {
  padding-bottom: 80px;
}

.legal-content {
  padding: 0;
}

.legal-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.legal-block h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 20px 0 12px;
  color: var(--green-clover);
}

.legal-block p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-list {
  padding-left: 0;
  margin: 16px 0;
}

.legal-list li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-list li::before {
  content: '☘';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  color: var(--green-emerald);
}

.legal-list-numbered {
  counter-reset: item;
}

.legal-list-numbered li {
  counter-increment: item;
}

.legal-list-numbered li::before {
  content: counter(item) ".";
  font-weight: 600;
  color: var(--gold-warm);
}

/* ========================================
   RULES PAGE
   ======================================== */
.rules-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.rules-card h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.rules-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green-clover);
  margin: 16px 0 8px;
}

.rules-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.rules-cta-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

/* ========================================
   RESPONSIBLE GAMING PAGE
   ======================================== */
.responsible-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: rgba(46, 163, 106, 0.08);
  border: 1px solid rgba(46, 163, 106, 0.2);
  border-radius: var(--radius);
  margin-bottom: 48px;
}

.responsible-highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.responsible-highlight p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.tip-card {
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}

.tip-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.tip-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.tip-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.resource-item {
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}

.resource-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.resource-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.resource-link {
  font-size: 0.9rem;
  color: var(--green-clover);
  font-weight: 500;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}

.contact-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.contact-email {
  font-size: 0.9rem;
  color: var(--green-clover);
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--green-emerald);
  box-shadow: 0 0 0 3px rgba(46, 163, 106, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8a29e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.active {
  display: block;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  position: relative;
  z-index: 1;
  padding: 80px 0 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-list a:hover {
  color: var(--green-clover);
}

.footer-divider {
  height: 1px;
  background: var(--glass-border);
  margin-bottom: 32px;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--green-clover);
}

.footer-logo {
  margin-bottom: 0;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.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;
}