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

:root {
  --green-dark: #0d2b1f;
  --green-mid: #1a4a33;
  --green-accent: #2e7d52;
  --green-light: #3db572;
  --gold: #f5b942;
  --gold-light: #fcd678;
  --text: #e8f0eb;
  --text-muted: #8aad97;
  --card-bg: #142e21;
  --card-border: #24503a;
  --table-header: #1e5445;
  --white: #ffffff;
  --radius: 12px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--green-dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* ─── HEADER ─────────────────────────────── */
.site-header {
  background: linear-gradient(135deg, #081a12 0%, #0f2a1c 50%, #081a12 100%);
  padding: 18px 0;
  border-bottom: 2px solid var(--green-accent);
  position: sticky;
  top: 0;
  z-index: 100;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--gold); letter-spacing: -0.5px; text-decoration: none; }
.logo span { color: var(--green-light); }

/* ─── BREADCRUMBS ─────────────────────────── */
.breadcrumbs {
  background: rgba(0,0,0,0.2);
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.82rem;
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0; padding: 0; }
.breadcrumbs li { display: flex; align-items: center; color: var(--text-muted); }
.breadcrumbs li + li::before { content: '›'; margin: 0 8px; color: var(--green-accent); }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--green-light); }
.breadcrumbs li[aria-current="page"] { color: var(--text); }

