:root {
  --ruby: #9B1C2E;
  --ruby-dark: #6B0F1E;
  --ruby-deep: #3D0810;
  --ruby-glow: #C8283F;
  --gold: #C8A84B;
  --gold-light: #E8C96A;
  --gold-pale: #F5E8C0;
  --cream: #FAF6EE;
  --charcoal: #1A1A1A;
  --mid-gray: #4A4A4A;
  --light-gray: #E8E4DC;
  --white: #FFFFFF;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', monospace;
  --max-width: 1100px;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.14);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
}

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

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

img { display: none; }

.site-header {
  background: var(--ruby-deep);
  border-bottom: 3px solid var(--gold);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.logo-gem {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--gold-pale);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-badge {
  background: var(--gold);
  color: var(--ruby-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bonus-banner {
  background: linear-gradient(135deg, var(--ruby-dark) 0%, var(--ruby-deep) 40%, #1a0408 100%);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200,168,75,0.08) 0%, transparent 65%);
  pointer-events: none;
}

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

.bonus-banner-content {
  flex: 1;
  min-width: 220px;
}

.bonus-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.bonus-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}

.bonus-headline strong {
  color: var(--gold-light);
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.bonus-sub {
  margin-top: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
}

.bonus-meta {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.bonus-chip {
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.bonus-banner-cta {
  flex-shrink: 0;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--ruby-deep);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(200,168,75,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,168,75,0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}

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

.cta-btn.secondary {
  background: linear-gradient(135deg, var(--ruby) 0%, var(--ruby-glow) 50%, var(--ruby) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(155,28,46,0.45);
}

.cta-btn.secondary:hover {
  box-shadow: 0 8px 28px rgba(155,28,46,0.6);
}

.cta-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-top: 6px;
}

.rating-bar {
  background: var(--ruby-deep);
  border-bottom: 2px solid rgba(200,168,75,0.3);
  padding: 12px 0;
}

.rating-bar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.82rem;
}

.rating-icon {
  font-size: 1rem;
}

.rating-score {
  color: var(--gold-light);
  font-weight: 700;
}

.main-content {
  padding: 48px 0 64px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ruby-dark);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 12px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--ruby-dark);
  font-weight: 700;
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-gray);
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--charcoal);
  font-weight: 700;
  margin: 28px 0 10px;
}

p {
  margin-bottom: 18px;
  color: var(--mid-gray);
  font-size: 0.97rem;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 14px 0 20px 22px;
  color: var(--mid-gray);
  font-size: 0.97rem;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.intro-block {
  background: var(--white);
  border-left: 5px solid var(--ruby);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 28px 0 36px;
  box-shadow: var(--shadow-sm);
}

.intro-block p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
}

.score-overview {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin: 36px 0;
  border: 1px solid var(--light-gray);
}

.score-overview-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ruby-dark);
  margin-bottom: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.score-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.score-label {
  font-size: 0.8rem;
  color: var(--mid-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.score-track {
  background: var(--light-gray);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ruby) 0%, var(--ruby-glow) 100%);
  border-radius: 4px;
  position: relative;
}

.score-fill.gold {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.score-value {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ruby-dark);
}

