/* ==========================================================================
   8K8 CASINO DESIGN SYSTEM & INTERACTIVE COMPONENT STYLESHEET
   Platform: 8k8bet.ph (Philippine iGaming Editorial & Guide Hub)
   Architecture: Vanilla CSS, Mobile-First, 8px Grid Rhythm, E-E-A-T Compliant
   ========================================================================== */

@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');

/* --- DESIGN TOKENS (CSS VARIABLES) --- */
:root {
  /* Brand Core Colors */
  --bg-dark: #07090e;
  --bg-deep: #0b0f19;
  --bg-surface: rgba(16, 23, 38, 0.85);
  --bg-surface-elevated: rgba(24, 34, 56, 0.9);
  --bg-glass: rgba(18, 24, 40, 0.7);
  
  /* Casino Accents & Highlights */
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.35);
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fbbf24 0%, #fde047 50%, #f59e0b 100%);
  
  --violet-royal: #7c3aed;
  --violet-glow: rgba(124, 58, 237, 0.3);
  --violet-gradient: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
  
  --emerald-win: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  --ruby-danger: #ef4444;
  --cyan-neon: #06b6d4;

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

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.25);
  --border-violet: rgba(139, 92, 246, 0.25);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --container-max: 1240px;
  --container-padding: clamp(1rem, 4vw, 2.5rem);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 25px rgba(245, 158, 11, 0.25);
  --shadow-neon: 0 0 30px rgba(124, 58, 237, 0.35);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(245, 158, 11, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(6, 182, 212, 0.06) 0%, transparent 40%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--text-gold);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* --- PROPORTIONAL LAYOUT CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section-spacing {
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  position: relative;
}

/* --- FLASHY CASINO BACKGROUNDS PER CONTAINER --- */
.bg-casino-pattern {
  position: relative;
  background-color: var(--bg-deep);
  background-image: 
    linear-gradient(180deg, rgba(7, 9, 14, 0.95) 0%, rgba(11, 15, 25, 0.85) 50%, rgba(7, 9, 14, 0.95) 100%),
    repeating-linear-gradient(45deg, rgba(245, 158, 11, 0.015) 0px, rgba(245, 158, 11, 0.015) 2px, transparent 2px, transparent 12px);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.bg-casino-glow {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.2) 0%, rgba(7, 9, 14, 0) 70%),
              radial-gradient(circle at 50% 100%, rgba(245, 158, 11, 0.12) 0%, rgba(7, 9, 14, 0) 60%);
}

.bg-casino-shimmer {
  background: linear-gradient(135deg, rgba(16, 23, 38, 0.9) 0%, rgba(28, 18, 52, 0.85) 100%);
  border: 1px solid var(--border-violet);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* --- FIRST CONTAINER HERO CASINO BACKGROUND --- */
.hero-casino-container {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding-top: clamp(6rem, 10vw, 8.5rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-casino-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(7, 9, 14, 0.75) 0%, 
    rgba(7, 9, 14, 0.88) 50%, 
    rgba(7, 9, 14, 1) 100%
  );
  z-index: 1;
}

.hero-casino-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  z-index: 2;
}

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

/* --- GLOBAL HEADER & NAVIGATION --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  z-index: 1000;
  transition: background-color var(--transition-smooth), backdrop-filter var(--transition-smooth), border-color var(--transition-smooth);
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header.scrolled {
  background: rgba(7, 9, 14, 0.95);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

.brand-logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4));
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.04);
}

.nav-desktop {
  display: none;
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--gold-light);
  text-decoration: none;
}

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

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

/* --- LANGUAGE SWITCHER COMPONENT --- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
  backdrop-filter: blur(8px);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

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

/* Button UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.925rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-smooth);
  white-space: nowrap;
  border: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0f19;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  text-decoration: none;
}

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

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #0b0f19;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Hamburger Toggle */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

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

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 9, 14, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 2rem var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(-100%);
  transition: transform var(--transition-smooth);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

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

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
}

.mobile-nav-link:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  text-decoration: none;
}

/* --- MOBILE STICKY BOTTOM NAVIGATION BAR --- */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 950;
  padding: 0 0.5rem;
}

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

