/* ========================================
   BANZAI CASINO — Main Stylesheet
   ======================================== */

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

:root {
  --red: #EE0000;
  --red-dark: #CC0000;
  --red-light: #FF2222;
  --orange: #F57C00;
  --orange-light: #FF9800;
  --dark: #1a1a2e;
  --dark-deeper: #0f0f1e;
  --dark-card: #16213e;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --white: #FFFFFF;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --gold: #FFD700;
  --gold-dark: #DAA520;
  --green: #28a745;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.18);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.22);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(238,0,0,0.4);
}
.btn-secondary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-secondary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark-deeper);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-top { padding: 0; }
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-list li a {
  padding: 8px 16px;
  color: var(--gray-300);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-list li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.header-actions .btn {
  padding: 8px 20px;
  font-size: 0.85rem;
}
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger-menu span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all var(--transition);
}

/* ========================================
   MOBILE NAV OVERLAY
   ======================================== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  background: var(--dark-deeper);
  padding: 80px 30px 30px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateX(0);
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav-list { margin-bottom: 30px; }
.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-list li a {
  display: block;
  padding: 16px 0;
  color: var(--gray-300);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mobile-nav-list li a:hover { color: var(--white); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; }

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}
.slider-wrapper { position: relative; }
.slides { position: relative; }
.slide {
  display: none;
  min-height: 480px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.slide .container { position: relative; z-index: 2; }
.slide.active { display: block; animation: fadeSlide 0.6s ease; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 480px;
  padding: 60px 0;
}
.slide-text { flex: 1; max-width: 560px; }
.slide-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.slide-text h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.slide-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.slide-image {
  flex: 0 0 auto;
  max-width: 480px;
}
.slide-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.slide-icon-block {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 3px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}
.slide-icon-block i {
  font-size: 4rem;
  color: var(--gold);
}
.slide-icon-block span {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
}
.slide-icon-block.tournament i { color: var(--gold); }
.slide-icon-block.bonus i { color: #ff6b6b; }
.slide-icon-block.bonus span { color: var(--white); }
.slide-icon-block.vip i { color: var(--gold); }
.slide-icon-block.worldcup i { color: #00d4ff; }
.slide-icon-block.worldcup span { color: #00d4ff; }

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition);
  backdrop-filter: blur(5px);
}
.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 80px 0;
}
.section:nth-child(even) {
  background: var(--white);
}
.section h1, .section h2 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 24px;
}
.section h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
}
.section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
}
.section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-intro {
  max-width: 900px;
  margin-bottom: 40px;
}
.section-intro p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--gray-700);
}
.intro-text {
  max-width: 900px;
  margin-bottom: 40px;
}
.intro-text p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--gray-700);
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.feature-icon i { font-size: 1.5rem; color: var(--white); }
.feature-card p { font-size: 0.92rem; color: var(--gray-600); }

/* --- Info Tables --- */
.info-table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.info-table caption {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 20px;
  text-align: left;
  background: var(--dark);
  color: var(--white);
}
.info-table thead th {
  background: var(--gray-100);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.info-table tbody th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  padding: 14px 18px;
  text-align: left;
  background: var(--gray-100);
  white-space: nowrap;
  width: 220px;
}
.info-table td {
  padding: 14px 18px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}
.info-table tbody tr:last-child td { border-bottom: none; }
.info-table tbody tr:hover { background: rgba(245,124,0,0.04); }

/* --- Game Categories --- */
.lobby-showcase {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gray-200);
}
.lobby-img {
  width: 100%;
  height: auto;
}
.game-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 20px;
}
.game-cat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.game-cat:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.game-cat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--orange), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.game-cat-icon i { font-size: 1.4rem; color: var(--white); }
.game-cat p { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 16px; }
.game-list {
  list-style: none;
}
.game-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.game-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* --- Bonus Cards --- */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}
.bonus-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.bonus-card.featured {
  border-color: var(--red);
  border-width: 2px;
}
.bonus-ribbon {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--red);
  color: var(--white);
  padding: 4px 40px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}
.bonus-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.bonus-card-icon i { font-size: 1.4rem; color: var(--white); }
.bonus-amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 12px;
}
.bonus-card p { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 16px; }
.bonus-card ul {
  list-style: none;
  margin-bottom: 20px;
}
.bonus-card ul li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 0.85rem;
  color: var(--gray-700);
}
.bonus-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* --- Live Casino --- */
.live-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.live-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.live-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.live-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark), var(--dark-card));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.live-card-icon i { font-size: 1.3rem; color: var(--gold); }
.live-card p { font-size: 0.88rem; color: var(--gray-600); }

.live-games-list { margin-bottom: 20px; }
.highlight-list {
  list-style: none;
}
.highlight-list li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.highlight-list li:last-child { border-bottom: none; }
.highlight-list li i {
  color: var(--green);
  margin-right: 8px;
}

