/* ==========================================================================
   JLJL6 CASINO DESIGN SYSTEM — MASTER STYLESHEET
   Aesthetics: Luxury Obsidian Gold & Neon Emerald Gaming Aesthetic
   Typography: Google Fonts 'Outfit' (Headings) & 'Inter' (Body/Data)
   Compliance: Strict E-E-A-T Standards, Responsible Gaming 21+, Mobile-First
   ========================================================================== */

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

:root {
  /* Core Color Palette */
  --bg-canvas: #070a11;
  --bg-surface: #0e1524;
  --bg-surface-elevated: #141f33;
  --bg-glass: rgba(16, 24, 40, 0.78);
  --bg-card: rgba(18, 28, 48, 0.72);
  --bg-card-hover: rgba(26, 40, 68, 0.85);

  /* Metallic & Accent Tones */
  --gold-primary: #f59e0b;
  --gold-secondary: #fbbf24;
  --gold-light: #fef08a;
  --gold-dark: #b45309;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fbbf24 0%, #fef08a 50%, #f59e0b 100%);

  --emerald-primary: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.35);
  --cyan-primary: #06b6d4;
  --purple-accent: #8b5cf6;
  --crimson-accent: #ef4444;

  /* Text Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #fbbf24;

  /* Borders & Dividers */
  --border-gold: rgba(245, 158, 11, 0.28);
  --border-gold-glow: rgba(245, 158, 11, 0.55);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);

  /* Shadows & Illuminations */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7);
  --glow-gold: 0 0 25px rgba(245, 158, 11, 0.25);
  --glow-gold-lg: 0 0 45px rgba(245, 158, 11, 0.4);
  --glow-emerald: 0 0 25px rgba(16, 185, 129, 0.3);

  /* Dimensions & Spacing */
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --header-height: 76px;
  --bottom-nav-height: 68px;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-canvas);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #151f38 0%, #070a11 65%, #05070c 100%);
  padding-bottom: var(--bottom-nav-height);
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

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

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

button, input, select {
  font-family: inherit;
}

/* Proportional Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3.5vw, 2rem);
  padding-right: clamp(1rem, 3.5vw, 2rem);
}

.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  position: relative;
}

/* Subtle Animated Casino Background Textures */
.casino-bg-gradient {
  background: linear-gradient(180deg, rgba(14, 21, 36, 0.4) 0%, rgba(7, 10, 17, 0.95) 100%),
              radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
}

.casino-felt-container {
  background: linear-gradient(135deg, rgba(10, 37, 27, 0.35) 0%, rgba(8, 20, 32, 0.75) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

/* Typography Hierarchy */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin-bottom: 0.85rem; }
h4 { font-size: 1.15rem; font-weight: 600; }

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.emerald-gradient-text {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons & CTA Systems */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  min-height: 48px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(30deg);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.55);
}

.btn-primary:hover::after {
  transform: translateX(350%) rotate(30deg);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--emerald-glow);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.6);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  min-height: 38px;
}

/* Header & Sticky Top Bar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(7, 10, 17, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.25rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--gold-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }
}

/* ==========================================================================
   CASINO HERO CONTAINER (Mandatory First Container Background)
   ========================================================================== */
.hero-container {
  position: relative;
  min-height: 480px;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}

/* Dark atmospheric vignette overlays for readability */
.hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(7, 10, 17, 0.72) 0%, 
    rgba(7, 10, 17, 0.88) 55%, 
    #070a11 100%),
    radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
}

.hero-title {
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 760px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 640px) {
  .hero-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   3x2 INTERACTIVE GRID BOX SYSTEM (Locked to 3 cols x 2 rows)
   ========================================================================== */
.grid-box-section {
  position: relative;
}

.grid-filter-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  scrollbar-width: none;
}

.grid-filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  padding: 0.55rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.filter-tab:hover {
  background: var(--bg-surface-elevated);
  color: var(--text-main);
  border-color: rgba(245, 158, 11, 0.4);
}

.filter-tab.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-light);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.35);
}

/* Strict 3x2 Grid Box Container */
.grid-box-3x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 680px) {
  .grid-box-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-box-3x2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Casino Game & Spoke Card Placecard */
.placecard {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
  position: relative;
}

.placecard:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-glow);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(245, 158, 11, 0.2);
}

.placecard-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d131f;
  overflow: hidden;
}

