/* RxCasino Canada - Global Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --dark: #0A0A0A;
  --dark2: #111111;
  --dark3: #1A1A1A;
  --dark4: #222222;
  --gold: #C9A22A;
  --gold-lt: #D4AC0D;
  --gold-dk: #A8841A;
  --green: #00C853;
  --green-dk: #009624;
  --green-lt: #69F0AE;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-lt: #CCCCCC;
  --border: rgba(201, 162, 42, 0.2);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font2: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0, 200, 83, 0.15);
  --trans: all 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: var(--trans);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font2);
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-lt);
}

ul,
ol {
  margin: 0 0 1rem 1.5rem;
  color: var(--gray-lt);
}

li {
  margin-bottom: 0.4rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-sm {
  padding: 2.5rem 0;
}

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font2);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--black);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 42, 0.4);
  color: var(--black);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  color: var(--white);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* -- Header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo svg {
  width: 140px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-lt);
  transition: var(--trans);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green);
  background: rgba(0, 200, 83, 0.1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn-header-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font2);
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.btn-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
  color: var(--white);
}

.btn-login {
  border: 1px solid var(--border);
  color: var(--gray-lt);
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  transition: var(--trans);
  text-decoration: none;
}

.btn-login:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* -- Hamburger -- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  padding: 1.5rem;
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  border-radius: var(--radius);
  border-bottom: 1px solid var(--dark3);
  display: block;
}

.mobile-nav .mobile-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* -- Topbar -- */
.topbar {
  background: var(--dark2);
  border-bottom: 1px solid var(--dark3);
  padding: 0.3rem 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray);
}

/* -- Hero -- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000 55%, #0A1A0A 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 40%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.05rem;
  color: var(--gray-lt);
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font2);
}

.hero-stat-lbl {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* -- Rating Box -- */
.rating-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  margin-bottom: 1.25rem;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
}

.rating-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font2);
}

.rating-label {
  font-size: 0.8rem;
  color: var(--gray);
}

/* -- Cards & Grids -- */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--trans);
}

.card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.card-title {
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* -- Article + Aside layout -- */
.article-aside-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* -- Bonus Hero Card -- */
.bonus-hero {
  background: linear-gradient(135deg, #0A0800, #1A1000);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 42, 0.15), transparent);
}

.bonus-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font2);
}

.bonus-sub {
  font-size: 1.1rem;
  color: var(--gray-lt);
  margin-bottom: 1.5rem;
}

.bonus-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.bonus-tag {
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(0, 200, 83, 0.12);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: var(--green);
  font-weight: 600;
}

/* -- Bonus Steps -- */
.bonus-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bonus-step {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.bonus-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--black);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.bonus-step-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font2);
}

.bonus-step-desc {
  color: var(--gray);
  font-size: 0.85rem;
}

/* -- Tables -- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

th {
  background: linear-gradient(90deg, #0A0800, #111100);
  border-bottom: 2px solid var(--gold);
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 700;
}

td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--gray-lt);
  vertical-align: middle;
}

tr:hover td {
  background: rgba(0, 200, 83, 0.04);
}

.tbl-check {
  color: var(--green);
  font-size: 1.1rem;
}

.tbl-x {
  color: #ff5252;
}

.tbl-highlight {
  color: var(--gold);
  font-weight: 700;
}

.tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}

/* -- Chart bars -- */
.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.chart-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chart-label {
  width: 140px;
  font-size: 0.85rem;
  color: var(--gray-lt);
  flex-shrink: 0;
}

.chart-bar-wrap {
  flex: 1;
  background: var(--dark3);
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

.chart-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-dk), var(--green));
}

.chart-val {
  width: 50px;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

/* -- Ring chart -- */
.ring-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ring {
  position: relative;
  width: 120px;
  height: 120px;
}

.ring svg {
  transform: rotate(-90deg);
}

.ring-track {
  fill: none;
  stroke: var(--dark4);
  stroke-width: 8;
}

.ring-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.ring-green .ring-fill {
  stroke: var(--green);
}

.ring-gold .ring-fill {
  stroke: var(--gold);
}

.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-pct {
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font2);
  color: var(--white);
}

.ring-name {
  font-size: 0.65rem;
  color: var(--gray);
  text-align: center;
}

/* -- Page Banner -- */
.page-banner {
  position: relative;
  overflow: hidden;
  height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 0;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 40%, rgba(0, 0, 0, 0.5) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-heading {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  font-family: var(--font2);
}

.page-heading span {
  color: var(--gold);
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--gray);
}

.breadcrumb a:hover {
  color: var(--green);
}

/* -- Quick links -- */
.quick-links {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
}

.quick-links::-webkit-scrollbar {
  display: none;
}

.ql-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 72px;
  padding: 0.6rem 0.5rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.72rem;
  color: var(--gray-lt);
  text-align: center;
  transition: var(--trans);
  text-decoration: none;
}

.ql-item:hover {
  border-color: var(--green);
  color: var(--green);
}

.ql-icon {
  font-size: 1.3rem;
}

