/* ============================
   Dragonia Casino — Main Styles
   ============================ */

:root {
  --bg-dark: #1A1418;
  --bg-sidebar: #211921;
  --bg-card: #2B1B24;
  --bg-section: #241A20;
  --bg-section-alt: #1E1520;
  --gold: #D7A23A;
  --gold-light: #F0B84A;
  --gold-dark: #B86B2A;
  --accent-red: #E74C3C;
  --accent-purple: #9B59B6;
  --text-primary: #F5F0EB;
  --text-secondary: #B8A9AE;
  --text-muted: #7A6B70;
  --border-color: #3A2A32;
  --border-gold: rgba(215,162,58,0.3);
  --gradient-hero: linear-gradient(135deg, #3A1530 0%, #2B1B24 50%, #1A1418 100%);
  --gradient-gold: linear-gradient(135deg, #D7A23A, #F0B84A);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 20px rgba(215,162,58,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --sidebar-w: 240px;
  --header-h: 64px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

/* ============================
   Header
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(26,20,24,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search {
  position: relative;
  margin-right: 16px;
}

.header-search input {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 8px 16px 8px 40px;
  color: var(--text-primary);
  font-size: 0.875rem;
  width: 220px;
  outline: none;
  transition: border-color var(--transition), width var(--transition);
}

.header-search input:focus {
  border-color: var(--gold);
  width: 280px;
}

.header-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #1A1418;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(215,162,58,0.3);
  color: #1A1418;
}

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

.btn-outline:hover {
  background: var(--gold);
  color: #1A1418;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ============================
   Sidebar
   ============================ */
.sidebar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: var(--sidebar-w);
  height: calc(100vh - var(--header-h));
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-color);
  overflow-y: auto;
  z-index: 900;
  padding: 16px 0;
  transition: transform var(--transition);
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}

.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }

.sidebar-nav { list-style: none; }

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  color: var(--gold);
  background: rgba(215,162,58,0.08);
  border-left-color: var(--gold);
}

.sidebar-nav li a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
}

.sidebar-nav li a:hover svg,
.sidebar-nav li a.active svg { opacity: 1; }

.sidebar-divider {
  height: 1px;
  background: var(--border-color);
  margin: 12px 20px;
  list-style: none;
}

.sidebar-lang {
  padding: 16px 20px;
  margin-top: auto;
}

.sidebar-lang select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--text-primary);
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
}

/* ============================
   Main Content
   ============================ */
.main-content {
  margin-left: var(--sidebar-w);
  margin-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  padding: 0;
}

/* ============================
   Hero
   ============================ */
.hero {
  background: var(--gradient-hero);
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(58,21,48,0.82) 0%, rgba(43,27,36,0.75) 40%, rgba(26,20,24,0.80) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(215,162,58,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .hero-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 700px;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(215,162,58,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  font-size: 0.85rem;
  color: var(--gold-light);
}

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

/* ============================
   Sections
   ============================ */
.content-section {
  padding: 60px 40px;
  border-bottom: 1px solid var(--border-color);
}

.content-section:nth-child(even) { background: var(--bg-section-alt); }
.content-section:nth-child(odd) { background: var(--bg-section); }

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-inner h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  position: relative;
  padding-left: 20px;
}

.section-inner h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section-inner h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 28px 0 14px;
  color: var(--gold-light);
}

.section-inner p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.section-inner ul, .section-inner ol {
  color: var(--text-secondary);
  margin: 16px 0;
  padding-left: 24px;
}

.section-inner li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.section-inner li::marker { color: var(--gold); }

/* ============================
   Info Table
   ============================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.info-table th,
.info-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.info-table th {
  background: rgba(215,162,58,0.12);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-table td {
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.info-table tr:hover td {
  background: rgba(215,162,58,0.05);
}

.info-table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================
   Feature Cards
   ============================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-card .fc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(215,162,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================
   Game Categories
   ============================ */
.game-cats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.game-cat {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: default;
  transition: all var(--transition);
}

.game-cat:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================
   CTA Banner
   ============================ */
.cta-banner {
  background: var(--gradient-hero);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 32px 0;
}

.cta-banner h3 {
  font-size: 1.6rem;
  color: var(--gold-light) !important;
  margin-bottom: 16px !important;
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 24px !important;
}

/* ============================
   Bonus Box
   ============================ */