/* --- VIP Levels --- */
.vip-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.vip-level {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.vip-level:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.vip-level-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--white);
}
.vip-level-badge.bronze { background: linear-gradient(135deg, #CD7F32, #B87333); }
.vip-level-badge.silver { background: linear-gradient(135deg, #C0C0C0, #A8A8A8); }
.vip-level-badge.gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.vip-level-badge.platinum { background: linear-gradient(135deg, #E5E4E2, #BCC6CC); color: var(--dark); }
.vip-level-badge.legend { background: linear-gradient(135deg, var(--red), var(--orange)); }
.vip-level ul { text-align: left; }
.vip-level ul li {
  padding: 5px 0;
  font-size: 0.82rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.vip-level ul li:last-child { border-bottom: none; }

/* --- Payment Methods --- */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}
.payment-group {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.payment-group h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-group h3 i { color: var(--orange); }
.payment-group p { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 16px; }
.payment-group ul li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.payment-group ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.3;
}

/* --- World Cup --- */
.worldcup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
}
.worldcup-offers .highlight-list li i { color: var(--orange); }

/* --- Celebrities --- */
.celebs-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}
.celeb-story {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.celeb-story:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-dark);
}
.celeb-story h3 i { color: var(--gold-dark); margin-right: 6px; }
.celeb-story p { font-size: 0.92rem; color: var(--gray-600); }

/* --- Security Grid --- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.security-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.security-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark), var(--dark-card));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.security-icon i { font-size: 1.3rem; color: var(--green); }
.security-item p { font-size: 0.9rem; color: var(--gray-600); }

.responsible-tools { margin-bottom: 20px; }
.responsible-tools h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

/* --- Registration Steps --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-card p { font-size: 0.88rem; color: var(--gray-600); }

.register-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--dark), var(--dark-card));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin-bottom: 40px;
}
.register-cta h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.register-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* --- FAQ --- */
.faq-list { max-width: 850px; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-question i {
  font-size: 0.8rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--gray-500);
}
.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: var(--red);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Final CTA --- */
.section-final-cta {
  background: linear-gradient(135deg, var(--dark-deeper), var(--dark), var(--dark-card)) !important;
  text-align: center;
  padding: 80px 0;
}
.final-cta-content h2 {
  color: var(--white);
  font-size: 2.2rem;
}
.final-cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--dark-deeper);
  color: var(--gray-400);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-col p { font-size: 0.88rem; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--gray-400);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  text-align: center;
}
.footer-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--gray-400);
  font-family: var(--font-heading);
  font-weight: 600;
}
.badge-item i { color: var(--green); }
.footer-disclaimer {
  font-size: 0.8rem;
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.6;
  color: var(--gray-500);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-3px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .game-categories { grid-template-columns: 1fr; }
  .live-features { grid-template-columns: repeat(2, 1fr); }
  .vip-levels { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-text h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-actions { display: none; }
  .burger-menu { display: flex; }
  
  .section { padding: 50px 0; }
  .section h1 { font-size: 1.6rem; }
  .section h2 { font-size: 1.4rem; }
  
  .slide { min-height: auto; }
  .slide-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
    min-height: auto;
    gap: 24px;
  }
  .slide-text { max-width: 100%; }
  .slide-text h2 { font-size: 1.6rem; }
  .slide-image { max-width: 100%; }
  .slide-image img { max-width: 100%; }
  .slide-icon-block { width: 180px; height: 180px; margin: 0 auto; }
  .slide-icon-block i { font-size: 2.5rem; }
  .slide-icon-block span { font-size: 1.8rem; }
  
  .features-grid { grid-template-columns: 1fr; }
  .bonus-cards { grid-template-columns: 1fr; }
  .live-features { grid-template-columns: 1fr; }
  .vip-levels { grid-template-columns: 1fr 1fr; }
  .payment-methods { grid-template-columns: 1fr; }
  .worldcup-content { grid-template-columns: 1fr; }
  .celebs-content { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  
  .security-item { flex-direction: column; align-items: flex-start; }
  
  .final-cta-content h2 { font-size: 1.6rem; }
  
  .slider-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .header-flex { height: 60px; }
  .logo-img { height: 32px; }
  .hero-slider { margin-top: 60px; }
  .slide-content { padding: 30px 0; }
  .slide-text h2 { font-size: 1.35rem; }
  .slide-text p { font-size: 0.92rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .vip-levels { grid-template-columns: 1fr; }
  .info-table { font-size: 0.85rem; }
  .info-table caption { font-size: 0.9rem; padding: 12px 14px; }
  .info-table thead th { padding: 10px 12px; font-size: 0.78rem; }
  .info-table td, .info-table tbody th { padding: 10px 12px; }
  .section { padding: 40px 0; }
  .bonus-amount { font-size: 1.5rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}