:root {
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Plus Jakarta Sans", "Inter", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;

  /* Color Palette - Luxury Casino & Electric High-Conversion Accents */
  --color-gold-primary: #F59E0B;
  --color-gold-light: #FDE68A;
  --color-gold-dark: #D97706;
  --color-gold-glow: rgba(245, 158, 11, 0.4);

  --color-neon-emerald: #10B981;
  --color-emerald-hover: #059669;
  --color-emerald-glow: rgba(16, 185, 129, 0.45);

  --color-electric-blue: #3B82F6;
  --color-purple-neon: #8B5CF6;
  --color-danger-crimson: #EF4444;

  /* Surfaces & Glassmorphism */
  --bg-dark-base: #030712;
  --bg-dark-surface: #0B1120;
  --bg-card-glass: rgba(15, 23, 42, 0.78);
  --bg-card-hover: rgba(30, 41, 59, 0.9);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(245, 158, 11, 0.35);

  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-gold: #FCD34D;

  /* Shadows & Elevation */
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 12px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-gold-glow: 0 0 25px rgba(245, 158, 11, 0.35);
  --shadow-emerald-glow: 0 0 25px rgba(16, 185, 129, 0.35);

  /* Layout & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-base);
  color: var(--text-secondary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--color-gold-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 8px var(--color-gold-glow);
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ==========================================================
   HEADER & NAVIGATION
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  height: 72px;
  display: flex;
  align-items: center;
}

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

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  background: rgba(245, 158, 11, 0.15);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: none;
}

@media (min-width: 768px) {
  .brand-tagline { display: inline-block; }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #E2E8F0;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-primary), var(--color-neon-emerald));
  transition: width 0.25s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-login {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
}

.btn-header-login:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

.btn-header-cta {
  font-size: 13px;
  font-weight: 700;
  color: #030712 !important;
  background: linear-gradient(135deg, #F59E0B, #FFD700);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px var(--color-gold-glow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--color-gold-glow);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

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

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 7, 18, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 18px;
  z-index: 999;
  border-bottom: 1px solid var(--border-glass);
  overflow-y: auto;
}

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

.mobile-nav-link {
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Breadcrumb Navigation Bar */
.breadcrumb-bar {
  background: rgba(11, 17, 32, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
  width: 100%;
  position: relative;
  z-index: 10;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--color-gold-light);
  font-weight: 500;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}

.breadcrumb-current {
  color: #FFFFFF;
  font-weight: 600;
}

/* ==========================================================
   CASINO HERO CONTAINER (First container with image background)
   ========================================================== */
.casino-hero {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
}

.casino-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.55) 0%, rgba(3, 7, 18, 0.88) 75%, #030712 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.casino-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(245, 158, 11, 0.18) 0%, transparent 55%),
              radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

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

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--color-gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title { font-size: 48px; }
}

.hero-lead {
  font-size: 17px;
  line-height: 1.6;
  color: #E2E8F0;
  margin-bottom: 28px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-hero-primary {
  font-size: 15px;
  font-weight: 700;
  color: #030712 !important;
  background: linear-gradient(135deg, #F59E0B, #FFD700);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px var(--color-gold-glow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--color-gold-glow);
}

.btn-hero-secondary {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  padding: 14px 26px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

/* ==========================================================
   FLASHY CASINO CONTAINER BACKGROUNDS (With Luxury Textures)
   ========================================================= */
.casino-section-gold {
  position: relative;
  background: #030712 url('/assets/images/bg-casino-gold.webp') no-repeat center center / cover;
  padding: 70px 0;
  border-bottom: 1px solid var(--border-glass);
}

.casino-section-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.88) 0%, rgba(11, 17, 32, 0.92) 100%);
  z-index: 1;
}

.casino-section-neon {
  position: relative;
  background: #030712 url('/assets/images/bg-casino-neon.webp') no-repeat center center / cover;
  padding: 70px 0;
  border-bottom: 1px solid var(--border-glass);
}

.casino-section-neon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.9) 0%, rgba(9, 14, 26, 0.94) 100%);
  z-index: 1;
}

.casino-section-sparkles {
  position: relative;
  background: #030712 url('/assets/images/bg-casino-sparkles.webp') no-repeat center center / cover;
  padding: 70px 0;
  border-bottom: 1px solid var(--border-glass);
}

.casino-section-sparkles::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.86) 0%, rgba(15, 23, 42, 0.92) 100%);
  z-index: 1;
}

.casino-section-glass {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),
              #030712;
  padding: 70px 0;
  border-bottom: 1px solid var(--border-glass);
}

.section-content {
  position: relative;
  z-index: 2;
}

/* Section Headings */
.section-header {
  margin-bottom: 40px;
}

.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold-light);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .section-title { font-size: 34px; }
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 740px;
}

/* ==========================================================
   3x2 INTERACTIVE GRID BOX SYSTEM & PLACECARDS
   ========================================================== */
.grid-3x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

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

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