.bonus-box {
  background: linear-gradient(135deg, rgba(215,162,58,0.15), rgba(215,162,58,0.05));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 32px;
  margin: 24px 0;
  position: relative;
  overflow: hidden;
}

.bonus-box::after {
  content: '🎁';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 4rem;
  opacity: 0.15;
}

.bonus-box h4 {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.bonus-box p { color: var(--text-secondary); }

/* ============================
   Stats Row
   ============================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.stat-item .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ============================
   Payment Methods
   ============================ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.payment-item:hover { border-color: var(--border-gold); }

.payment-item .pi-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
}

/* ============================
   Pros/Cons
   ============================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.pros-list, .cons-list {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
}

.pros-list { border-left: 4px solid #27ae60; }
.cons-list { border-left: 4px solid var(--accent-red); }

.pros-list h4 { color: #2ecc71; margin-bottom: 12px; }
.cons-list h4 { color: var(--accent-red); margin-bottom: 12px; }

.pros-list ul, .cons-list ul {
  list-style: none;
  padding: 0;
}

.pros-list li::before { content: '✓ '; color: #2ecc71; font-weight: 700; }
.cons-list li::before { content: '✗ '; color: var(--accent-red); font-weight: 700; }

/* ============================
   FAQ
   ============================ */
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 18px 24px;
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-primary);
  transition: background var(--transition);
}

.faq-q:hover { background: rgba(215,162,58,0.08); }

.faq-q .faq-arrow {
  transition: transform var(--transition);
  color: var(--gold);
  font-size: 1.2rem;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  padding: 16px 24px;
  max-height: 400px;
}

/* ============================
   Footer
   ============================ */
.site-footer {
  background: var(--bg-sidebar);
  border-top: 1px solid var(--border-color);
  padding: 48px 40px 24px;
  margin-left: var(--sidebar-w);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  gap: 12px;
}

.footer-badge {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================
   Responsible Gaming Banner
   ============================ */
.rg-banner {
  background: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.2);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.rg-banner .rg-icon { font-size: 2rem; flex-shrink: 0; }

.rg-banner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================
   Scroll to Top
   ============================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  color: #1A1418;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ============================
   Mobile Overlay
   ============================ */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 850;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px) {
  :root { --sidebar-w: 200px; }
  .hero { padding: 60px 30px 50px; }
  .content-section { padding: 48px 30px; }
  .hero h1 { font-size: 2.1rem; }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: 260px;
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay.open { display: block; }

  .main-content {
    margin-left: 0;
  }

  .site-footer {
    margin-left: 0;
  }

  .hamburger { display: block; }
  .header-search { display: none; }

  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 1.7rem; }
  .hero .hero-text { font-size: 1rem; }

  .content-section { padding: 40px 20px; }
  .section-inner h2 { font-size: 1.5rem; }

  .features-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-badges { flex-direction: column; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .info-table th, .info-table td { padding: 10px 12px; font-size: 0.85rem; }
  .header-nav .btn { padding: 8px 16px; font-size: 0.75rem; }
}

/* ============================
   Animation
   ============================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.content-section:nth-child(2) .section-inner { animation-delay: 0.1s; }
.content-section:nth-child(3) .section-inner { animation-delay: 0.2s; }

/* ============================
   Section Banners
   ============================ */
.section-banner {
  display: block;
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: all var(--transition);
}

.section-banner:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.section-banner img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* ============================
   Colored Icons & UI Accents
   ============================ */