.overall-score {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--ruby-deep) 0%, var(--ruby-dark) 100%);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.overall-label {
  color: var(--gold-pale);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.overall-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.overall-number sup {
  font-size: 1rem;
  vertical-align: super;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

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

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ruby-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.card-badge {
  display: inline-block;
  background: var(--ruby);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-badge.gold {
  background: var(--gold);
  color: var(--ruby-deep);
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}

.info-table th {
  background: var(--ruby-dark);
  color: var(--gold-light);
  padding: 13px 16px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--mid-gray);
  vertical-align: top;
}

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

.info-table tr:nth-child(even) td {
  background: rgba(200,168,75,0.04);
}

.info-table .check {
  color: #2E7D32;
  font-weight: 700;
}

.info-table .x {
  color: var(--ruby);
  font-weight: 700;
}

.highlight-box {
  background: linear-gradient(135deg, var(--ruby-deep) 0%, var(--ruby-dark) 100%);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 36px 0;
  color: var(--white);
  border: 1px solid rgba(200,168,75,0.2);
  position: relative;
  overflow: hidden;
}

.highlight-box::after {
  content: '♦';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  color: rgba(200,168,75,0.07);
  line-height: 1;
  pointer-events: none;
}

.highlight-box h3 {
  color: var(--gold-light);
  margin-top: 0;
  margin-bottom: 14px;
}

.highlight-box p {
  color: rgba(255,255,255,0.85);
  font-size: 0.93rem;
  margin-bottom: 12px;
}

.highlight-box ul {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.pros, .cons {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
}

.pros {
  border-top: 4px solid #2E7D32;
}

.cons {
  border-top: 4px solid var(--ruby);
}

.pros h3, .cons h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.pros h3 { color: #2E7D32; }
.cons h3 { color: var(--ruby); }

.pros ul, .cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
}

.pros li::before {
  content: '✓ ';
  color: #2E7D32;
  font-weight: 700;
}

.cons li::before {
  content: '— ';
  color: var(--ruby);
  font-weight: 700;
}

.banner-mid {
  background: linear-gradient(135deg, #1a0408 0%, var(--ruby-dark) 50%, #1a0408 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 36px 0;
  margin: 56px 0;
  text-align: center;
}

.banner-mid-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.banner-mid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--white);
  border: none;
  margin: 0;
  padding: 0;
}

.banner-mid h2::after { display: none; }

.banner-mid h2 strong {
  color: var(--gold-light);
}

.banner-mid-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.bonus-steps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 6px 0;
}

.step-chip {
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-chip::before {
  content: attr(data-num);
  background: var(--gold);
  color: var(--ruby-deep);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-section {
  margin: 56px 0;
}

.faq-section h2 {
  margin-bottom: 24px;
}

.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  gap: 12px;
  transition: background 0.15s;
  user-select: none;
}

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

.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--ruby);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: transform 0.25s, background 0.15s;
  line-height: 1;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-body-inner {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  border-top: 1px solid var(--light-gray);
  padding-top: 16px;
}

.faq-toggle:checked + .faq-label {
  background: var(--gold-pale);
  color: var(--ruby-dark);
}

.faq-toggle:checked + .faq-label .faq-arrow {
  transform: rotate(180deg);
  background: var(--gold);
  color: var(--ruby-deep);
}

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

.site-footer {
  background: var(--ruby-deep);
  border-top: 3px solid var(--gold);
  padding: 40px 0 28px;
  color: rgba(255,255,255,0.6);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.83rem;
  line-height: 1.65;
}

.footer-col-title {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.83rem;
}

.footer-list li {
  margin-bottom: 7px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}

.responsible-badges {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.rb-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.age-gate {
  background: var(--ruby-glow);
  color: var(--white);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 4px;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 40px 0;
}

.text-ruby { color: var(--ruby); font-weight: 700; }
.text-gold { color: var(--gold); font-weight: 700; }

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .header-badge { font-size: 0.65rem; padding: 4px 10px; }
  .bonus-banner-inner { flex-direction: column; text-align: center; }
  .bonus-meta { justify-content: center; }
  .bonus-banner-cta { width: 100%; text-align: center; }
  .cta-btn { width: 100%; display: block; }
  .score-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .rating-bar-inner { gap: 14px; }
}

@media (max-width: 480px) {
  .logo-text { font-size: 1.1rem; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  .bonus-headline { font-size: 1.3rem; }
  .bonus-headline strong { font-size: 1.7rem; }
  .cta-btn { font-size: 0.92rem; padding: 14px 24px; }
  .intro-block { padding: 18px 18px; }
  .highlight-box { padding: 22px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-btn, .card, .faq-body, .faq-arrow { transition: none; }
}
