:root {
  --red: #e8001d;
  --red-dark: #b0001a;
  --red-glow: rgba(232,0,29,0.18);
  --gold: #f0b429;
  --gold-light: #ffe082;
  --bg-deep: #0a0c10;
  --bg-card: #111520;
  --bg-section: #13172000;
  --surface: #1a1e2e;
  --surface2: #222840;
  --border: #2a2f4a;
  --text-primary: #f0f2f7;
  --text-secondary: #9ba3c0;
  --text-muted: #5a6080;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', monospace;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-red: 0 4px 32px rgba(232,0,29,0.25);
}

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

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

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
}

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

img { display: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); color: var(--gold); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); color: var(--text-primary); margin-bottom: 0.5em; }
p { margin-bottom: 1.1em; color: var(--text-secondary); }
strong { color: var(--text-primary); }
ul, ol { margin: 0.5em 0 1em 1.4em; color: var(--text-secondary); }
li { margin-bottom: 0.35em; }

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

section { padding: 52px 0; }

/* ─── FAVICON / LOGO ─── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.logo-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 6px;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: var(--shadow-red);
}

/* ─── TOP NAV ─── */
.topnav {
  background: rgba(10,12,16,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}

.topnav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); text-decoration: none; }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}

.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); text-decoration: none !important; }

/* ─── BONUS BANNER (top) ─── */
.bonus-banner {
  background: linear-gradient(135deg, #13001f 0%, #1a0a00 40%, #0d0012 100%);
  border-bottom: 2px solid var(--red);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(232,0,29,0.03) 30px,
    rgba(232,0,29,0.03) 60px
  );
  pointer-events: none;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 20px;
  max-width: 1080px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.banner-badge {
  background: var(--gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
  display: inline-block;
}

.banner-text h2 {
  margin: 0 0 4px;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: #fff;
  line-height: 1.2;
}

.banner-text h2 span { color: var(--gold); }

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

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, #c2001a 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: var(--shadow-red);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(232,0,29,0.45);
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #d4930d 100%);
  color: #000;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(240,180,41,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(240,180,41,0.5);
  text-decoration: none;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(180deg, #0f1018 0%, var(--bg-deep) 100%);
  padding: 60px 0 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.hero-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 220px;
  text-align: center;
  box-shadow: var(--shadow);
}

.star-graphic {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 0 16px rgba(232,0,29,0.6));
}

.hero-visual .brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.rating-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rating-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.rating-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
}

.rating-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 28px;
}

.meta-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-pill .icon { font-size: 0.9rem; }
.meta-pill strong { color: var(--text-primary); }

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── QUICK STATS BAR ─── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--red);
  font-family: var(--font-display);
  line-height: 1;
}

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

/* ─── SECTION DIVIDER ─── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── CARDS GRID (max 2 per row) ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.card:hover {
  border-color: var(--red);
  box-shadow: 0 0 24px var(--red-glow);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
  background: rgba(232,0,29,0.1);
  border: 1px solid rgba(232,0,29,0.2);
}

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.92rem; margin-bottom: 0; }

/* ─── TABLE ─── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 24px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.91rem;
}

thead th {
  background: var(--surface2);
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}

tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.03); }
tbody td { padding: 12px 16px; color: var(--text-secondary); vertical-align: middle; }
tbody td:first-child { color: var(--text-primary); font-weight: 500; }

.badge-green {
  display: inline-block;
  background: rgba(52,211,112,0.15);
  color: #34d370;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge-yellow {
  display: inline-block;
  background: rgba(240,180,41,0.15);
  color: var(--gold);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

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

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

.pros-box { border-top: 3px solid #34d370; }
.cons-box { border-top: 3px solid var(--red); }

.pros-box h3 { color: #34d370; margin-bottom: 14px; }
.cons-box h3 { color: var(--red); margin-bottom: 14px; }

.pros-box li::marker { color: #34d370; }
.cons-box li::marker { color: var(--red); }

/* ─── BONUS BANNER 2 ─── */
.bonus-banner-2 {
  background: linear-gradient(100deg, #0d0000 0%, #1a0006 50%, #060010 100%);
  border: 1px solid rgba(232,0,29,0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-red);
  margin: 40px 0;
}

.bonus-banner-2::before {
  content: '★';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  color: rgba(232,0,29,0.06);
  pointer-events: none;
  line-height: 1;
}

.bonus-banner-2 h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #fff;
  margin-bottom: 6px;
}

.bonus-banner-2 h2 span { color: var(--gold); }
.bonus-banner-2 p { margin: 0; font-size: 0.9rem; }

/* ─── STEPS ─── */
.steps-list { list-style: none; padding: 0; margin: 24px 0; }
.step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--font-display);
  box-shadow: var(--shadow-red);
}
.step-body h3 { font-size: 1rem; margin-bottom: 4px; }
.step-body p { margin: 0; font-size: 0.91rem; }

/* ─── FAQ ACCORDION (CSS only) ─── */
.faq-section { background: var(--surface); }

.faq-list { margin: 24px 0 0; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
  transition: color 0.2s;
  gap: 16px;
}

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

.faq-arrow {
  color: var(--red);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  display: inline-block;
}

.faq-item input:checked ~ .faq-label .faq-arrow {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item input:checked ~ .faq-body {
  max-height: 400px;
}

.faq-body p {
  padding: 0 0 18px;
  font-size: 0.93rem;
  color: var(--text-secondary);
}

/* ─── RATING BREAKDOWN ─── */
.rating-bars { margin: 20px 0; }
.rating-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.rating-row-label { width: 140px; font-size: 0.88rem; color: var(--text-secondary); flex-shrink: 0; }
.bar-track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.rating-row-val { width: 30px; text-align: right; font-size: 0.88rem; color: var(--gold); font-weight: 700; }

/* ─── RESPONSIBLE GAMING BOX ─── */
.rg-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}

.rg-box h3 { color: var(--gold); margin-bottom: 10px; }
.rg-box p { font-size: 0.91rem; margin-bottom: 0; }

/* ─── FOOTER ─── */
footer {
  background: #07080d;
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
}

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

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 700;
}

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

.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-secondary); font-size: 0.88rem; }
.footer-col a:hover { color: var(--gold); }

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

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

.age-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

/* ─── INLINE HIGHLIGHT ─── */
.highlight { color: var(--gold); font-weight: 600; }
.highlight-red { color: var(--red); font-weight: 600; }

/* ─── INFO BOX ─── */
.info-box {
  background: rgba(240,180,41,0.06);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box p { margin: 0; font-size: 0.92rem; color: var(--text-secondary); }
.info-box strong { color: var(--gold); }

/* ─── DIVIDER LINE ─── */
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* ─── CONTENT SECTION ─── */
.content-section { padding: 48px 0; }
.content-section + .content-section { padding-top: 0; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-width: unset; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-links { display: none; }
  .bonus-banner-2 { padding: 24px 20px; }
  .banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 1.7rem; }
}
