/* ============================================================
   me88livecasino.com — Main Stylesheet
   Color Theme: Dark (#111) + Orange Accent (#ff4e00) + Gold (#ff9900)
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --bg-primary:     #111111;
  --bg-secondary:   #191919;
  --bg-card:        #1e1e1f;
  --bg-dark:        #0c0c0c;
  --bg-section:     #161616;
  --accent-orange:  #ff4e00;
  --accent-fire:    #f88c00;
  --accent-gold:    #ff9900;
  --accent-glow:    rgba(255, 78, 0, 0.25);
  --text-primary:   #ffffff;
  --text-muted:     #9da5b7;
  --text-dark:      #555555;
  --border:         #2a2a2a;
  --border-light:   #333333;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --shadow:         0 4px 20px rgba(0,0,0,0.5);
  --shadow-card:    0 2px 12px rgba(0,0,0,0.4);
  --transition:     0.25s ease;
  --header-height:  70px;
  --font-main:      'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-gold); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; padding: 0 20px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 1000; width: 100%; }

.header-top {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 5px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-notice { letter-spacing: 0.02em; }
.header-langs {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.header-langs img { display: inline-block; border-radius: 2px; }

.header-main {
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.header-logo a { display: flex; align-items: center; }
.header-logo img { height: 40px; width: auto; object-fit: contain; }

/* Nav */
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav ul li { position: relative; }
.main-nav .nav-link {
  display: block;
  padding: 8px 14px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  background: var(--accent-orange);
  color: #fff;
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 220px;
  padding: 14px 0 8px;
  box-shadow: var(--shadow);
  z-index: 200;
}
/* Bridge: invisible area above dropdown catches mouse movement so hover isn't lost */
.has-dropdown .dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.has-dropdown:hover .dropdown,
.has-dropdown.dropdown-open .dropdown { display: block; }
.has-dropdown .dropdown li a {
  display: block;
  padding: 9px 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: background var(--transition), color var(--transition);
}
.has-dropdown .dropdown li a:hover {
  background: var(--accent-orange);
  color: #fff;
}

/* Header CTA buttons */
.header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-login {
  background: transparent;
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}
.btn-login:hover { background: var(--accent-orange); color: #fff; }
.btn-register {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-fire));
  color: #fff;
  border-color: var(--accent-orange);
  box-shadow: 0 0 15px var(--accent-glow);
}
.btn-register:hover {
  background: linear-gradient(135deg, var(--accent-fire), var(--accent-gold));
  box-shadow: 0 0 25px rgba(255, 78, 0, 0.5);
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-fire));
  color: #fff;
  border-color: var(--accent-orange);
  box-shadow: 0 0 15px var(--accent-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-fire), var(--accent-gold));
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 78, 0, 0.5);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}
.btn-outline:hover { background: var(--accent-orange); color: #fff; }
.btn-lg { padding: 13px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 7px 18px; font-size: 0.82rem; }
.provider-card .btn { margin-top: 4px; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 38px;
  height: 38px;
}
.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO / BANNER SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-dark);
}
.slides-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.slide-content { max-width: 550px; }
.slide-content .badge {
  display: inline-block;
  background: var(--accent-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.slide-content h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.slide-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider controls */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 2px solid var(--accent-orange);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: var(--accent-orange); }
.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--accent-orange);
  transform: scale(1.3);
}

/* ============================================================
   GAME CATEGORIES / QUICK ACCESS
   ============================================================ */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-section); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2rem; color: #fff; }
