/* ===== RAINBOW RICHES CASINO UK — STYLESHEET ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #F4C430;
  --gold-dark: #D4A017;
  --green: #1A6B2A;
  --green-mid: #228B36;
  --green-light: #2EAF47;
  --emerald: #50C878;
  --dark: #0D1F10;
  --dark-mid: #132B18;
  --dark-card: #1A3520;
  --white: #FFFFFF;
  --off-white: #F8F5E9;
  --text-light: #D8E8D0;
  --text-muted: #8FAE88;
  --border: rgba(244, 196, 48, 0.25);
  --border-green: rgba(46, 175, 71, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 24px rgba(244,196,48,0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

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

body {
  background-color: var(--dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--text-light); font-size: 1rem; }
p:last-child { margin-bottom: 0; }

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

ul { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; color: var(--text-light); }

strong { color: var(--white); font-weight: 600; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 70px 0; }
section:nth-child(even) { background: var(--dark-mid); }

/* ===== FAVICON + LOGO (SVG/CSS) ===== */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text span:first-child {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.logo-text span:last-child {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(13,31,16,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-links a:hover {
  color: var(--gold);
  background: rgba(244,196,48,0.08);
  text-decoration: none;
}
.btn-nav {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  font-weight: 700 !important;
}
.btn-nav:hover {
  background: var(--gold-dark) !important;
  color: var(--dark) !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(244,196,48,0.35);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(244,196,48,0.55);
  background: linear-gradient(135deg, #FFD740 0%, var(--gold) 100%);
  color: var(--dark);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 8px;
}
.btn-secondary:hover {
  background: rgba(244,196,48,0.1);
  color: var(--gold);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 8px;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* ===== TOP BONUS BANNER (first screen) ===== */
.bonus-top-banner {
  background: linear-gradient(90deg, #0D3D18 0%, #1A6B2A 50%, #0D3D18 100%);
  border-bottom: 2px solid var(--gold);
  padding: 14px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonus-top-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(244,196,48,0.03) 10px,
    rgba(244,196,48,0.03) 20px
  );
}
.bonus-top-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.bonus-badge {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.bonus-top-banner p {
  margin: 0;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}
.bonus-top-banner strong {
  color: var(--gold);
}
.btn-banner {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-banner:hover {
  background: #FFD740;
  transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(160deg, #0D3D18 0%, #0D1F10 60%, #061008 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--dark));
}
.hero-decoration {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  opacity: 0.07;
  background:
    radial-gradient(circle at 70% 30%, var(--gold) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, var(--emerald) 0%, transparent 40%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,196,48,0.1);
  border: 1px solid rgba(244,196,48,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-eyebrow svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.8;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-display);
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ===== TABLE OF CONTENTS ===== */
.toc-section {
  background: var(--dark-mid);
  border-top: 1px solid var(--border-green);
  border-bottom: 1px solid var(--border-green);
  padding: 40px 0;
}
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.toc-item:hover {
  background: rgba(46,175,71,0.08);
  border-color: var(--green-light);
  color: var(--white);
  text-decoration: none;
}
.toc-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 22px;
}

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 40px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header p { font-size: 1.05rem; max-width: 640px; }

/* ===== BONUS SECTION ===== */
.bonus-section { background: var(--dark); }
.bonus-card-main {
  background: linear-gradient(135deg, #132B18 0%, #0D3D20 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.bonus-card-main::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,48,0.12) 0%, transparent 70%);
}
.bonus-offer-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bonus-amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.bonus-sub {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.bonus-checks {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}
.check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(46,175,71,0.2);
  border: 1.5px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon::after {
  content: '✓';
  font-size: 10px;
  color: var(--emerald);
  font-weight: 800;
}
.bonus-right {
  text-align: center;
  min-width: 180px;
}
.bonus-emblem {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
}
.bonus-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ===== TRUST BADGES ===== */
.trust-section { padding: 50px 0; background: var(--dark-mid); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.trust-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(244,196,48,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}
.trust-badge span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== GAMES SECTION ===== */
.games-section { background: var(--dark); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.game-card {
  background: var(--dark-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: border-color 0.2s, transform 0.2s;
  max-width: 280px;
}
.game-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.game-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.8rem;
}
.game-card h3 { font-size: 1rem; margin-bottom: 6px; }
.game-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.game-rtp {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(80,200,120,0.1);
  border: 1px solid rgba(80,200,120,0.25);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ===== INLINE BONUS BANNER (stripe) ===== */
.inline-bonus-banner {
  background: linear-gradient(90deg, #0D3D18 0%, #1D5C2B 40%, #0D3D18 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 28px 20px;
}
.inline-bonus-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.inline-bonus-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}
.inline-bonus-text span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== PAYMENTS TABLE ===== */
.payments-section { background: var(--dark-mid); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.payments-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
  font-size: 0.9rem;
}
.payments-table th {
  background: #0D3D18;
  color: var(--gold);
  font-weight: 700;
  text-align: left;
  padding: 14px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.payments-table td {
  padding: 12px 16px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}
.payments-table tr:hover td { background: rgba(255,255,255,0.02); }
.payments-table tr:last-child td { border-bottom: none; }
.pay-method {
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pay-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(244,196,48,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.tag-fast {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(80,200,120,0.15);
  color: var(--emerald);
  border: 1px solid rgba(80,200,120,0.3);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===== PROS & CONS ===== */
.pros-cons-section { background: var(--dark); }
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros-card, .cons-card {
  border-radius: var(--radius);
  padding: 28px;
}
.pros-card {
  background: rgba(46,175,71,0.06);
  border: 1px solid rgba(46,175,71,0.25);
}
.cons-card {
  background: rgba(220,60,60,0.05);
  border: 1px solid rgba(220,60,60,0.2);
}
.pros-card h3 {
  color: var(--emerald);
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cons-card h3 {
  color: #FF6B6B;
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-list, .cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pros-list li, .cons-list li {
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--text-light);
}
.pros-list li::before {
  content: '✓';
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}
.cons-list li::before {
  content: '✕';
  font-weight: 800;
  font-size: 0.85rem;
  color: #FF6B6B;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== INFO CARDS GRID ===== */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.info-card {
  background: var(--dark-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 22px 18px;
  max-width: 280px;
}
.info-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.info-card h3 { font-size: 1rem; margin-bottom: 6px; }
.info-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ===== REVIEWS SECTION ===== */
.reviews-section { background: var(--dark-mid); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 24px;
}
.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.7;
}
.review-author {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}
.review-author strong { color: var(--white); display: block; }

/* ===== MOBILE SECTION ===== */
.mobile-section { background: var(--dark); }
.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.mobile-phone-mock {
  background: var(--dark-card);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.phone-screen {
  background: linear-gradient(180deg, #0D3D18 0%, #1A3520 100%);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.phone-screen-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  text-align: center;
}
.app-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.app-badge {
  background: var(--dark-mid);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== SUPPORT SECTION ===== */
.support-section { background: var(--dark-mid); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.support-card {
  background: var(--dark-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.support-card-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.support-card h3 { font-size: 1rem; margin-bottom: 6px; }
.support-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--dark); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
}
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question.open { color: var(--gold); }
.faq-arrow {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(244,196,48,0.1);
  border: 1.5px solid rgba(244,196,48,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
  border-top: 1px solid var(--border-green);
}
.faq-answer.open { display: block; }

/* ===== RESPONSIBLE GAMBLING ===== */
.rg-section {
  background: linear-gradient(135deg, #0D1F10 0%, #132B18 100%);
  border-top: 1px solid var(--border);
  padding: 50px 0;
}
.rg-inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,196,48,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-wrap: wrap;
}
.rg-icon { font-size: 2.5rem; flex-shrink: 0; }
.rg-content h2 { font-size: 1.4rem; margin-bottom: 8px; }
.rg-content p { font-size: 0.9rem; color: var(--text-muted); max-width: 680px; }
.rg-tools {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.rg-tool-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-green);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ===== CTA FINAL ===== */
.cta-section {
  background: linear-gradient(135deg, #0D3D18 0%, #1A6B2A 50%, #0D3D18 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 12px,
    rgba(244,196,48,0.03) 12px, rgba(244,196,48,0.03) 24px
  );
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { font-size: 1.05rem; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.site-footer {
  background: #040E06;
  border-top: 1px solid var(--border);
  padding: 50px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin-top: 14px; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-legal { font-size: 0.78rem; color: var(--text-muted); max-width: 700px; line-height: 1.6; }
.footer-badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer-badge-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== ARTICLE CONTENT ===== */
.article-section { background: var(--dark); }
.article-section:nth-of-type(even) { background: var(--dark-mid); }
.article-body { max-width: 820px; }
.article-body h2 { margin-bottom: 18px; }
.article-body h3 { margin-top: 28px; margin-bottom: 10px; color: var(--gold); }
.article-body p { margin-bottom: 16px; line-height: 1.8; }
.highlight-box {
  background: rgba(46,175,71,0.06);
  border-left: 4px solid var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.highlight-box p { margin: 0; font-size: 0.95rem; font-style: italic; color: var(--text-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .bonus-card-main { grid-template-columns: 1fr; }
  .bonus-right { display: none; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .hero-stats { gap: 20px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .inline-bonus-inner { flex-direction: column; text-align: center; }
  .bonus-top-banner-inner { flex-direction: column; gap: 10px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.4rem; }
  section { padding: 50px 0; }
  .bonus-card-main { padding: 24px; }
  .faq-question { font-size: 0.9rem; padding: 15px 16px; }
  .faq-answer { padding: 0 16px 15px; }
}

@media (max-width: 480px) {
  .toc-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .info-cards-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
}
