:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --accent-hover: #d63851;
  --gold: #f5a623;
  --gold-hover: #e09510;
  --green: #27ae60;
  --text: #e0e0e0;
  --text-dark: #1a1a2e;
  --text-muted: #a0a0b0;
  --bg-dark: #0f0f1a;
  --bg-card: #1e1e34;
  --bg-card-hover: #252545;
  --bg-light: #f8f9fa;
  --border: #2a2a4a;
  --border-light: #e0e0e0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

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

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

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

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* HEADER & NAVIGATION */
.site-header {
  background: var(--primary);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo span { color: var(--accent); font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: block; }

.main-nav { display: flex; align-items: center; gap: 0; }

.main-nav > li {
  list-style: none;
  position: relative;
}

.main-nav > li > a {
  color: #fff;
  padding: 22px 16px;
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  max-height: 70vh;
  overflow-y: auto;
}

.main-nav > li:hover > .dropdown-menu { display: block; }

.dropdown-menu li { list-style: none; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-card);
  color: var(--gold);
}

.dropdown-menu li:last-child a { border-bottom: none; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #0a1628 100%);
  padding: 40px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(233,69,96,0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(245,166,35,0.08) 0%, transparent 50%);
  animation: heroGlow 15s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(10deg); }
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233,69,96,0.4);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: var(--text-dark);
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
  color: var(--text-dark);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--text-dark);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* SECTIONS */
.section {
  padding: 40px 0;
}

.section-dark { background: var(--bg-dark); }
.section-alt { background: var(--secondary); }
.section-light { background: var(--bg-light); color: var(--text-dark); }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 50px;
}

/* CASINO CARDS */
.casino-list { display: flex; flex-direction: column; gap: 20px; }

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px 30px;
  display: grid;
  grid-template-columns: 60px 1fr 200px 180px 160px;
  align-items: center;
  gap: 25px;
  transition: var(--transition);
  position: relative;
}

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

.casino-mini-review {
  grid-column: 1 / -1;
}

.casino-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,166,35,0.05) 100%);
}

.casino-card.featured::before {
  content: 'Top Pick';
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 4px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.casino-rank {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.casino-info h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 5px;
}

.casino-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-num { font-weight: 700; color: var(--gold); font-size: 1.1rem; }

.casino-bonus {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 15px;
  text-align: center;
}

.casino-bonus strong {
  display: block;
  color: var(--green);
  font-size: 0.95rem;
}

.casino-bonus span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.casino-cta { text-align: center; }

.casino-cta .btn { width: 100%; margin-bottom: 8px; }

.casino-cta .review-link {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.casino-cta .review-link:hover { color: var(--gold); }

/* COMPARISON TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 30px 0;
}

.comparison-table thead { background: var(--primary); }

.comparison-table th {
  padding: 15px 20px;
  text-align: left;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.comparison-table tr:hover { background: var(--bg-card-hover); }

.comparison-table .check { color: var(--green); }
.comparison-table .cross { color: var(--accent); }

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}

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

/* PROS/CONS */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 25px 0;
}

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

.pros { border-left: 4px solid var(--green); }
.cons { border-left: 4px solid var(--accent); }

.pros h4, .cons h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

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

.pros li, .cons li {
  padding: 6px 0;
  font-size: 0.9rem;
  position: relative;
  padding-left: 25px;
}

.pros li::before { content: '\2713'; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.cons li::before { content: '\2717'; color: var(--accent); position: absolute; left: 0; font-weight: 700; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 25px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* CONTENT SECTIONS */
.content-block {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 0;
}

.content-block h2 {
  font-size: 1.8rem;
  color: #fff;
  margin: 40px 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.content-block h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin: 30px 0 12px;
}

.content-block h4 {
  font-size: 1.1rem;
  color: #fff;
  margin: 20px 0 10px;
}

.content-block p {
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.8;
}

.content-block ul, .content-block ol {
  margin: 15px 0;
  padding-left: 25px;
}

.content-block li {
  margin-bottom: 8px;
  color: var(--text);
}

/* INFO BOX */
.info-box {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  padding: 25px;
  margin: 25px 0;
}

.info-box.warning {
  background: rgba(233,69,96,0.08);
  border-color: rgba(233,69,96,0.3);
}

.info-box.success {
  background: rgba(39,174,96,0.08);
  border-color: rgba(39,174,96,0.3);
}

.info-box h4 { color: var(--gold); margin-bottom: 10px; }
.info-box.warning h4 { color: var(--accent); }
.info-box.success h4 { color: var(--green); }

/* AUTHOR BOX */
.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 40px 0;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  flex-shrink: 0;
}

.author-info h4 { color: #fff; margin-bottom: 5px; }
.author-info .author-title { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; }
.author-info p { font-size: 0.9rem; color: var(--text-muted); }

/* BREADCRUMB */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); margin: 0 8px; }
.breadcrumb .current { color: var(--gold); }

/* FOOTER */
.site-footer {
  background: var(--primary);
  border-top: 2px solid var(--accent);
  padding: 60px 0 0;
}

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

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

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

.footer-col a:hover { color: var(--gold); padding-left: 5px; }

.footer-responsible {
  background: rgba(233,69,96,0.1);
  border: 1px solid rgba(233,69,96,0.3);
  border-radius: var(--radius);
  padding: 20px;
  margin: 30px 0;
  text-align: center;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

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

.age-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 36px;
  font-weight: 800;
  font-size: 0.85rem;
  margin: 0 5px;
}

/* GUIDE CARDS */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
}

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