/* --- Sidebar Icons: unique color per item --- */
.sidebar-nav li a .fa-home { color: #4FC3F7; }
.sidebar-nav li a .fa-star { color: #FFD740; }
.sidebar-nav li a .fa-gift { color: #FF7043; }
.sidebar-nav li a .fa-gamepad { color: #AB47BC; }
.sidebar-nav li a .fa-video { color: #EF5350; }
.sidebar-nav li a .fa-futbol { color: #66BB6A; }
.sidebar-nav li a .fa-crown { color: #FFC107; }
.sidebar-nav li a .fa-credit-card { color: #42A5F5; }
.sidebar-nav li a .fa-mobile-alt { color: #26C6DA; }
.sidebar-nav li a .fa-shield-alt { color: #5C6BC0; }
.sidebar-nav li a .fa-sliders-h { color: #EC407A; }
.sidebar-nav li a .fa-question-circle { color: #78909C; }
.sidebar-nav li a .fa-hand-holding-heart { color: #E91E63; }
.sidebar-nav li a:hover i,
.sidebar-nav li a.active i { color: var(--gold); }

/* --- Hero Badge Icons --- */
.hero-badge .fa-check-circle { color: #66BB6A; }
.hero-badge .fa-bolt { color: #FFC107; }
.hero-badge .fa-dice { color: #AB47BC; }
.hero-badge .fa-headset { color: #42A5F5; }

/* --- Game Category Tags --- */
.game-cat { position: relative; }
.game-cat .fa-fire { color: #FF5722; }
.game-cat .fa-trophy { color: #FFD740; }
.game-cat .fa-layer-group { color: #66BB6A; }
.game-cat .fa-bomb { color: #EF5350; }
.game-cat .fa-dice-d20 { color: #AB47BC; }
.game-cat .fa-random { color: #26C6DA; }
.game-cat .fa-gem { color: #E040FB; }

/* --- Feature Cards: colored icon circles --- */
.feature-card .fc-icon {
  background: none;
  font-size: 2rem;
}
.features-grid .feature-card:nth-child(1) .fc-icon { color: #E040FB; }
.features-grid .feature-card:nth-child(2) .fc-icon { color: #42A5F5; }
.features-grid .feature-card:nth-child(3) .fc-icon { color: #FFD740; }
.features-grid .feature-card:nth-child(4) .fc-icon { color: #66BB6A; }
.features-grid .feature-card:nth-child(5) .fc-icon { color: #FF7043; }
.features-grid .feature-card:nth-child(6) .fc-icon { color: #26C6DA; }

/* --- Stats Row: colored numbers --- */
.stat-item:nth-child(1) .stat-num { color: #E040FB; }
.stat-item:nth-child(2) .stat-num { color: #42A5F5; }
.stat-item:nth-child(3) .stat-num { color: #66BB6A; }
.stat-item:nth-child(4) .stat-num { color: #FFC107; }

/* --- Payment Items: colored pi-icon --- */
.payment-item:nth-child(1) .pi-icon { color: #42A5F5; }
.payment-item:nth-child(2) .pi-icon { color: #EF5350; }
.payment-item:nth-child(3) .pi-icon { color: #5C6BC0; }
.payment-item:nth-child(4) .pi-icon { color: #AB47BC; }
.payment-item:nth-child(5) .pi-icon { color: #66BB6A; }
.payment-item:nth-child(6) .pi-icon { color: #26C6DA; }
.payment-item:nth-child(7) .pi-icon { color: #FF9800; }
.payment-item:nth-child(8) .pi-icon { color: #5C6BC0; }
.payment-item:nth-child(9) .pi-icon { color: #4FC3F7; }
.payment-item:nth-child(10) .pi-icon { color: #EC407A; }
.payment-item:nth-child(11) .pi-icon { color: #FF7043; }
.payment-item:nth-child(12) .pi-icon { color: #66BB6A; }

/* --- Bonus Box accent --- */
.bonus-box {
  border-left: 4px solid #FF9800;
}
.bonus-box h4 { color: #FFB74D; }

/* --- FAQ Arrow --- */
.faq-q .faq-arrow { color: #FF9800; }
.faq-item.open .faq-q .faq-arrow { color: #66BB6A; }
.faq-item.open .faq-q { background: rgba(102,187,106,0.08); }

/* --- Footer Column Headings --- */
.footer-col:nth-child(1) h5 { color: #E040FB; }
.footer-col:nth-child(2) h5 { color: #66BB6A; }
.footer-col:nth-child(3) h5 { color: #42A5F5; }
.footer-col:nth-child(4) h5 { color: #FF7043; }

/* --- Footer Badges --- */
.footer-badge:nth-child(1) { color: #66BB6A; border-color: rgba(102,187,106,0.3); }
.footer-badge:nth-child(2) { color: #EF5350; border-color: rgba(239,83,80,0.3); }
.footer-badge:nth-child(3) { color: #42A5F5; border-color: rgba(66,165,245,0.3); }

/* --- Section H2 left-bar: alternating colors --- */
.content-section:nth-child(1) .section-inner h2::before { background: linear-gradient(180deg, #E040FB, #AB47BC); }
.content-section:nth-child(2) .section-inner h2::before { background: linear-gradient(180deg, #FF9800, #FF5722); }
.content-section:nth-child(3) .section-inner h2::before { background: linear-gradient(180deg, #AB47BC, #7B1FA2); }
.content-section:nth-child(4) .section-inner h2::before { background: linear-gradient(180deg, #EF5350, #C62828); }
.content-section:nth-child(5) .section-inner h2::before { background: linear-gradient(180deg, #66BB6A, #2E7D32); }
.content-section:nth-child(6) .section-inner h2::before { background: linear-gradient(180deg, #FFC107, #F57F17); }
.content-section:nth-child(7) .section-inner h2::before { background: linear-gradient(180deg, #42A5F5, #1565C0); }
.content-section:nth-child(8) .section-inner h2::before { background: linear-gradient(180deg, #26C6DA, #00838F); }
.content-section:nth-child(9) .section-inner h2::before { background: linear-gradient(180deg, #5C6BC0, #283593); }
.content-section:nth-child(10) .section-inner h2::before { background: linear-gradient(180deg, #EC407A, #AD1457); }
.content-section:nth-child(11) .section-inner h2::before { background: linear-gradient(180deg, #FF7043, #BF360C); }
.content-section:nth-child(12) .section-inner h2::before { background: linear-gradient(180deg, #78909C, #37474F); }
.content-section:nth-child(13) .section-inner h2::before { background: linear-gradient(180deg, #4FC3F7, #0277BD); }

/* --- Responsible Gaming banner --- */
.rg-banner {
  border-color: rgba(239,83,80,0.35);
  background: rgba(239,83,80,0.06);
}

/* --- CTA Banner: vibrant glow --- */
.cta-banner {
  border-color: rgba(224,64,251,0.3);
  background: linear-gradient(135deg, #3A1530 0%, #1E0A2E 50%, #1A1418 100%);
}

/* --- Info Table header accent --- */
.info-table th {
  background: linear-gradient(90deg, rgba(224,64,251,0.12), rgba(215,162,58,0.12));
}

/* --- Pros/Cons enhanced --- */
.pros-list { border-left: 4px solid #66BB6A; }
.cons-list { border-left: 4px solid #EF5350; }
.pros-list h4 { color: #81C784; }
.cons-list h4 { color: #EF5350; }

/* --- New sidebar icon colors --- */
.sidebar-nav li a .fa-exclamation-triangle { color: #FF7043; }
.sidebar-nav li a .fa-balance-scale { color: #26C6DA; }

/* --- Additional H2 bars for new sections --- */
.content-section:nth-child(14) .section-inner h2::before { background: linear-gradient(180deg, #FF5722, #BF360C); }
.content-section:nth-child(15) .section-inner h2::before { background: linear-gradient(180deg, #00BCD4, #006064); }

/* ============================
   Decision Tree
   ============================ */
.decision-tree {
  margin: 24px 0;
}
.dt-node.dt-start {
  background: linear-gradient(135deg, rgba(215,162,58,0.15), rgba(224,64,251,0.1));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 16px;
}
.dt-branches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.dt-branch {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}
.dt-branch:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.dt-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.dt-result {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================
   GEO Blocks (Regional Guides)
   ============================ */
.geo-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.geo-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.geo-block:hover {
  border-color: var(--border-gold);
}
.geo-block h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.geo-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================
   Friction Cards
   ============================ */
.friction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.friction-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.friction-card:hover {
  transform: translateY(-2px);
}
.friction-card.friction-no {
  border: 1px solid rgba(239,83,80,0.25);
  border-left: 4px solid #EF5350;
}
.friction-card.friction-no h4 {
  color: #EF5350;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.friction-card.friction-yes {
  border: 1px solid rgba(102,187,106,0.3);
  border-left: 4px solid #66BB6A;
}
.friction-card.friction-yes h4 {
  color: #66BB6A;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.friction-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================
   Comparison Table
   ============================ */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  min-width: 700px;
}
.comparison-table .highlight-col {
  background: rgba(215,162,58,0.08);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.comparison-table thead .highlight-col {
  background: linear-gradient(180deg, rgba(215,162,58,0.2), rgba(215,162,58,0.08));
  color: var(--gold-light);
  font-weight: 700;
}

/* Responsive adjustments for new blocks */
@media (max-width: 768px) {
  .friction-grid,
  .geo-blocks {
    grid-template-columns: 1fr;
  }
  .dt-branches {
    grid-template-columns: 1fr;
  }
  .comparison-table-wrap {
    margin: 16px -12px;
    padding: 0 12px;
  }
}