/* Game & Placecard Card */
.placecard {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.placecard:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.8), 0 0 20px var(--color-gold-glow);
}

.placecard-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0F172A;
}

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

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

.placecard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #030712;
  background: var(--color-gold-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.placecard-badge.badge-emerald {
  background: var(--color-neon-emerald);
  color: #FFFFFF;
}

.placecard-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.placecard-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.placecard-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.placecard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.placecard-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.placecard-link:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

/* Pagination Controls */
.pagination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.btn-page {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-glass);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-page:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--color-gold-primary);
  color: var(--color-gold-light);
}

.btn-page.active {
  background: linear-gradient(135deg, #F59E0B, #FFD700);
  border-color: #F59E0B;
  color: #030712;
  font-weight: 700;
}

/* ==========================================================
   MEDIA ELEMENTS & CONTENT BUNDLES
   ========================================================== */
.media-bundle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  margin: 40px 0;
}

@media (min-width: 900px) {
  .media-bundle { grid-template-columns: 1fr 1fr; }
  .media-bundle.reverse { direction: rtl; }
  .media-bundle.reverse > * { direction: ltr; }
}

.media-bundle-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
  position: relative;
}

.featured-banner-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
}

/* ==========================================================
   INTERACTIVE FAQ ACCORDION
   ========================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-gold);
  background: rgba(30, 41, 59, 0.7);
}

.faq-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  fill: var(--color-gold-light);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  font-size: 15px;
  color: #CBD5E1;
  line-height: 1.6;
}

.faq-item.active .faq-body {
  padding: 0 22px 20px;
  max-height: 600px;
}

/* ==========================================================
   E-E-A-T TRUST SIGNALS & AUTHOR BOX
   ========================================================== */
.eeat-author-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  margin: 40px 0;
}

@media (min-width: 640px) {
  .eeat-author-card { grid-template-columns: 80px 1fr; }
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gold-primary);
  object-fit: cover;
}

.author-meta h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.author-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 8px;
}

.author-bio {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.5;
}

.trust-badges-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.trust-badge-pill {
  font-size: 12px;
  font-weight: 600;
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================
   TABLES (Comparison & Cashier)
   ========================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  margin: 28px 0;
  background: rgba(15, 23, 42, 0.6);
}

.casino-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.casino-table th {
  background: rgba(30, 41, 59, 0.8);
  color: var(--color-gold-light);
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-glass);
}

.casino-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #E2E8F0;
}

.casino-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* ==========================================================
   STICKY MOBILE BOTTOM BAR
   ========================================================== */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.mobile-bar-info {
  display: flex;
  flex-direction: column;
}

.mobile-bar-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.mobile-bar-bonus {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
}

.mobile-bar-btn {
  font-size: 13px;
  font-weight: 700;
  color: #030712 !important;
  background: linear-gradient(135deg, #F59E0B, #FFD700);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px var(--color-gold-glow);
}

/* ==========================================================
   21+ AGE GATE INTERSTITIAL MODAL
   ========================================================== */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), var(--shadow-gold-glow);
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid var(--color-danger-crimson);
  color: var(--color-danger-crimson);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}