/* -- Scorecard -- */
.scorecard {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.scorecard-left {
  background: linear-gradient(180deg, #0A0800, #0A1A0A);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.score-big {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font2);
}

.score-out {
  font-size: 1rem;
  color: var(--gray);
}

.score-cats {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.score-cat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.score-cat-name {
  width: 160px;
  font-size: 0.88rem;
  color: var(--gray-lt);
}

.score-cat-bar {
  flex: 1;
  background: var(--dark4);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.score-cat-fill {
  height: 100%;
  border-radius: 999px;
}

.fill-gold {
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
}

.fill-green {
  background: linear-gradient(90deg, var(--green-dk), var(--green));
}

.score-cat-num {
  width: 36px;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

/* -- Pros/Cons -- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.pros-box,
.cons-box {
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pros-box {
  background: rgba(0, 200, 83, 0.06);
  border: 1px solid rgba(0, 200, 83, 0.2);
}

.cons-box {
  background: rgba(255, 82, 82, 0.05);
  border: 1px solid rgba(255, 82, 82, 0.2);
}

.box-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.pros-box .box-title {
  color: var(--green);
}

.cons-box .box-title {
  color: #ff5252;
}

.pros-list,
.cons-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros-list li::before {
  content: "\2713  ";
  color: var(--green);
  font-weight: 700;
}

.cons-list li::before {
  content: "\2717  ";
  color: #ff5252;
  font-weight: 700;
}

.pros-list li,
.cons-list li {
  font-size: 0.88rem;
  padding: 0.3rem 0;
  color: var(--gray-lt);
}

/* -- FAQ -- */
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font2);
}

.faq-question:hover {
  color: var(--green);
}

.faq-chevron {
  color: var(--gold);
  transition: var(--trans);
  font-size: 1.2rem;
}

.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--gray-lt);
  font-size: 0.95rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

/* -- Section titles -- */
.section-title {
  margin-bottom: 0.5rem;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  color: var(--gray);
  font-size: 0.98rem;
  margin-bottom: 2.5rem;
}

.gold-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: 999px;
  margin: 0.75rem 0 1.5rem;
}

/* -- Author card -- */
.author-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.author-name {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.author-role {
  color: var(--green);
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.author-bio {
  color: var(--gray);
  font-size: 0.88rem;
  margin: 0;
}

/* -- Provider grid -- */
.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}

.provider-tag {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
  color: var(--gray-lt);
}

.provider-tag:hover {
  border-color: var(--green);
  color: var(--green);
}

/* -- Payment grid -- */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.pay-item {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  color: var(--gray-lt);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* -- Footer -- */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.88rem;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--gray);
  font-size: 0.88rem;
}

.footer-col ul li a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-19 {
  background: rgba(201, 162, 42, 0.1);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 1.5rem;
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

/* -- Affiliate notice -- */
.aff-notice {
  background: rgba(0, 200, 83, 0.05);
  border: 1px solid rgba(0, 200, 83, 0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  margin: 1rem 0;
}

/* -- Related nav -- */
.related-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--gray-lt);
  transition: var(--trans);
  text-decoration: none;
}

.related-link:hover {
  border-color: var(--green);
  color: var(--green);
}

.related-icon {
  font-size: 0.9rem;
}

/* ==========================================================
   RESPONSIVE - MOBILE FIRST
   ========================================================== */

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .scorecard {
    grid-template-columns: 1fr;
  }

  .scorecard-left {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: center;
    text-align: left;
  }

  .article-aside-grid {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .article-aside-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .scorecard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  /* Header */
  .nav-menu {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .header-inner {
    height: 60px;
    gap: 0.5rem;
  }

  .logo svg {
    width: 100px;
  }

  .btn-login {
    display: none !important;
  }

  .btn-header-cta {
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem;
  }

  .header-cta {
    gap: 0.3rem;
  }

  /* Hero */
  .hero {
    min-height: 380px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* Grids */
  .cards-grid-2,
  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .bonus-steps {
    grid-template-columns: 1fr;
  }

  .article-aside-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Scorecard */
  .scorecard {
    grid-template-columns: 1fr;
  }

  .scorecard-left {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
  }

  .score-big {
    font-size: 3rem;
  }

  /* Tables */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .chart-label {
    width: 100px;
    font-size: 0.78rem;
  }

  /* Author */
  .author-card {
    flex-direction: column;
  }

  .author-img {
    width: 64px;
    height: 64px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-banner {
    height: 220px;
  }

  /* Sections */
  .section {
    padding: 2.5rem 0;
  }

  .section-sm {
    padding: 1.75rem 0;
  }

  .topbar {
    display: none;
  }

  /* Inline grids via attribute selectors */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="280px 1fr"],
  div[style*="grid-template-columns:1fr 380px"],
  div[style*="grid-template-columns:1fr 300px"] {
    display: block !important;
  }

  div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .bonus-amount {
    font-size: 2.5rem;
  }

  .bonus-hero {
    padding: 1.5rem;
  }

  .page-banner {
    height: 180px;
  }

  .page-heading {
    font-size: 1.6rem;
  }

  .author-card {
    align-items: center;
    text-align: center;
  }

  .author-bio {
    text-align: left;
  }

  .score-cat-name {
    width: 110px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .logo svg {
    width: 80px;
  }

  .btn-header-cta {
    padding: 0.4rem 0.65rem;
    font-size: 0.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .ring-grid {
    gap: 1rem;
  }

  .ring {
    width: 96px;
    height: 96px;
  }

  .pros-box,
  .cons-box {
    padding: 1rem;
  }

  div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }

  div[style*="margin-top:2rem;display:grid"],
  div[style*="margin-top:1.5rem;display:grid"] {
    display: block !important;
  }
}