/* ==========================================================================
   CRAZYWINGO MODERN CASINO UI DESIGN SYSTEM
   Mobile-First, Interactive, Flashy Casino Vibe + Strict E-E-A-T Compliance
   ========================================================================== */

:root {
  /* Color Palette - Vibrant App & Casino Glow */
  --primary: #1E88E5;
  --primary-hover: #1565C0;
  --primary-glow: rgba(30, 136, 229, 0.4);
  
  --accent-green: #00C853;
  --accent-green-hover: #00B248;
  --accent-green-glow: rgba(0, 200, 83, 0.35);
  
  --gold-accent: #FFB300;
  --gold-vibrant: #FF9100;
  --gold-glow: rgba(255, 179, 0, 0.45);
  
  --crimson-accent: #E53935;
  
  /* Canvas & Dark Casino Mesh Backgrounds */
  --canvas-dark: #0B0F19;
  --surface-card-dark: #131A2A;
  --surface-card-border: rgba(255, 255, 255, 0.1);
  --surface-elevated: #1A2338;
  
  /* Bright Content Surfaces */
  --canvas-light: #F8FAFC;
  --surface-card: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-inverse: #FFFFFF;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 10px 30px -5px rgba(11, 15, 25, 0.15);
  --shadow-neon-gold: 0 0 20px rgba(255, 179, 0, 0.35);
  --shadow-neon-blue: 0 0 20px rgba(30, 136, 229, 0.35);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--text-primary);
  background-color: var(--canvas-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for sticky bottom bar on mobile */
}

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

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

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

a:hover {
  color: var(--primary-hover);
}

/* Container */
.cw-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.cw-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

.cw-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.cw-logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cw-logo-box img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.cw-nav {
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

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

@media (min-width: 1200px) {
  .cw-nav {
    gap: 16px;
  }
}

.cw-nav-link {
  color: #E2E8F0;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

@media (min-width: 1200px) {
  .cw-nav-link {
    font-size: 14px;
    gap: 6px;
  }
}

.cw-nav-link:hover, .cw-nav-link.active {
  color: var(--gold-accent);
  text-shadow: 0 0 10px var(--gold-glow);
}

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

.cw-badge-21 {
  background: rgba(229, 57, 53, 0.15);
  border: 1px solid rgba(229, 57, 53, 0.5);
  color: #FF5252;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

/* Language Switcher Selector */
.cw-lang-selector {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.cw-lang-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

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

.cw-lang-btn.active {
  background: var(--gold-accent);
  color: #0B0F19;
  box-shadow: 0 2px 8px var(--gold-glow);
}

.cw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  gap: 8px;
  text-decoration: none !important;
}

.cw-btn-primary {
  background: linear-gradient(135deg, #FFB300 0%, #FF9100 100%);
  color: #0B0F19;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.cw-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-glow);
  color: #0B0F19;
}

.cw-btn-accent {
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px var(--accent-green-glow);
}

.cw-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-green-glow);
  color: #FFFFFF;
}

.cw-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.cw-btn-outline:hover {
  border-color: var(--primary);
  background: rgba(30, 136, 229, 0.15);
  color: #FFFFFF;
}

/* Mobile Toggle */
.cw-mobile-toggle {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px;
}

@media (min-width: 992px) {
  .cw-mobile-toggle {
    display: none;
  }
}

/* Mobile Drawer */
.cw-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #0F172A;
  border-bottom: 2px solid var(--gold-accent);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

.cw-drawer-link {
  color: #F8FAFC;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   FLASHY HERO CONTAINER (Casino Related Image BG + Dynamic Gradient Mesh)
   ========================================================================== */
.cw-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0 90px;
  color: #FFFFFF;
  overflow: hidden;
}

.cw-hero > .cw-container {
  position: relative;
  z-index: 2;
}

/* Flashy Animated Casino Lighting Overlay */
.cw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 179, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 136, 229, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.62) 0%, rgba(11, 15, 25, 0.82) 100%);
  z-index: 1;
}

/* Subtle Animated Casino Sparkle Bar */
.cw-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF9100, #00E676, #1E88E5, #FF9100);
  background-size: 300% 100%;
  animation: casinoGradientShift 4s ease infinite;
  z-index: 3;
}

@keyframes casinoGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cw-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .cw-hero-content {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Featured & Contextual Media Elements */
.cw-featured-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
  max-height: 380px;
}

.cw-featured-media img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

.cw-contextual-media {
  margin: 32px auto;
  max-width: 440px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.cw-contextual-media img {
  max-width: 220px;
  margin: 0 auto 12px;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-sm);
}