.section-header h2 span { color: var(--accent-orange); }
.section-header p { color: var(--text-muted); margin-top: 10px; font-size: 1rem; }
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
  margin: 12px auto 0;
  border-radius: 2px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  aspect-ratio: 3/4;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255,78,0,0.25);
  border-color: var(--accent-orange);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.category-card-overlay h3 {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
}
.category-card-overlay .cat-badge {
  display: inline-block;
  background: var(--accent-orange);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 6px;
  font-weight: 600;
}
.category-card-overlay a {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* ============================================================
   LIVE CASINO SECTION
   ============================================================ */
.live-casino-games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-orange);
}
.game-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.game-card-body {
  padding: 14px;
}
.game-card-body h4 { font-size: 0.95rem; color: #fff; margin-bottom: 4px; }
.game-card-body p { font-size: 0.8rem; color: var(--text-muted); }
.game-card-body .play-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 16px;
  background: var(--accent-orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background var(--transition);
}
.game-card-body .play-btn:hover { background: var(--accent-fire); }

/* ============================================================
   PROVIDERS
   ============================================================ */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.provider-card:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 4px 20px rgba(255,78,0,0.2);
  transform: translateY(-3px);
}
.provider-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-fire));
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
}
.provider-card h3 { font-size: 1rem; color: #fff; margin-bottom: 6px; }
.provider-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; }
.provider-card a.provider-link {
  display: inline-block;
  padding: 6px 18px;
  background: transparent;
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
}
.provider-card a.provider-link:hover { background: var(--accent-orange); color: #fff; }

/* ============================================================
   PROMOTIONS SECTION
   ============================================================ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.promo-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,78,0,0.2);
}
.promo-card img { width: 100%; height: 180px; object-fit: cover; }
.promo-card-body { padding: 20px; }
.promo-card-body .promo-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.promo-card-body h3 { font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
.promo-card-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }

/* ============================================================
   CONTENT / ARTICLE SECTIONS
   ============================================================ */
.content-section { padding: 60px 0; }
.content-section h1 { font-size: 2.2rem; color: #fff; margin-bottom: 20px; }
.content-section h1 span { color: var(--accent-orange); }
.content-section h2 { font-size: 1.6rem; color: #fff; margin: 35px 0 15px; }
.content-section h2 span { color: var(--accent-orange); }
.content-section h3 { font-size: 1.2rem; color: var(--accent-gold); margin: 22px 0 10px; }
.content-section p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; font-size: 0.98rem; }
.content-section strong { color: var(--text-primary); }
.content-section ul { list-style: disc; padding-left: 22px; }
.content-section ul li {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.content-section ul li::marker { color: var(--accent-orange); }
.content-section ol { padding-left: 22px; }
.content-section ol li { color: var(--text-muted); margin-bottom: 8px; font-size: 0.95rem; }

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* Feature boxes */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}
.feature-box:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 4px 16px rgba(255,78,0,0.15);
}
.feature-box .feature-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.feature-box h3 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.feature-box p { font-size: 0.85rem; color: var(--text-muted); }

/* Steps */
.steps-list { counter-reset: step; list-style: none; padding: 0; }
.steps-list li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}
.steps-list li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-fire));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
}
.steps-list li .step-body h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.steps-list li .step-body p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* Info box / callout */
.info-box {
  background: rgba(255,78,0,0.08);
  border: 1px solid rgba(255,78,0,0.3);
  border-left: 4px solid var(--accent-orange);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin: 24px 0;
}
.info-box p { color: var(--text-muted); margin: 0; font-size: 0.93rem; }
.info-box strong { color: var(--accent-orange); }

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.faq-section {
  padding: 70px 0 80px;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}
/* Decorative glow blob behind FAQ title */
.faq-section::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(255,78,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- FAQ Section Title ---- */
.faq-section .section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
}

/* "FAQ" pill badge above the heading */
.faq-section .section-header::before {
  content: '❓ Frequently Asked Questions';
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,78,0,0.15), rgba(255,153,0,0.1));
  border: 1px solid rgba(255,78,0,0.4);
  color: var(--accent-orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.faq-section .section-header h2 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

/* Gradient text on the <span> keyword */
.faq-section .section-header h2 span {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
/* Glowing underline beneath the keyword */
.faq-section .section-header h2 span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -5px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
  box-shadow: 0 0 10px rgba(255, 78, 0, 0.6);
}

.faq-section .section-divider { display: none; }

.faq-section .section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  counter-reset: faq-counter;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  counter-increment: faq-counter;
}
.faq-item:hover {
  border-left-color: var(--accent-orange);
  box-shadow: 0 4px 24px rgba(255, 78, 0, 0.12);
  transform: translateX(2px);
}
.faq-item.open {
  border-left-color: var(--accent-orange);
  box-shadow: 0 6px 30px rgba(255, 78, 0, 0.18);
  transform: translateX(2px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px 20px 20px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  position: relative;
}
.faq-question::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-orange);
  opacity: 0.6;
  min-width: 22px;
  letter-spacing: 0.04em;
}
.faq-item.open .faq-question::before { opacity: 1; }

.faq-question h3 {
  font-size: 1rem;
  color: #e8eaf0;
  font-weight: 600;
  margin: 0;
  flex: 1;
  line-height: 1.5;
  transition: color var(--transition);
}
.faq-item:hover .faq-question h3,
.faq-item.open  .faq-question h3 {
  color: #ffffff;
}

/* Chevron icon */
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: rgba(255, 78, 0, 0.08);
  border: 1px solid rgba(255, 78, 0, 0.25);
  border-radius: 8px;
  color: var(--accent-orange);
  transition: background var(--transition), border-color var(--transition), transform 0.3s ease;
  font-size: 0;          /* hide the old + text */
  flex-shrink: 0;
}
/* Draw chevron with pseudo-element */
.faq-icon::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent-orange);
  border-bottom: 2px solid var(--accent-orange);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s ease, border-color var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: none;
}
.faq-item.open .faq-icon::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
  transform: rotate(-135deg) translate(-2px, -2px);
}
.faq-item:hover .faq-icon:not(.faq-item.open .faq-icon) {
  background: rgba(255, 78, 0, 0.15);
  border-color: var(--accent-orange);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 700px; }