.age-gate-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.age-gate-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-age-confirm {
  font-size: 15px;
  font-weight: 700;
  color: #030712 !important;
  background: linear-gradient(135deg, #10B981, #00C853);
  padding: 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 4px 16px var(--color-emerald-glow);
  border: none;
}

.btn-age-exit {
  font-size: 14px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-glass);
  padding: 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

/* ==========================================================
   FOOTER & MANDATORY RESPONSIBLE GAMING COMPLIANCE
   ========================================================== */
.site-footer {
  background: #02040A;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 100px;
  color: var(--text-muted);
  font-size: 14px;
}

@media (min-width: 1024px) {
  .site-footer { padding-bottom: 60px; }
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

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

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

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-link {
  color: #94A3B8;
  font-size: 14px;
}

.footer-link:hover {
  color: var(--color-gold-light);
}

.footer-compliance-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 30px;
}

.compliance-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #EF4444;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}

.compliance-text {
  font-size: 13px;
  line-height: 1.6;
  color: #CBD5E1;
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

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

/* Language Switcher Selector */
.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 3px 6px;
  gap: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  color: #FFFFFF;
}

.lang-btn.active {
  background: linear-gradient(135deg, #F59E0B, #FFD700);
  color: #030712;
  box-shadow: 0 2px 8px var(--color-gold-glow);
}

.lang-sep {
  color: var(--border-glass);
  font-size: 12px;
}


/* ==========================================================
   MOBILE-FIRST APP DESIGN SYSTEM OVERRIDES (<= 767px)
   Addresses mobile layout, non-overlapping header, stacked full-width
   conversion CTAs, compact 21+ age gate, and safe-area sticky bar.
   ========================================================== */
@media (max-width: 1023px) {
  body {
    padding-bottom: 72px; /* Prevent sticky bottom bar from covering content */
  }

  .sticky-mobile-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: rgba(3, 7, 18, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-gold);
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  /* Container mobile padding */
  .container {
    padding: 0 16px;
  }

  /* Compact 60px Fixed Header (No horizontal overflow or clipping) */
  .site-header {
    height: 60px !important;
    padding: 0;
  }

  .header-inner {
    padding: 0 12px;
    gap: 8px;
    height: 100%;
  }

  .header-logo {
    height: 32px !important;
    max-width: 115px !important;
  }

  .brand-tagline {
    display: none !important;
  }

  /* Header action controls: strictly fit on one line without wrapping */
  .header-actions {
    gap: 6px !important;
  }

  /* Hide verbose text login button in header on mobile - available in drawer & sticky bar */
  .btn-header-login {
    display: none !important;
  }

  /* Compact Language Selector */
  .lang-switch-wrap {
    padding: 2px 4px !important;
    gap: 2px !important;
  }

  .lang-btn {
    font-size: 11px !important;
    padding: 3px 6px !important;
  }

  /* Sleek High-Conversion Header CTA Pill */
  .btn-header-cta {
    font-size: 11px !important;
    padding: 6px 12px !important;
    white-space: nowrap !important;
    letter-spacing: 0.02em;
    gap: 4px !important;
  }

  /* Compact Hamburger Button */
  .mobile-menu-btn {
    width: 36px !important;
    height: 36px !important;
    padding: 7px !important;
    flex-shrink: 0 !important;
  }

  /* Mobile Drawer */
  .mobile-drawer {
    top: 60px !important;
    padding: 16px 14px !important;
    gap: 10px !important;
  }

  .mobile-nav-link {
    font-size: 15px !important;
    padding: 10px 14px !important;
  }

  /* Breadcrumbs on Mobile */
  .breadcrumb-bar {
    padding: 8px 0 !important;
  }

  .breadcrumb-list {
    font-size: 12px !important;
    gap: 6px !important;
  }

  /* Hero Section Mobile App Styling */
  .casino-hero {
    min-height: auto !important;
    padding: 28px 0 24px !important;
  }

  .hero-pill-badge {
    font-size: 11px !important;
    padding: 4px 12px !important;
    margin-bottom: 12px !important;
  }

  .hero-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }

  .hero-lead {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
    color: #CBD5E1 !important;
  }

  /* Stacked Full-Width Thumb-Reachable CTAs */
  .hero-cta-group {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .btn-hero-primary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 13px 18px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
  }

  .btn-hero-secondary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
  }

  /* Compact Section Paddings (No giant empty gaps) */
  .casino-section-gold,
  .casino-section-neon,
  .casino-section-sparkles,
  .casino-section-glass {
    padding: 36px 0 !important;
  }

  .section-header {
    margin-bottom: 24px !important;
  }

  .section-title {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }

  .section-subtitle {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  /* Single Column Card Grids on Mobile */
  .grid-3x2 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  .placecard-title {
    font-size: 17px !important;
  }

  .placecard-desc {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  .placecard-body {
    padding: 16px !important;
  }

  /* Media Bundle Stacking */
  .media-bundle {
    gap: 20px !important;
    margin: 24px 0 !important;
  }

  /* E-E-A-T Author Card on Mobile */
  .eeat-author-card {
    padding: 18px 16px !important;
    gap: 14px !important;
    text-align: center !important;
  }

  .author-avatar {
    margin: 0 auto !important;
    width: 64px !important;
    height: 64px !important;
  }

  .trust-badges-bar {
    justify-content: center !important;
    gap: 8px !important;
  }

  .trust-badge-pill {
    font-size: 11px !important;
    padding: 3px 8px !important;
  }

  /* Footer on Mobile */
  .site-footer {
    padding: 36px 0 24px !important;
  }

  .footer-top-grid {
    gap: 24px !important;
    margin-bottom: 24px !important;
  }

  .footer-compliance-box {
    padding: 16px !important;
    margin-bottom: 20px !important;
  }

  .compliance-text {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
}

/* Specific Micro-Screens (iPhone SE, Galaxy A series <= 480px) */
@media (max-width: 480px) {
  .header-logo {
    height: 28px !important;
    max-width: 95px !important;
  }

  .btn-header-cta {
    font-size: 10.5px !important;
    padding: 5px 10px !important;
  }

  .lang-btn {
    font-size: 10px !important;
    padding: 2px 4px !important;
  }

  .hero-title {
    font-size: 22px !important;
  }

  /* 21+ Age Gate Modal Phone Optimization */
  .age-gate-card {
    padding: 22px 16px !important;
    border-radius: var(--radius-md) !important;
    max-width: 94% !important;
  }

  .age-gate-badge {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }

  .age-gate-title {
    font-size: 19px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }

  .age-gate-desc {
    font-size: 12px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  .age-gate-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
  }

  .btn-age-confirm {
    flex: 1.4 !important;
    padding: 11px 8px !important;
    font-size: 13px !important;
  }

  .btn-age-exit {
    flex: 0.8 !important;
    padding: 11px 8px !important;
    font-size: 12px !important;
  }
}