.cw-contextual-media-title {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  display: block;
}

.cw-contextual-media-desc {
  font-size: 12px;
  color: #64748B;
  display: block;
  margin-top: 4px;
}

.cw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 179, 0, 0.15);
  border: 1px solid rgba(255, 179, 0, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-accent);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cw-hero h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  .cw-hero h1 {
    font-size: 44px;
  }
}

.cw-hero p {
  font-size: 17px;
  color: #CBD5E1;
  margin-bottom: 28px;
  line-height: 1.6;
}

.cw-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.cw-hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.cw-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cw-trust-item span.icon {
  color: var(--accent-green);
}

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

.cw-hero-card {
  background: rgba(19, 26, 42, 0.85);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--shadow-neon-gold);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 440px;
}

.cw-hero-card-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.cw-hero-card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cw-hero-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #FF1744, #D50000);
  color: #FFF;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(213, 0, 0, 0.5);
}

/* ==========================================================================
   FLASHY CONTAINER SECTIONS (Casino Vibe Gradient Panels)
   ========================================================================== */
.cw-section {
  padding: 70px 0;
  position: relative;
}

.cw-section-dark {
  background: radial-gradient(circle at 50% 0%, #162035 0%, #0B0F19 100%);
  color: #FFFFFF;
}

.cw-section-casino-glow {
  background: linear-gradient(180deg, #0B0F19 0%, #111A2E 50%, #0B0F19 100%);
  color: #FFFFFF;
  position: relative;
}

.cw-section-casino-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 179, 0, 0.4), transparent);
}

.cw-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.cw-section-subtitle {
  color: var(--gold-accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  display: block;
}

.cw-section-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
}

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

.cw-section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cw-section-dark .cw-section-desc,
.cw-section-casino-glow .cw-section-desc {
  color: #94A3B8;
}

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

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

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

/* Placecard Component */
.cw-placecard {
  background: var(--surface-card);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.cw-section-dark .cw-placecard,
.cw-section-casino-glow .cw-placecard {
  background: #151D30;
  border-color: rgba(255, 255, 255, 0.08);
}

.cw-placecard:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), var(--shadow-neon-blue);
  border-color: rgba(30, 136, 229, 0.4);
}

.cw-placecard-media {
  position: relative;
  width: 100%;
  height: 190px;
  max-height: 210px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0E1626;
}

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

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

.cw-placecard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--gold-accent);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

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

.cw-placecard-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cw-section-dark .cw-placecard-title,
.cw-section-casino-glow .cw-placecard-title {
  color: #FFFFFF;
}

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

.cw-section-dark .cw-placecard-desc,
.cw-section-casino-glow .cw-placecard-desc {
  color: #94A3B8;
}

.cw-placecard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13px;
  font-weight: 600;
}