/* ─── HERO ────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #0a2218 0%, #14402b 40%, #0d3022 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(61,181,114,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,185,66,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; line-height: 1.2;
  color: var(--white); margin-bottom: 18px;
}
.hero h1 em { color: var(--green-light); font-style: normal; }
.hero-intro {
  font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin-bottom: 30px;
}
.hero-meta { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-meta span { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.hero-meta span::before { content: '✦'; color: var(--green-light); font-size: 0.7rem; }

/* ─── QUICK STATS ─────────────────────────── */
.quick-stats {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0; margin: 30px 0; overflow: hidden;
}
.stat-item {
  padding: 22px 20px; text-align: center;
  border-right: 1px solid var(--card-border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ─── TOC ─────────────────────────────────── */
.toc {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 30px; margin: 40px 0;
}
.toc h2 { font-family: 'Sora', sans-serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 18px; }
.toc ol { padding-left: 22px; }
.toc li { padding: 4px 0; }
.toc a { color: var(--green-light); text-decoration: none; font-size: 0.95rem; }
.toc a:hover { color: var(--gold); }

/* ─── SECTIONS ────────────────────────────── */
.section { padding: 50px 0; border-bottom: 1px solid var(--card-border); }
.section:last-child { border-bottom: none; }

h2.section-title {
  font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 800;
  color: var(--white); margin-bottom: 18px; line-height: 1.3;
}
h2.section-title span { color: var(--green-light); }

h3 {
  font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700;
  color: var(--gold); margin: 28px 0 12px;
}

p { margin-bottom: 16px; color: var(--text); }

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

.casino-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.casino-card:hover { border-color: var(--green-light); transform: translateY(-2px); }
.casino-card.featured { border-color: var(--gold); }

.casino-card-inner { display: flex; align-items: stretch; }

.casino-rank {
  background: var(--green-mid);
  width: 56px; min-width: 56px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--gold);
}
.casino-card.featured .casino-rank { background: rgba(245,185,66,0.15); }

.casino-info { flex: 1; padding: 20px 22px; }
.casino-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; flex-wrap: wrap; gap: 10px; }
.casino-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--white); }
.casino-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  font-size: 0.72rem; font-weight: 600; padding: 3px 9px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-mga { background: rgba(61,181,114,0.15); color: var(--green-light); border: 1px solid var(--green-accent); }
.badge-ee  { background: rgba(100,160,255,0.15); color: #7db8ff; border: 1px solid #4a90d9; }
.badge-cur { background: rgba(200,140,50,0.15); color: #e6b86a; border: 1px solid #c08030; }
.badge-new { background: rgba(245,185,66,0.15); color: var(--gold); border: 1px solid var(--gold); }
.badge-pnp { background: rgba(61,181,114,0.2); color: var(--green-light); border: 1px solid var(--green-accent); }

.casino-bonus { font-size: 1rem; font-weight: 600; color: var(--gold); margin-bottom: 8px; }
.casino-details { display: flex; gap: 20px; flex-wrap: wrap; }
.casino-detail { font-size: 0.83rem; color: var(--text-muted); }
.casino-detail strong { color: var(--text); }

.casino-cta {
  padding: 20px 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: rgba(0,0,0,0.15); min-width: 130px;
}
.btn-play {
  display: inline-block; padding: 10px 22px; border-radius: 8px;
  background: linear-gradient(135deg, var(--green-light), var(--green-accent));
  color: #fff; font-weight: 700; font-size: 0.9rem; text-decoration: none;
  white-space: nowrap; transition: opacity 0.2s;
}
.btn-play:hover { opacity: 0.9; }
.casino-card.featured .btn-play { background: linear-gradient(135deg, var(--gold), #e8a020); color: #1a1a1a; }
.btn-review { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; }
.btn-review:hover { color: var(--green-light); }

/* ─── TABLES ──────────────────────────────── */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--card-border); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead th {
  background: var(--table-header); color: var(--white);
  padding: 13px 16px; text-align: left; font-family: 'Sora', sans-serif; font-weight: 600;
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--card-border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: rgba(255,255,255,0.025); }
tbody td { padding: 12px 16px; color: var(--text); }
.check { color: var(--green-light); font-weight: 700; }
.cross { color: #e05555; font-weight: 700; }

/* ─── INFO BOXES ──────────────────────────── */
.infobox {
  background: rgba(61,181,114,0.08);
  border-left: 3px solid var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; margin: 24px 0;
}
.infobox.gold {
  background: rgba(245,185,66,0.08);
  border-left-color: var(--gold);
}
.infobox p { margin-bottom: 0; }
.infobox strong { color: var(--green-light); }
.infobox.gold strong { color: var(--gold); }

/* ─── STEPS ───────────────────────────────── */
.steps { margin: 24px 0; }
.step {
  display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 18px 20px;
}
.step-num {
  background: var(--green-accent); color: #fff;
  width: 34px; min-width: 34px; height: 34px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem;
}
.step-text strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.step-text { color: var(--text-muted); font-size: 0.93rem; }

/* ─── PROS / CONS ─────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pros, .cons {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 22px;
}
.pros { border-top: 3px solid var(--green-light); }
.cons { border-top: 3px solid #e05555; }
.pros h4, .cons h4 { font-family: 'Sora', sans-serif; margin-bottom: 14px; font-size: 1rem; }
.pros h4 { color: var(--green-light); }
.cons h4 { color: #e07070; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li, .cons li { padding: 5px 0; font-size: 0.92rem; color: var(--text-muted); display: flex; gap: 8px; }
.pros li::before { content: '✓'; color: var(--green-light); font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '✗'; color: #e07070; font-weight: 700; flex-shrink: 0; }

/* ─── FAQ ─────────────────────────────────── */
.faq { margin: 30px 0; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  padding: 18px 22px; cursor: pointer;
  font-family: 'Sora', sans-serif; font-weight: 600; color: var(--white); font-size: 0.97rem;
  display: flex; justify-content: space-between; align-items: center; user-select: none;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.3rem; line-height: 1; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 22px 18px; color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ─── HIGHLIGHT BOX ───────────────────────── */
.highlight {
  background: linear-gradient(135deg, rgba(46,125,82,0.25), rgba(20,64,43,0.4));
  border: 1px solid var(--green-accent); border-radius: var(--radius);
  padding: 28px 30px; margin: 30px 0;
}
.highlight h3 { margin-top: 0; color: var(--green-light); }

/* ─── FOOTER ──────────────────────────────── */
.site-footer {
  background: #06110e;
  padding: 40px 0 30px; margin-top: 60px;
  border-top: 2px solid var(--card-border);
}
.footer-text { color: #4a7a5e; font-size: 0.83rem; line-height: 1.7; max-width: 800px; }
.footer-text strong { color: #6aaa85; }
.copyright { color: #2e5040; font-size: 0.78rem; margin-top: 18px; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 700px) {
  .casino-card-inner { flex-direction: column; }
  .casino-rank { width: 100%; min-width: auto; height: 40px; font-size: 1rem; }
  .casino-cta { flex-direction: row; justify-content: flex-start; padding: 14px 20px; }
  .pros-cons { grid-template-columns: 1fr; }
  .hero-meta { gap: 14px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--card-border); }
}