.guide-card .tag {
  display: inline-block;
  background: rgba(233,69,96,0.15);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.guide-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.guide-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }
.guide-card .read-more { color: var(--gold); font-weight: 600; font-size: 0.9rem; }

/* REVIEW PAGE SPECIFIC */
.review-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #0a1628 100%);
  padding: 40px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 30px;
}

.review-logo-placeholder {
  width: 100px;
  height: 100px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.review-meta { flex: 1; }
.review-meta h1 { font-size: 2.2rem; color: #fff; margin-bottom: 8px; }
.review-meta .review-subtitle { color: var(--text-muted); font-size: 1rem; }

.review-score {
  text-align: center;
  background: var(--bg-card);
  padding: 20px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
}

.review-score .score { font-size: 2.5rem; font-weight: 800; color: var(--gold); }
.review-score .score-label { font-size: 0.8rem; color: var(--text-muted); }

/* TABLE OF CONTENTS */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px;
  margin: 30px 0;
}

.toc h4 { color: #fff; margin-bottom: 15px; }
.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--text-muted); font-size: 0.9rem; }
.toc a:hover { color: var(--gold); }

/* STEP BOXES */
.steps { counter-reset: step; }

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px 25px 25px 80px;
  margin-bottom: 15px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 25px;
  top: 25px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
}

.step h4 { color: #fff; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .casino-card {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }
  .casino-rating, .casino-bonus, .casino-cta {
    grid-column: 1 / -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.active { display: flex; }

  .main-nav > li > a {
    padding: 15px 25px;
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu {
    position: static;
    display: none;
    border: none;
    background: rgba(0,0,0,0.2);
    box-shadow: none;
    border-radius: 0;
  }

  .main-nav > li.dropdown-open > .dropdown-menu { display: block; }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  .casino-card { padding: 20px; }

  .pros-cons { grid-template-columns: 1fr; }

  .review-header { flex-direction: column; text-align: center; }
  .review-meta h1 { font-size: 1.6rem; }

  .footer-grid { grid-template-columns: 1fr; }

  .section-title { font-size: 1.6rem; }

  .guides-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-badge { text-align: center; padding: 8px 10px; font-size: 0.78rem; border-radius: 8px; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--accent-hover); transform: translateY(-3px); }

/* CATEGORY PAGE (legacy - now uses .hero) */
.category-intro {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #0a1628 100%);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-intro h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 15px;
}

.category-intro p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* PAYMENT METHODS */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

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

/* BONUS TABLE */
.bonus-highlight {
  background: linear-gradient(135deg, rgba(39,174,96,0.1), rgba(245,166,35,0.1));
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  margin: 25px 0;
}

.bonus-highlight .bonus-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.bonus-highlight .bonus-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* LAST UPDATED */
.last-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* LEGAL PAGES */
.legal-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 50px 0;
}

.legal-content h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent);
}

.legal-content h2 {
  font-size: 1.5rem;
  color: #fff;
  margin: 35px 0 15px;
}

.legal-content h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin: 25px 0 10px;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text);
}

/* TAGS AND BADGES */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-gold { background: rgba(245,166,35,0.15); color: var(--gold); }
.badge-green { background: rgba(39,174,96,0.15); color: var(--green); }
.badge-red { background: rgba(233,69,96,0.15); color: var(--accent); }