.cw-section-dark .cw-placecard-meta,
.cw-section-casino-glow .cw-placecard-meta {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.cw-placecard-stat {
  color: var(--accent-green);
}

/* ==========================================================================
   PAGINATION COMPONENT (Interactive 3x2 Grid Switcher)
   ========================================================================== */
.cw-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.cw-page-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cw-section-dark .cw-page-btn,
.cw-section-casino-glow .cw-page-btn {
  background: #1A2338;
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.cw-page-btn:hover {
  background: var(--primary);
  color: #FFF;
  border-color: var(--primary);
}

.cw-page-btn.active {
  background: linear-gradient(135deg, #FFB300, #FF9100);
  color: #0B0F19;
  border-color: #FFB300;
  box-shadow: 0 4px 12px var(--gold-glow);
}

/* ==========================================================================
   INTERACTIVE COMPONENTS & TABS (Payment, Steps, Promos)
   ========================================================================== */
.cw-tab-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cw-section-dark .cw-tab-nav,
.cw-section-casino-glow .cw-tab-nav {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.cw-tab-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.cw-section-dark .cw-tab-btn,
.cw-section-casino-glow .cw-tab-btn {
  color: #E2E8F0;
  border-color: rgba(255, 255, 255, 0.15);
}

.cw-tab-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.cw-tab-content {
  display: none;
}

.cw-tab-content.active {
  display: block;
}

/* Step-by-Step Card Flow */
.cw-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.cw-step-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.cw-section-dark .cw-step-card {
  background: #151D30;
  border-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.cw-step-num {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #FFB300, #FF9100);
  color: #0B0F19;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px var(--gold-glow);
}

/* ==========================================================================
   E-E-A-T AUTHOR & TRUST PANELS
   ========================================================================== */
.cw-eeat-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left: 4px solid var(--accent-green);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 36px 0;
  box-shadow: var(--shadow-sm);
}

.cw-eeat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.cw-eeat-avatar {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: var(--surface-card-dark);
  border: 2px solid var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--gold-accent);
}

.cw-eeat-meta h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.cw-eeat-meta p {
  font-size: 13px;
  color: var(--text-muted);
}

.cw-eeat-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}

.cw-badge-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #F1F5F9;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cw-badge-pill.verified {
  background: rgba(0, 200, 83, 0.12);
  color: #00B248;
}

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

.cw-faq-item {
  background: var(--surface-card);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.cw-section-dark .cw-faq-item,
.cw-section-casino-glow .cw-faq-item {
  background: #151D30;
  border-color: rgba(255, 255, 255, 0.08);
}

.cw-faq-question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.cw-faq-icon {
  font-size: 20px;
  transition: transform var(--transition-fast);
  color: var(--gold-accent);
}

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

.cw-faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cw-section-dark .cw-faq-answer,
.cw-section-casino-glow .cw-faq-answer {
  color: #94A3B8;
}

.cw-faq-item.active .cw-faq-answer {
  display: block;
}

/* ==========================================================================
   FOOTER & RESPONSIBLE GAMING SECTION
   ========================================================================== */
.cw-footer {
  background: #080C14;
  color: #94A3B8;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-responsible-block {
  background: rgba(229, 57, 53, 0.08);
  border: 1px solid rgba(229, 57, 53, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .cw-responsible-block {
    flex-direction: row;
    align-items: center;
  }
}

.cw-responsible-badge {
  font-size: 40px;
  line-height: 1;
}

.cw-responsible-text h4 {
  color: #FF5252;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}

.cw-responsible-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #E2E8F0;
}

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

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

@media (min-width: 992px) {
  .cw-footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.cw-footer-col h5 {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.cw-footer-col a {
  color: #94A3B8;
  font-size: 14px;
  transition: var(--transition-fast);
}

.cw-footer-col a:hover {
  color: var(--gold-accent);
}

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

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

/* ==========================================================================
   STICKY MOBILE BOTTOM BAR
   ========================================================================== */
.cw-sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 179, 0, 0.3);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .cw-sticky-bottom {
    display: none;
  }
}

.cw-sticky-info {
  display: flex;
  flex-direction: column;
}

.cw-sticky-label {
  font-size: 11px;
  color: #94A3B8;
  font-weight: 600;
}

.cw-sticky-val {
  font-size: 14px;
  color: var(--gold-accent);
  font-weight: 800;
}

/* ==========================================================================
   21+ AGE GATE MODAL
   ========================================================================== */
.cw-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cw-modal-backdrop.hidden {
  display: none;
}

.cw-age-modal {
  background: #131A2A;
  border: 2px solid var(--gold-accent);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-neon-gold);
  animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.cw-age-icon {
  font-size: 54px;
  margin-bottom: 16px;
  display: inline-block;
}

.cw-age-modal h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cw-age-modal p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cw-age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ==========================================================================
   LANGUAGE SELECTOR (English <-> Filipino)
   ========================================================================== */
.cw-lang-selector {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 3px;
  backdrop-filter: blur(8px);
}

.cw-lang-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 5px;
  user-select: none;
  line-height: 1;
}

.cw-lang-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.cw-lang-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, #0D47A1 100%);
  color: #FFFFFF;
  box-shadow: 0 0 12px var(--primary-glow);
}

/* In Mobile Drawer */
.cw-drawer-lang-box {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--surface-card-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cw-drawer-lang-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748B;
  font-weight: 700;
}

.cw-drawer-lang-box .cw-lang-selector {
  width: 100%;
  display: flex;
}

.cw-drawer-lang-box .cw-lang-btn {
  flex: 1;
  justify-content: center;
  padding: 8px 12px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .cw-header-actions .cw-lang-selector {
    display: none; /* Accessible directly in Mobile Drawer to avoid header crowding */
  }
}

@media (max-width: 480px) {
  .cw-badge-21 {
    display: none; /* Hide 21+ pill on extra small mobile screens to keep Claim button and hamburger clean */
  }
  .cw-header-actions {
    gap: 8px;
  }
  .cw-header-actions .cw-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .cw-logo-box img {
    height: 32px;
  }
  .cw-hero {
    padding: 42px 0 52px;
  }
  .cw-hero h1 {
    font-size: 26px;
  }
  .cw-section {
    padding: 48px 0;
  }
  .cw-section-title {
    font-size: 24px;
  }
  .cw-placecard-media {
    height: 175px;
  }
}