.placecard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.placecard:hover .placecard-img {
  transform: scale(1.06);
}

.placecard-badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(7, 10, 17, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}

.placecard-rtp-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 10px var(--emerald-glow);
}

.placecard-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.placecard-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  transition: color 0.2s ease;
}

.placecard:hover .placecard-title {
  color: var(--gold-light);
}

.placecard-snippet {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.placecard-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.placecard-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

/* ==========================================================================
   PAGINATION CONTROLS
   ========================================================================== */
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.page-btn {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0 0.85rem;
}

.page-btn:hover:not(:disabled) {
  background: var(--bg-surface-elevated);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.page-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-light);
  font-weight: 800;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ==========================================================================
   E-E-A-T & TRUST COMPONENTS
   ========================================================================== */
.eeat-trust-banner {
  background: rgba(18, 28, 48, 0.65);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.eeat-badges-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.eeat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.eeat-pill.verified {
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Author Credentials Card */
.author-profile-box {
  background: linear-gradient(135deg, rgba(16, 24, 40, 0.9) 0%, rgba(20, 32, 54, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .author-profile-box {
    flex-direction: row;
    align-items: center;
  }
}

.author-avatar-wrap {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gold-primary);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.35);
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.author-title {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* Scorecard Review Widget */
.scorecard-widget {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .scorecard-widget {
    grid-template-columns: 200px 1fr;
    align-items: center;
  }
}

.scorecard-overall {
  text-align: center;
  padding: 1.25rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
}

.scorecard-big-number {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.scorecard-stars {
  color: var(--gold-primary);
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.score-bars-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.score-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.score-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
}

.score-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.score-progress-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
}

/* Table of Contents Sticky Sidebar */
.toc-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.toc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.toc-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  padding-left: 0.5rem;
  border-left: 2px solid transparent;
}

.toc-link:hover, .toc-link.active {
  color: var(--gold-light);
  border-left-color: var(--gold-primary);
}

/* ==========================================================================
   INTERACTIVE FAQ ACCORDIONS
   ========================================================================== */
.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 2rem 0;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open {
  border-color: var(--border-gold);
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-main);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
}

.faq-trigger:hover {
  color: var(--gold-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.open .faq-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   21+ RESPONSIBLE GAMING ADVISORY FOOTER
   ========================================================================== */
.footer-disclaimer-box {
  background: rgba(20, 10, 10, 0.75);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-disclaimer-box {
    flex-direction: row;
    align-items: center;
  }
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #dc2626;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: var(--radius-full);
  border: 3px solid #fff;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.disclaimer-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.disclaimer-text a {
  color: var(--gold-light);
  text-decoration: underline;
  font-weight: 600;
}

.site-footer {
  background: #04060a;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    text-align: left;
  }
}

/* ==========================================================================
   MOBILE STICKY BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--bottom-nav-height);
  background: rgba(7, 10, 17, 0.94);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
}

.bottom-nav-item svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.bottom-nav-item.active, .bottom-nav-item:hover {
  color: var(--gold-light);
}

.bottom-nav-item.active svg {
  transform: translateY(-2px);
  stroke: var(--gold-light);
}

/* ==========================================================================
   OFF-CANVAS MOBILE DRAWER
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-gold);
  z-index: 1100;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

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

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-link {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
}

.drawer-link:hover, .drawer-link.active {
  color: var(--gold-light);
}

/* ==========================================================================
   LANGUAGE SWITCHER CONTROLS (English / Filipino)
   ========================================================================== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(20, 31, 51, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 3px 4px;
  gap: 2px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: var(--text-main);
}

.lang-btn.active {
  background: var(--gold-gradient);
  color: #070a11;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.lang-flag {
  font-size: 0.9rem;
  line-height: 1;
}

/* Mobile Drawer Language Selector */
.drawer-lang-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.85rem;
  background: rgba(14, 21, 36, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}

.drawer-lang-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drawer-lang-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.drawer-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.5rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-lang-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.drawer-lang-btn.active {
  background: var(--gold-gradient);
  color: #070a11;
  border-color: var(--gold-secondary);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

/* Footer Language Selector */
.footer-lang-selector {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.footer-lang-link {
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.footer-lang-link:hover, .footer-lang-link.active {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-lang-link.active {
  color: var(--gold-primary);
  font-weight: 700;
}