.faq-answer-inner {
  padding: 0 22px 22px 58px; /* indent to align with question text */
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.85;
  border-top: 1px solid rgba(255, 78, 0, 0.1);
  margin: 0 22px;
  padding-top: 16px;
}
.faq-answer-inner p { margin: 0 0 10px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner a {
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer-inner a:hover { color: var(--accent-gold); }
.faq-answer-inner strong { color: var(--text-primary); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, #1a0800, #0c0c0c);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item { text-align: center; }
.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   TRUST / WHY US SECTION
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
}
.trust-item .trust-icon { font-size: 2.2rem; margin-bottom: 12px; }
.trust-item h4 { font-size: 0.95rem; color: #fff; margin-bottom: 6px; }
.trust-item p { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   SIDEBAR WIDGET
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.widget-header {
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(255,78,0,0.15), transparent);
  border-bottom: 1px solid var(--border);
}
.widget-header h4 { font-size: 0.95rem; color: #fff; }
.widget-body { padding: 16px 18px; }
.widget-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.widget-body ul li:last-child { border-bottom: none; }
.widget-body ul li a { color: var(--text-muted); }
.widget-body ul li a:hover { color: var(--accent-orange); }

/* CTA widget */
.cta-widget {
  background: linear-gradient(135deg, rgba(255,78,0,0.15), rgba(255,153,0,0.08));
  border: 1px solid rgba(255,78,0,0.3);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}
.cta-widget h4 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.cta-widget p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 18px; }
.cta-widget .bonus-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 6px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: '/'; color: var(--text-dark); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb li a { color: var(--text-muted); }
.breadcrumb li a:hover { color: var(--accent-orange); }
.breadcrumb li:last-child { color: var(--accent-orange); }

/* ============================================================
   PAGE HERO (for inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0800 50%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,78,0,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero-inner,
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.4rem; color: #fff; margin-bottom: 14px; }
.page-hero h1 span { color: var(--accent-orange); }
.page-hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 24px; }
.page-hero-cta,
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 36px; width: auto; }
.footer-brand > p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-trust-badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 18px; }
.footer-trust-badges img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.7) grayscale(0.3);
  transition: filter var(--transition);
}
.footer-trust-badges img:hover { filter: brightness(1) grayscale(0); }
.footer-nav-col h4 { font-size: 0.95rem; color: #fff; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-nav-col ul li { margin-bottom: 10px; }
.footer-nav-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-nav-col ul li a:hover { color: var(--accent-orange); }

/* Footer payments */
.footer-payments { padding: 28px 0; border-bottom: 1px solid var(--border); }
.footer-payments h5 { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.payment-icons img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.6);
  transition: filter var(--transition);
}
.payment-icons img:hover { filter: brightness(1); }

/* Footer responsible gambling */
.footer-responsible { padding: 22px 0; border-bottom: 1px solid var(--border); }
.responsible-icons { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.responsible-icons img { height: 32px; width: auto; object-fit: contain; }
.footer-responsible p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* Footer bottom */
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-dark); }
.footer-disclaimer { color: var(--text-dark) !important; font-style: italic; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404 {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-primary);
}
.error-404-inner { max-width: 560px; padding: 40px 20px; }
.error-404-inner .error-code {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.error-404-inner h1 { font-size: 1.8rem; color: #fff; margin-bottom: 16px; }
.error-404-inner p { color: var(--text-muted); margin-bottom: 28px; }
.error-404-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-orange { color: var(--accent-orange); }
.text-gold { color: var(--accent-gold); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.show-more {
  text-align: center;
  margin-top: 32px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.orange-line {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
  margin: 10px 0 16px;
}
.highlighted-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.highlighted-table th {
  background: rgba(255,78,0,0.12);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--accent-orange);
}
.highlighted-table td {
  padding: 11px 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.highlighted-table tr:last-child td { border-bottom: none; }
.highlighted-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .live-casino-games { grid-template-columns: repeat(3, 1fr); }
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .content-with-sidebar { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { gap: 32px; }
  .slide img { height: 320px; }
  .slide-overlay { padding: 0 30px; }
  .slide-content h2 { font-size: 1.7rem; }
  .page-hero h1 { font-size: 1.9rem; }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    overflow-y: auto;
    padding: 20px;
    z-index: 999;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav .nav-link { padding: 14px 16px; font-size: 1rem; }
  .has-dropdown .dropdown {
    display: block;
    position: static;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
    box-shadow: none;
  }
  .has-dropdown .dropdown li a { padding: 10px 14px; font-size: 0.9rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .live-casino-games { grid-template-columns: repeat(2, 1fr); }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.6rem; }
  .slide img { height: 240px; }
  .slide-content h2 { font-size: 1.3rem; }
  .slide-content p { font-size: 0.9rem; }
  .slider-prev, .slider-next { width: 36px; height: 36px; font-size: 0.95rem; }
  .page-hero h1 { font-size: 1.5rem; }
  .content-section h1 { font-size: 1.7rem; }
  .content-section h2 { font-size: 1.3rem; }
  .error-404-inner .error-code { font-size: 5rem; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .live-casino-games { grid-template-columns: 1fr 1fr; gap: 10px; }
  .header-cta { display: none; }
  .slide img { height: 200px; }
  .slide-overlay { display: none; }
  .btn-lg { padding: 11px 22px; font-size: 0.9rem; }
}