.bottom-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 600;
  min-width: 54px;
  height: 100%;
  transition: color var(--transition-fast);
}

.bottom-tab svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.bottom-tab.active,
.bottom-tab:hover {
  color: var(--gold-light);
  text-decoration: none;
}

.bottom-tab.active svg {
  stroke: var(--gold-light);
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

/* --- TYPOGRAPHY & HEADINGS --- */
.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 70%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.text-gold {
  color: var(--gold-light);
}

/* --- BADGES & E-E-A-T TRUST TAGS --- */
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.author-eeat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
}

.author-meta {
  font-size: 0.875rem;
}

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

.author-role {
  color: var(--gold-light);
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- FEATURED & CONTEXTUAL MEDIA BLOCKS --- */
.media-featured-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gold);
  margin-bottom: 2.5rem;
  background: var(--bg-deep);
}

.media-featured-wrapper img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.media-featured-wrapper:hover img {
  transform: scale(1.02);
}

.media-contextual-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.media-contextual-card img {
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  width: 100%;
}

.media-caption {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* --- 3x2 INTERACTIVE GRID SYSTEM --- */
.grid-3x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

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

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

/* --- PLACECARDS & CONTENT BUNDLES --- */
.casino-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.casino-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), var(--shadow-gold);
}

.card-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background-color: #0f1422;
}

.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.casino-card:hover .card-media img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(7, 9, 14, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.card-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  flex-grow: 1;
}

.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.card-stat {
  font-size: 0.825rem;
  color: var(--text-dim);
}

.card-stat strong {
  color: var(--emerald-win);
  font-weight: 700;
}

/* --- INTERACTIVE PAGINATION COMPONENT --- */
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.page-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.page-btn.active {
  background: var(--gold-gradient);
  color: #0b0f19;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

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

/* --- FILTER TABS --- */
.filter-tabs-wrapper {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
  scrollbar-width: thin;
}

.filter-tab {
  padding: 0.55rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.filter-tab:hover {
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-tab.active {
  background: var(--gold-gradient);
  color: #0b0f19;
  border-color: var(--gold-primary);
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

/* --- STEP-BY-STEP PROGRESS STEPPER (FUNCTIONAL) --- */
.stepper-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stepper-step {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  transition: border-color var(--transition-fast);
}

.stepper-step:hover {
  border-color: var(--gold-primary);
}

.step-num-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0b0f19;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.35);
}

.step-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- INTERACTIVE FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  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 var(--transition-fast);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--gold-primary);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  transition: transform var(--transition-smooth);
}

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

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-body {
  padding-bottom: 1.25rem;
}

/* --- PLAYER REVIEWS CARDS --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

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

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

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars {
  color: var(--gold-primary);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

.review-author {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-main);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-author::before {
  content: '✓';
  color: var(--emerald-win);
  font-weight: 800;
}

/* --- COMPARISON & DATA TABLES --- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

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

.casino-table th {
  background: rgba(245, 158, 11, 0.08);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-gold);
}

.casino-table td {
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.casino-table tr:last-child td {
  border-bottom: none;
}

.casino-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
}

/* --- CALLOUT BOXES (WARNING, TIPS, SUMMARY) --- */
.callout-box {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  border-left: 4px solid;
}

.callout-gold {
  background: rgba(245, 158, 11, 0.07);
  border-color: var(--gold-primary);
}

.callout-danger {
  background: rgba(239, 68, 68, 0.07);
  border-color: var(--ruby-danger);
}

.callout-success {
  background: rgba(16, 185, 129, 0.07);
  border-color: var(--emerald-win);
}

.callout-box h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* --- GLOBAL FOOTER --- */
.site-footer {
  background: #040508;
  border-top: 1px solid var(--border-subtle);
  padding-top: 4.5rem;
  padding-bottom: 6rem; /* Extra padding for mobile bottom bar */
  color: var(--text-dim);
  font-size: 0.9rem;
}

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

@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 h4 {
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

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

.responsible-21-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid var(--ruby-danger);
  color: #fca5a5;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
}
