:root {
  --red: #E8001A;
  --red-dark: #B8001A;
  --red-glow: rgba(232, 0, 26, 0.18);
  --black: #0A0A0B;
  --dark: #131416;
  --dark-2: #1C1E21;
  --dark-3: #252729;
  --dark-card: #1A1C1F;
  --border: rgba(255,255,255,0.08);
  --border-red: rgba(232,0,26,0.3);
  --white: #FFFFFF;
  --off-white: #F0EDE8;
  --text-muted: #9A9A9F;
  --text-body: #C8C5C0;
  --gold: #F0A500;
  --green: #00C853;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-red: 0 4px 32px rgba(232, 0, 26, 0.25);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.4);
  --max-w: 1100px;
}

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

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

body {
  background: var(--black);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #E8001A 0%, #FF2D3D 60%, #C8001A 100%);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #FF1A2A 0%, #FF3F4F 60%, #D8001F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 40px rgba(232,0,26,0.4);
}

.btn--primary:active { transform: translateY(0); }

.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--xl { padding: 18px 44px; font-size: 1.1rem; }

.top-bar {
  background: var(--red);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 6px var(--red));
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo__text strong {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.15s;
  text-decoration: none;
}

.nav a:hover { color: var(--white); }

.hero-banner {
  background: linear-gradient(135deg, #0F1012 0%, #1A0508 50%, #0F0F10 100%);
  border-bottom: 1px solid var(--border-red);
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,0,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-content { max-width: 600px; }

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: normal;
}

.hero-amount {
  color: var(--red);
  font-weight: bold;
  text-shadow: 0 0 20px rgba(232,0,26,0.4);
}

.hero-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-badge {
  background: var(--dark-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-align: center;
  min-width: 140px;
  flex-shrink: 0;
  box-shadow: var(--shadow-red);
}

.badge-score {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
  font-weight: bold;
}

.badge-label {
  display: block;
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 600;
}

.badge-sub {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 6px;
}

.main-content { padding: 56px 0; }

.article h1.article__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: normal;
  letter-spacing: -0.02em;
  border-bottom: 3px solid var(--red);
  padding-bottom: 20px;
  display: inline-block;
}

.article__lead {
  font-size: 1.1rem;
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  border-left: 3px solid var(--red);
  padding-left: 20px;
}

.article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--white);
  margin: 48px 0 20px;
  font-weight: normal;
  line-height: 1.2;
  position: relative;
}

.article h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
  margin-top: 10px;
}

.article h3 {
  font-size: 1.15rem;
  color: var(--off-white);
  margin: 28px 0 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.article p {
  color: var(--text-body);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 820px;
}

.article ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.article ul li {
  color: var(--text-body);
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 0.96rem;
}

.quick-facts {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 36px 0 40px;
  border-left: 3px solid var(--red);
}

.quick-facts__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: normal;
}

.quick-facts__title::after { display: none; }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.fact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
}

.fact-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

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

.bonus-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.bonus-table th {
  background: var(--dark-3);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--red);
}

.bonus-table td {
  padding: 11px 16px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}

.bonus-table tr:last-child td { border-bottom: none; }

.bonus-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.bonus-table tr:hover td { background: rgba(232,0,26,0.04); }

.cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.game-card, .support-card, .pros-card, .cons-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.game-card:hover, .support-card:hover {
  border-color: var(--border-red);
  box-shadow: var(--shadow-card);
}

.game-card__icon, .support-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.game-card__title, .support-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}

.game-card__text, .support-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.pros-card {
  border-left: 3px solid var(--green);
}

.cons-card {
  border-left: 3px solid var(--gold);
}

.pros-card h3, .cons-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.pros-card ul, .cons-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.pros-card ul li { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 7px; }
.cons-card ul li { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 7px; }

.mid-banner {
  background: linear-gradient(100deg, #1A0508 0%, #230A0F 50%, #1A0508 100%);
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border-red);
  padding: 48px 0;
}

.mid-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.mid-banner-pre {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 8px;
}

.mid-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  font-weight: normal;
  margin-bottom: 8px;
}

.mid-banner-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.faq-section {
  background: var(--dark);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.faq-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--white);
  text-align: center;
  font-weight: normal;
  margin-bottom: 10px;
}

.faq-section__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  position: relative;
}

.faq-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--dark-2);
  color: var(--white);
  font-weight: 600;
  font-size: 0.96rem;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.15s, border-color 0.15s;
  user-select: none;
  line-height: 1.4;
}

.faq-question:hover {
  background: var(--dark-3);
  border-color: var(--border-red);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--red);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.faq-answer p {
  padding: 18px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 100%;
  margin-bottom: 0;
}

.faq-toggle:checked ~ .faq-question {
  background: var(--dark-3);
  border-color: var(--border-red);
  border-radius: var(--radius) var(--radius) 0 0;
}

.faq-toggle:checked ~ .faq-question .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 600px;
}

.bottom-cta-section {
  background: linear-gradient(135deg, #E8001A 0%, #B8001A 100%);
  padding: 56px 0;
}

.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.bottom-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: #fff;
  font-weight: normal;
  margin-bottom: 8px;
}

.bottom-cta-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

.bottom-cta-section .btn--primary {
  background: #fff;
  color: var(--red);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.bottom-cta-section .btn--primary:hover {
  background: #F0EDE8;
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(0,0,0,0.35);
}

.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo { display: flex; align-items: center; gap: 8px; }

.footer-disclaimer {
  max-width: 760px;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-disclaimer p:last-child { margin-bottom: 0; }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.badge-pill {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-copy {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 12px; align-items: flex-start; }

  .nav { gap: 16px; }

  .nav a { font-size: 0.82rem; }

  .hero-inner { flex-direction: column; align-items: flex-start; }

  .hero-badge { align-self: flex-start; }

  .cards-row { grid-template-columns: 1fr; }

  .mid-banner-inner { flex-direction: column; align-items: flex-start; }

  .bottom-cta-inner { flex-direction: column; align-items: flex-start; }

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

  .article h1.article__h1 { font-size: 2rem; }

  .quick-facts { padding: 20px; }

  .btn--xl { width: 100%; }
}

@media (max-width: 480px) {
  .facts-grid { grid-template-columns: 1fr; }

  .hero-title { font-size: 1.8rem; }

  .mid-banner-title { font-size: 1.4rem; }

  .faq-question { font-size: 0.9rem; padding: 15px 16px; }

  .btn--lg { padding: 13px 24px; font-size: 0.9rem; }

  .container { padding: 0 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
