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

:root {
  --navy: #0A0E1A;
  --navy-mid: #141929;
  --navy-card: #1A2035;
  --gold: #FFB800;
  --gold-dark: #D99E00;
  --crimson: #C0392B;
  --cream: #F5F0E8;
  --muted: #8A8FA8;
  --border: #252D47;
  --white: #FFFFFF;
  --radius: 10px;
  --radius-sm: 6px;
  --transition: 0.22s ease;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--white);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--border);
  color: var(--gold);
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  margin-top: 1.6rem;
  color: var(--cream);
}

h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.1rem;
  color: #C8C3B8;
}

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

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.35);
  white-space: nowrap;
}

.btn-cta:hover,
.btn-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 184, 0, 0.5);
  outline: none;
}

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

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

.btn-cta--large {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.sticky-bonus-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--crimson) 0%, #8B0000 100%);
  border-bottom: 2px solid rgba(255, 184, 0, 0.4);
}

.bonus-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bonus-bar-text {
  font-size: 0.88rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bonus-chip {
  font-size: 1.1rem;
}

.bonus-highlight {
  color: var(--gold);
  font-weight: 700;
}

.site-header {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-text em {
  font-style: normal;
  color: var(--gold);
}

.header-badge {
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: 20px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '♠ ♥ ♣ ♦';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  letter-spacing: 1.5rem;
  color: rgba(255, 184, 0, 0.06);
  white-space: nowrap;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 20px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.hero-score-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 700px;
  margin: 0 auto 2.2rem;
  overflow: hidden;
  flex-wrap: wrap;
}

.score-cell {
  flex: 1;
  min-width: 120px;
  padding: 16px 12px;
  text-align: center;
}

.score-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.score-denom {
  font-size: 1rem;
  color: var(--muted);
}

.score-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  font-weight: 600;
}

.score-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}

.hero-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0;
}

.content-section {
  padding: 50px 0;
}

.content-section .container h2:first-of-type {
  margin-top: 0;
  border-top: none;
}

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

.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 420px;
}

.styled-table thead {
  background: rgba(255, 184, 0, 0.1);
}

.styled-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.styled-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: #C8C3B8;
  vertical-align: middle;
}

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

.styled-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.bonus-banner {
  background: linear-gradient(135deg, #1A2035 0%, #0F1525 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 36px 0;
}

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

.bonus-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.bonus-banner-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.cards-section {
  padding: 50px 0;
  background: var(--navy-mid);
}

.cards-section h2 {
  border-top: none;
  margin-top: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 1.6rem;
}

.info-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.info-card:hover {
  border-color: rgba(255, 184, 0, 0.4);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.info-card h3 {
  margin-top: 0;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.faq-section {
  padding: 50px 0;
}

.faq-section h2 {
  border-top: none;
  margin-top: 0;
}

.faq-list {
  margin-top: 1.5rem;
}

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

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  cursor: pointer;
  font-weight: 700;
  color: var(--cream);
  font-size: 0.97rem;
  gap: 16px;
  transition: color var(--transition);
  user-select: none;
}

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

.faq-icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition), background var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 4px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted);
  padding-bottom: 16px;
  margin-bottom: 0;
}

.faq-toggle:checked + .faq-question .faq-icon {
  background: var(--gold);
  transform: rotate(45deg);
}

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

.final-section {
  padding: 60px 0;
  background: var(--navy-mid);
}

.final-section h2 {
  border-top: none;
  margin-top: 0;
}

.final-cta-block {
  text-align: center;
  margin-top: 2.5rem;
  padding: 40px 30px;
  background: linear-gradient(135deg, #141929 0%, #0A0E1A 100%);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: var(--radius);
}

.cta-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 10px;
  margin-bottom: 0;
}

.footer-info p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-age {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold) !important;
  margin-top: 8px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #4A5068;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .hero-score-strip {
    max-width: 100%;
  }

  .score-cell {
    min-width: 90px;
    padding: 12px 8px;
  }

  .score-num {
    font-size: 1.25rem;
  }

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

  .bonus-banner-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .bonus-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  h2 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 40px 0 36px;
  }

  .content-section {
    padding: 36px 0;
  }

  .btn-cta--large {
    width: 100%;
    padding: 16px 24px;
  }
}

@media (max-width: 420px) {
  .score-divider {
    display: none;
  }

  .hero-score-strip {
    flex-wrap: wrap;
  }

  .score-cell {
    min-width: 50%;
    flex: 0 0 50%;
    border-bottom: 1px solid var(--border);
  }

  .score-cell:nth-child(n+5) {
    border-bottom: none;
  }
}

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