/* =============================================================
   Mr-bet-online.ca — Main Stylesheet
   Brand Colors (from mr.bet official logo SVG):
   --navy-dark:  #192633  (page background / darkest)
   --navy:       #2D4359  (component bg / logo fill)
   --navy-mid:   #334E66  (header / card bg)
   --navy-light: #46698C  (accent bg / bars)
   --silver:     #E6ECF3  (body text on dark)
   --gold:       #F2CA91  (primary accent / CTA warm)
   --gold-deep:  #C19A5B  (hover / dark gold)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Bebas+Neue&display=swap');

:root {
   --navy-dark: #192633;
   --navy: #2D4359;
   --navy-mid: #334E66;
   --navy-light: #46698C;
   --navy-hover: #3a5a7a;
   --silver: #E6ECF3;
   --silver-dim: #a8b4c2;
   --text: #d4dde8;
   --text-muted: #8b9ab0;
   --text-dim: #5a6d82;
   --gold: #F2CA91;
   --gold-deep: #d4a045;
   --gold-glow: #e8b85a;
   --red: #e05555;
   --green: #4ecb8b;
   --bg: #192633;
   --surface: #22364a;
   --surface-2: #1d2f42;
   --border: rgba(240, 202, 145, 0.15);
   --border-2: rgba(255, 255, 255, 0.06);
   --radius: 14px;
   --radius-sm: 8px;
   --shadow: 0 6px 40px rgba(0, 0, 0, 0.5);
   --shadow-gold: 0 4px 30px rgba(242, 202, 145, 0.2);
   --tr: 0.22s ease;
   --container: 1200px;
   --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
   --font-h: 'Bebas Neue', 'Montserrat', sans-serif;
}

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

html {
   scroll-behavior: smooth;
   -webkit-text-size-adjust: 100%;
}

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

img {
   max-width: 100%;
   height: auto;
   display: block;
}

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

a:hover {
   color: #fff;
}

ul,
ol {
   list-style: none;
}

/* Skip link */
.skip-link {
   position: absolute;
   top: -999px;
   left: 0;
   background: var(--gold);
   color: var(--navy-dark);
   padding: 0.5rem 1rem;
   z-index: 99999;
   border-radius: 0 0 var(--radius-sm) 0;
   font-weight: 700;
}

.skip-link:focus {
   top: 0;
}

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

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
   position: sticky;
   top: 0;
   z-index: 1000;
   background: rgba(25, 38, 51, 0.97);
   backdrop-filter: blur(16px);
   border-bottom: 1px solid rgba(242, 202, 145, 0.15);
}

.header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 70px;
   gap: 1rem;
}

.logo {
   display: flex;
   align-items: center;
   flex-shrink: 0;
}

.logo img {
   height: 38px;
   width: auto;
}

.main-nav {
   display: flex;
   align-items: center;
   gap: 0.1rem;
}

.nav-link {
   display: inline-flex;
   align-items: center;
   padding: 0.45rem 0.85rem;
   border-radius: var(--radius-sm);
   font-size: 0.84rem;
   font-weight: 600;
   color: var(--silver-dim);
   transition: all var(--tr);
   white-space: nowrap;
   letter-spacing: 0.02em;
}

.nav-link:hover {
   background: rgba(242, 202, 145, 0.1);
   color: var(--gold);
}

.nav-link.active {
   background: rgba(242, 202, 145, 0.12);
   color: var(--gold);
}

.btn-header {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
   color: var(--navy-dark);
   font-weight: 800;
   font-size: 0.875rem;
   padding: 0.6rem 1.35rem;
   border-radius: 50px;
   border: none;
   cursor: pointer;
   transition: all var(--tr);
   white-space: nowrap;
   text-decoration: none;
   flex-shrink: 0;
   box-shadow: 0 0 24px rgba(242, 202, 145, 0.35);
   letter-spacing: 0.03em;
}

.btn-header:hover {
   transform: translateY(-2px);
   box-shadow: 0 0 36px rgba(242, 202, 145, 0.55);
   color: var(--navy-dark);
   background: linear-gradient(135deg, #f8d9a5 0%, var(--gold) 100%);
}

.hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   background: none;
   border: none;
   cursor: pointer;
   padding: 6px;
}

.hamburger span {
   display: block;
   width: 24px;
   height: 2px;
   background: var(--silver);
   border-radius: 2px;
   transition: all var(--tr);
}

.mobile-nav {
   display: none;
   position: absolute;
   top: 70px;
   left: 0;
   right: 0;
   background: var(--navy-dark);
   border-bottom: 1px solid rgba(242, 202, 145, 0.15);
   padding: 1rem 1.25rem;
   flex-direction: column;
   gap: 0.25rem;
   z-index: 999;
}

.mobile-nav.open {
   display: flex;
}

.mobile-nav .nav-link {
   font-size: 1rem;
   padding: 0.75rem 1rem;
}

.mobile-cta {
   margin-top: 0.75rem;
}

.mobile-cta .btn-header {
   width: 100%;
   justify-content: center;
   padding: 0.9rem 1.5rem;
   font-size: 1rem;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   padding: 0.85rem 2rem;
   border-radius: 50px;
   font-weight: 700;
   font-size: 0.95rem;
   cursor: pointer;
   border: none;
   transition: all var(--tr);
   text-decoration: none;
   letter-spacing: 0.03em;
}

.btn-gold {
   background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
   color: var(--navy-dark);
   box-shadow: 0 0 24px rgba(242, 202, 145, 0.4);
}

.btn-gold:hover {
   transform: translateY(-2px);
   box-shadow: 0 0 40px rgba(242, 202, 145, 0.6);
   color: var(--navy-dark);
}

.btn-outline {
   background: transparent;
   border: 2px solid rgba(242, 202, 145, 0.45);
   color: var(--gold);
}

.btn-outline:hover {
   background: rgba(242, 202, 145, 0.1);
   border-color: var(--gold);
   color: #fff;
}

.btn-lg {
   padding: 1.1rem 2.5rem;
   font-size: 1.05rem;
}

/* =============================================================
   HERO — Homepage
   ============================================================= */
.hero {
   position: relative;
   overflow: hidden;
   min-height: 560px;
   display: flex;
   align-items: center;
}

.hero-bg {
   position: absolute;
   inset: 0;
   z-index: 0;
}

.hero-bg img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center top;
}

.hero-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, rgba(25, 38, 51, 0.93) 0%, rgba(25, 38, 51, 0.75) 55%, rgba(25, 38, 51, 0.35) 100%);
   z-index: 1;
}

.hero-overlay::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 120px;
   background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
}

.hero-content {
   position: relative;
   z-index: 2;
   padding: 5rem 0;
   max-width: 620px;
}

.hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   background: rgba(242, 202, 145, 0.12);
   border: 1px solid rgba(242, 202, 145, 0.35);
   color: var(--gold);
   font-size: 0.75rem;
   font-weight: 700;
   padding: 0.3rem 1rem;
   border-radius: 50px;
   margin-bottom: 1.25rem;
   text-transform: uppercase;
   letter-spacing: 0.08em;
}

.hero h1 {
   font-family: var(--font-h);
   font-size: clamp(2.5rem, 5.5vw, 4.5rem);
   font-weight: 400;
   line-height: 1.05;
   color: #fff;
   margin-bottom: 1.25rem;
   letter-spacing: 0.04em;
   text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero h1 em {
   font-style: normal;
   color: var(--gold);
}

.hero-lead {
   font-size: 1.05rem;
   color: var(--silver-dim);
   margin-bottom: 2rem;
   max-width: 500px;
   line-height: 1.75;
}

.hero-ctas {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   margin-bottom: 2.5rem;
}

.hero-stats {
   display: flex;
   gap: 2.5rem;
   flex-wrap: wrap;
}

.stat-num {
   font-family: var(--font-h);
   font-size: 2.25rem;
   font-weight: 400;
   color: var(--gold);
   line-height: 1;
   letter-spacing: 0.05em;
}

.stat-label {
   font-size: 0.75rem;
   color: var(--text-dim);
   margin-top: 0.2rem;
   font-weight: 500;
}

/* =============================================================
   PAGE HERO (inner pages)
   ============================================================= */
.page-hero {
   position: relative;
   overflow: hidden;
   padding: 3.5rem 0 3rem;
   background: linear-gradient(135deg, #111d28 0%, #1e3347 50%, #192633 100%);
   border-bottom: 1px solid rgba(242, 202, 145, 0.12);
}

.page-hero::before {
   content: '';
   position: absolute;
   inset: 0;
   background: radial-gradient(ellipse 60% 100% at 95% 50%, rgba(242, 202, 145, 0.08) 0%, transparent 70%);
   pointer-events: none;
}

.hero-img-wrap img {
   width: 100%;
   height: 240px;
   object-fit: cover;
   border-radius: var(--radius);
}

.page-hero h1 {
   font-family: var(--font-h);
   font-size: clamp(2rem, 4vw, 3.25rem);
   font-weight: 400;
   color: #fff;
   margin-bottom: 0.75rem;
   position: relative;
   z-index: 1;
   letter-spacing: 0.05em;
}

.page-hero h1 em {
   font-style: normal;
   color: var(--gold);
}

.page-hero-lead {
   font-size: 1rem;
   color: var(--text-muted);
   max-width: 640px;
   position: relative;
   z-index: 1;
}

.eyebrow {
   display: inline-block;
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: var(--gold);
   background: rgba(242, 202, 145, 0.1);
   border: 1px solid rgba(242, 202, 145, 0.25);
   padding: 0.25rem 0.875rem;
   border-radius: 50px;
   margin-bottom: 0.625rem;
}

.breadcrumb {
   display: flex;
   align-items: center;
   gap: 0.4rem;
   font-size: 0.8rem;
   color: var(--text-dim);
   padding-bottom: 0.875rem;
   position: relative;
   z-index: 1;
}

.breadcrumb a {
   color: var(--text-dim);
}

.breadcrumb a:hover {
   color: var(--gold);
}

.breadcrumb .sep {
   color: var(--text-dim);
}

.breadcrumb .current {
   color: var(--text-muted);
}

/* =============================================================
   SECTIONS
   ============================================================= */
.section {
   padding: 4.5rem 0;
}

.section-sm {
   padding: 2.5rem 0;
}

.section-dark {
   background: var(--surface);
}

.section-darker {
   background: var(--surface-2);
}

.section-title {
   text-align: center;
   margin-bottom: 3rem;
}

.section-title h2 {
   font-family: var(--font-h);
   font-size: clamp(1.75rem, 3.5vw, 2.75rem);
   font-weight: 400;
   color: #fff;
   margin-bottom: 0.625rem;
   letter-spacing: 0.04em;
}

.section-lead {
   font-size: 1rem;
   color: var(--text-muted);
   max-width: 600px;
   margin: 0.75rem auto 0;
   line-height: 1.8;
   text-align: center;
}

/* =============================================================
   TABLES
   ============================================================= */
.tbl-wrap {
   overflow-x: auto;
   border-radius: var(--radius);
   border: 1px solid rgba(242, 202, 145, 0.15);
}

.mb-table {
   width: 100%;
   border-collapse: collapse;
   font-size: 0.9rem;
}

.mb-table th {
   background: rgba(45, 67, 89, 0.7);
   color: var(--gold);
   font-weight: 700;
   text-align: left;
   padding: 0.9rem 1.15rem;
   border-bottom: 1px solid rgba(242, 202, 145, 0.15);
   font-size: 0.77rem;
   text-transform: uppercase;
   letter-spacing: 0.06em;
   white-space: nowrap;
}

.mb-table td {
   padding: 0.85rem 1.15rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.04);
   color: var(--text);
   vertical-align: middle;
}

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

.mb-table tbody tr:hover td {
   background: rgba(242, 202, 145, 0.04);
}

.mb-table td:first-child {
   font-weight: 600;
   color: var(--silver);
}

/* Badges */
.badge {
   display: inline-flex;
   align-items: center;
   padding: 0.22rem 0.7rem;
   border-radius: 50px;
   font-size: 0.74rem;
   font-weight: 600;
}

.badge-green {
   background: rgba(78, 203, 139, 0.12);
   color: var(--green);
}

.badge-gold {
   background: rgba(242, 202, 145, 0.12);
   color: var(--gold);
}

.badge-blue {
   background: rgba(70, 105, 140, 0.2);
   color: #8bbde0;
}

.badge-red {
   background: rgba(224, 85, 85, 0.12);
   color: var(--red);
}

.badge-gray {
   background: rgba(255, 255, 255, 0.06);
   color: var(--text-muted);
}

/* =============================================================
   CARDS
   ============================================================= */
.card-grid {
   display: grid;
   gap: 1.25rem;
}

.grid-2 {
   grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
   grid-template-columns: repeat(3, 1fr);
}

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

.card {
   background: var(--surface);
   border: 1px solid rgba(242, 202, 145, 0.1);
   border-radius: var(--radius);
   padding: 1.5rem;
   transition: all var(--tr);
}

.card:hover {
   border-color: rgba(242, 202, 145, 0.3);
   transform: translateY(-3px);
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(242, 202, 145, 0.1);
}

.card-icon {
   width: 50px;
   height: 50px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   margin-bottom: 1rem;
   background: rgba(242, 202, 145, 0.1);
}

.card h3 {
   font-size: 1rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: 0.4rem;
}

.card p {
   font-size: 0.875rem;
   color: var(--text-muted);
   line-height: 1.65;
}

.card-value {
   font-family: var(--font-h);
   font-size: 2rem;
   font-weight: 400;
   color: var(--gold);
   letter-spacing: 0.04em;
}

/* =============================================================
   BONUS BAND
   ============================================================= */
.bonus-band {
   background: linear-gradient(135deg, #1a2e42 0%, #243d57 100%);
   border: 1px solid rgba(242, 202, 145, 0.3);
   border-radius: var(--radius);
   padding: 2rem 2.5rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1.5rem;
   flex-wrap: wrap;
   box-shadow: 0 0 50px rgba(242, 202, 145, 0.08);
}

.bonus-pill {
   display: inline-flex;
   background: rgba(242, 202, 145, 0.12);
   border: 1px solid rgba(242, 202, 145, 0.3);
   color: var(--gold);
   font-size: 0.7rem;
   font-weight: 700;
   padding: 0.25rem 0.875rem;
   border-radius: 50px;
   text-transform: uppercase;
   letter-spacing: 0.07em;
   margin-bottom: 0.75rem;
}

.bonus-amount {
   font-family: var(--font-h);
   font-size: 3rem;
   font-weight: 400;
   color: var(--gold);
   line-height: 1;
   margin-bottom: 0.35rem;
   letter-spacing: 0.05em;
}

.bonus-sub {
   font-size: 0.875rem;
   color: var(--silver-dim);
}

/* =============================================================
   BAR CHART (CSS animated)
   ============================================================= */
.chart-box {
   background: var(--surface);
   border: 1px solid rgba(242, 202, 145, 0.1);
   border-radius: var(--radius);
   padding: 1.75rem;
}

.chart-title {
   font-weight: 700;
   font-size: 0.95rem;
   color: #fff;
   margin-bottom: 1.5rem;
   letter-spacing: 0.02em;
}

.bar-chart {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.bar-row {
   display: flex;
   flex-direction: column;
   gap: 0.35rem;
}

.bar-meta {
   display: flex;
   justify-content: space-between;
   font-size: 0.82rem;
}

.bar-label {
   color: var(--text-muted);
}

.bar-pct {
   font-weight: 700;
   color: var(--gold);
}

.bar-track {
   height: 10px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 99px;
   overflow: hidden;
}

.bar-fill {
   height: 100%;
   border-radius: 99px;
   width: 0;
   transition: width 1.1s ease;
}

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

.fill-navy {
   background: linear-gradient(90deg, var(--navy-light) 0%, #6da0c8 100%);
}

.fill-green {
   background: linear-gradient(90deg, #2d9e6a 0%, var(--green) 100%);
}

/* =============================================================
   DONUT / RING CHART (pure CSS)
   ============================================================= */
.ring-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 1.5rem;
}

.ring-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.75rem;
}

.ring-wrap {
   position: relative;
   width: 90px;
   height: 90px;
}

.ring-svg {
   transform: rotate(-90deg);
}

.ring-track {
   fill: none;
   stroke: rgba(255, 255, 255, 0.06);
   stroke-width: 8;
}

.ring-fill {
   fill: none;
   stroke-width: 8;
   stroke-linecap: round;
   stroke-dasharray: 226;
   stroke-dashoffset: 226;
   transition: stroke-dashoffset 1.2s ease;
}

.ring-fill-gold {
   stroke: var(--gold);
}

.ring-fill-green {
   stroke: var(--green);
}

.ring-fill-blue {
   stroke: #6da0c8;
}

.ring-label {
   position: absolute;
   inset: 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

.ring-val {
   font-family: var(--font-h);
   font-size: 1.2rem;
   color: #fff;
   letter-spacing: 0.03em;
}

.ring-name {
   font-size: 0.78rem;
   color: var(--text-muted);
   font-weight: 600;
   text-align: center;
   margin-top: 0.25rem;
}

/* =============================================================
   RATING CARD
   ============================================================= */
.rating-card {
   background: linear-gradient(145deg, var(--surface) 0%, #1a2d40 100%);
   border: 1px solid rgba(242, 202, 145, 0.2);
   border-radius: var(--radius);
   padding: 1.75rem;
}

.score-item {
   margin-bottom: 0.85rem;
}

.score-label-row {
   display: flex;
   justify-content: space-between;
   font-size: 0.82rem;
   margin-bottom: 0.3rem;
}

.score-name {
   color: var(--text-muted);
}

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

.score-track {
   height: 8px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 99px;
   overflow: hidden;
}

.score-fill {
   height: 100%;
   border-radius: 99px;
   background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 100%);
   width: 0;
   transition: width 1s ease;
}

/* =============================================================
   SEO ARTICLE CONTENT
   ============================================================= */
.seo-section {
   padding: 4rem 0;
}

.seo-article {
   max-width: 880px;
}

.seo-article h2 {
   font-family: var(--font-h);
   font-size: 1.8rem;
   font-weight: 400;
   color: #fff;
   margin: 2.25rem 0 0.875rem;
   border-left: 4px solid var(--gold);
   padding-left: 1rem;
   letter-spacing: 0.04em;
}

.seo-article h2:first-child {
   margin-top: 0;
}

.seo-article h3 {
   font-size: 1.05rem;
   font-weight: 700;
   color: var(--silver);
   margin: 1.5rem 0 0.5rem;
}

.seo-article p {
   color: var(--text-muted);
   margin-bottom: 1rem;
   line-height: 1.85;
}

.seo-article strong {
   color: var(--silver);
   font-weight: 600;
}

.seo-article ul {
   margin: 0.75rem 0 1rem 1rem;
   list-style: disc;
}

.seo-article li {
   color: var(--text-muted);
   margin-bottom: 0.35rem;
   line-height: 1.7;
}

.text-link {
   color: var(--gold);
   text-decoration: underline;
   text-decoration-color: rgba(242, 202, 145, 0.35);
   transition: all var(--tr);
}

.text-link:hover {
   text-decoration-color: var(--gold);
   color: #fff;
}

/* =============================================================
   PROS / CONS
   ============================================================= */
.pros-cons {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1.25rem;
}

.pros-box {
   background: rgba(78, 203, 139, 0.05);
   border: 1px solid rgba(78, 203, 139, 0.2);
   border-radius: var(--radius);
   padding: 1.5rem;
}

.cons-box {
   background: rgba(224, 85, 85, 0.05);
   border: 1px solid rgba(224, 85, 85, 0.18);
   border-radius: var(--radius);
   padding: 1.5rem;
}

.box-title {
   font-weight: 700;
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   margin-bottom: 1rem;
}

.pros-box .box-title {
   color: var(--green);
}

.cons-box .box-title {
   color: var(--red);
}

.pc-list {
   display: flex;
   flex-direction: column;
   gap: 0.55rem;
}

.pc-list li {
   display: flex;
   align-items: flex-start;
   gap: 0.5rem;
   font-size: 0.875rem;
   color: var(--text-muted);
}

.pc-list li span {
   flex-shrink: 0;
   width: 18px;
   height: 18px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 0.7rem;
   font-weight: 700;
   margin-top: 2px;
}

.pros-box .pc-list li span {
   background: rgba(78, 203, 139, 0.15);
   color: var(--green);
}

.cons-box .pc-list li span {
   background: rgba(224, 85, 85, 0.12);
   color: var(--red);
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-list {
   display: flex;
   flex-direction: column;
   gap: 0.625rem;
}

.faq-item {
   background: var(--surface);
   border: 1px solid rgba(242, 202, 145, 0.1);
   border-radius: var(--radius-sm);
   overflow: hidden;
   transition: border-color var(--tr);
}

.faq-item:has(.faq-q[aria-expanded="true"]) {
   border-color: rgba(242, 202, 145, 0.3);
}

.faq-q {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 1rem;
   padding: 1.1rem 1.25rem;
   background: none;
   border: none;
   color: #fff;
   font-size: 0.95rem;
   font-weight: 600;
   cursor: pointer;
   text-align: left;
   font-family: var(--font);
}

.faq-q:hover {
   background: rgba(242, 202, 145, 0.05);
}

.faq-icon {
   width: 22px;
   height: 22px;
   flex-shrink: 0;
   background: rgba(242, 202, 145, 0.12);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--gold);
   font-size: 1rem;
   font-weight: 700;
   transition: transform var(--tr), background var(--tr);
}

.faq-q[aria-expanded="true"] .faq-icon {
   transform: rotate(45deg);
   background: rgba(242, 202, 145, 0.25);
}

.faq-answer {
   display: none;
   padding: 0 1.25rem 1.1rem;
}

.faq-q[aria-expanded="true"]+.faq-answer {
   display: block;
}

.faq-answer p {
   color: var(--text-muted);
   font-size: 0.9rem;
   line-height: 1.75;
}

/* =============================================================
   AUTHOR
   ============================================================= */
.author-section {
   padding: 2.5rem 0;
   border-top: 1px solid rgba(242, 202, 145, 0.1);
   background: var(--surface-2);
}

.author-flex {
   display: flex;
   align-items: flex-start;
   gap: 1.5rem;
   flex-wrap: wrap;
}

.author-img {
   width: 88px;
   height: 88px;
   border-radius: 50%;
   object-fit: cover;
   flex-shrink: 0;
   border: 3px solid rgba(242, 202, 145, 0.45);
}

.author-name {
   font-family: var(--font-h);
   font-weight: 400;
   font-size: 1.2rem;
   color: #fff;
   margin-bottom: 0.2rem;
   letter-spacing: 0.04em;
}

.author-role {
   font-size: 0.8rem;
   color: var(--gold);
   margin-bottom: 0.5rem;
   font-weight: 600;
}

.author-bio {
   font-size: 0.875rem;
   color: var(--text-muted);
   line-height: 1.7;
   max-width: 560px;
}

/* =============================================================
   DISCLAIMER
   ============================================================= */
.disclaimer {
   background: rgba(242, 202, 145, 0.04);
   border: 1px solid rgba(242, 202, 145, 0.15);
   border-radius: var(--radius-sm);
   padding: 1rem 1.25rem;
   font-size: 0.78rem;
   color: var(--text-dim);
   line-height: 1.7;
}

.disclaimer strong {
   color: var(--gold);
}

/* =============================================================
   HIGHLIGHT BOX
   ============================================================= */
.highlight {
   background: rgba(242, 202, 145, 0.06);
   border: 1px solid rgba(242, 202, 145, 0.18);
   border-radius: var(--radius);
   padding: 1.25rem 1.5rem;
}

/* =============================================================
   PAYMENT CHIPS
   ============================================================= */
.pay-chips {
   display: flex;
   flex-wrap: wrap;
   gap: 0.625rem;
}

.pay-chip {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   background: var(--surface-2);
   border: 1px solid rgba(242, 202, 145, 0.1);
   border-radius: var(--radius-sm);
   padding: 0.4rem 0.875rem;
   font-size: 0.82rem;
   color: var(--text-muted);
   transition: all var(--tr);
}

.pay-chip:hover {
   border-color: rgba(242, 202, 145, 0.3);
   color: var(--silver);
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
   background: #0f1d2a;
   border-top: 1px solid rgba(242, 202, 145, 0.12);
   padding: 3.5rem 0 2rem;
}

.footer-top {
   display: grid;
   grid-template-columns: 260px 1fr;
   gap: 3rem;
   margin-bottom: 2.5rem;
}

.footer-logo img {
   height: 34px;
   width: auto;
}

.footer-desc {
   font-size: 0.85rem;
   color: var(--text-muted);
   margin-top: 0.875rem;
   line-height: 1.7;
}

.footer-nav {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
}

.footer-col h4 {
   font-size: 0.7rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.12em;
   color: var(--gold);
   margin-bottom: 1rem;
}

.footer-col a {
   display: block;
   font-size: 0.875rem;
   color: var(--text-muted);
   margin-bottom: 0.5rem;
   transition: color var(--tr);
}

.footer-col a:hover {
   color: var(--silver);
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.05);
   padding-top: 2rem;
}

.footer-legal {
   font-size: 0.76rem;
   color: var(--text-dim);
   line-height: 1.8;
   margin-bottom: 1rem;
}

.footer-badges {
   display: flex;
   gap: 0.625rem;
   flex-wrap: wrap;
}

.footer-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.3rem;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: var(--radius-sm);
   padding: 0.3rem 0.7rem;
   font-size: 0.72rem;
   color: var(--text-muted);
}

.age-badge {
   background: rgba(242, 202, 145, 0.08);
   border-color: rgba(242, 202, 145, 0.25);
   color: var(--gold);
   font-weight: 700;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

/* --- Utility: responsive grid helper --- */
.facts-grid {
   display: grid;
   grid-template-columns: 1fr 340px;
   gap: 2rem;
   align-items: start;
}

@media (max-width: 1024px) {
   .grid-4 {
      grid-template-columns: repeat(2, 1fr);
   }

   .footer-nav {
      grid-template-columns: repeat(2, 1fr);
   }

   .ring-grid {
      grid-template-columns: repeat(2, 1fr);
   }

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

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

@media (max-width: 768px) {

   /* Header */
   .main-nav {
      display: none;
   }

   .hamburger {
      display: flex;
   }

   .header-inner {
      height: 60px;
   }

   .logo img {
      height: 32px;
   }

   .btn-header {
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
   }

   /* Hero */
   .hero {
      min-height: 420px;
   }

   .hero-content {
      padding: 3rem 0;
   }

   .hero-ctas {
      flex-direction: column;
      gap: 0.75rem;
   }

   .hero-ctas .btn {
      width: 100%;
      justify-content: center;
   }

   .hero-stats {
      gap: 1.5rem;
   }

   /* Grids */
   .grid-3 {
      grid-template-columns: 1fr 1fr;
   }

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

   .pros-cons {
      grid-template-columns: 1fr;
   }

   .ring-grid {
      grid-template-columns: repeat(2, 1fr);
   }

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

   /* Bonus band */
   .bonus-band {
      flex-direction: column;
      padding: 1.5rem;
   }

   .bonus-band>div[style] {
      min-width: unset !important;
      width: 100%;
   }

   .bonus-band .btn {
      width: 100%;
      justify-content: center;
   }

   /* Footer */
   .footer-top {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .footer-nav {
      grid-template-columns: repeat(2, 1fr);
   }

   /* Section */
   .section {
      padding: 3rem 0;
   }

   .seo-section {
      padding: 2.5rem 0;
   }
}

@media (max-width: 600px) {

   /* Hero text */
   .hero h1 {
      font-size: clamp(2rem, 7vw, 2.5rem);
   }

   .hero-lead {
      font-size: 0.95rem;
   }

   .hero-stats {
      flex-wrap: wrap;
      gap: 1rem;
   }

   .hero-stats>div {
      flex: 1 1 calc(50% - 0.5rem);
   }

   /* Page hero inner */
   .page-hero {
      padding: 2.5rem 0 2rem;
   }

   .hero-img-wrap img {
      height: 180px;
   }

   /* Rating card full-width on mobile */
   .rating-card {
      padding: 1.25rem;
   }

   /* Tables: force scrollable */
   .tbl-wrap {
      border-radius: var(--radius-sm);
   }

   /* Sections */
   .section-title {
      margin-bottom: 2rem;
   }

   .section-title h2 {
      font-size: 1.75rem;
   }

   /* Author */
   .author-flex {
      flex-direction: column;
      align-items: center;
      text-align: center;
   }

   .author-bio {
      max-width: 100%;
   }

   /* Bonus band amount */
   .bonus-amount {
      font-size: 2.25rem;
   }
}

@media (max-width: 480px) {

   .grid-3,
   .grid-4 {
      grid-template-columns: 1fr;
   }

   .footer-nav {
      grid-template-columns: 1fr 1fr;
   }

   /* header tracker button on mobile */
   .btn-header span.hide-mobile {
      display: none;
   }

   /* Ring chart: 2 columns is fine on 480 */
   .ring-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
   }

   /* Pros/cons boxes padding */
   .pros-box,
   .cons-box {
      padding: 1rem;
   }

   /* Footer badges wrap */
   .footer-badges {
      gap: 0.4rem;
   }

   .footer-badge {
      font-size: 0.68rem;
      padding: 0.25rem 0.5rem;
   }
}
/* ==========================================================
   MOBILE RESPONSIVE v2 - COMPLETE FIX
   ========================================================== */

/* Grid helper class (replaces inline styles) */
.article-aside-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .article-aside-grid { grid-template-columns: 1fr 300px; }
  .three-col-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .article-aside-grid { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Header */
  .main-nav { display: none !important; }
  .hamburger { display: flex !important; }
  .header-inner { height: 60px !important; gap: 0.5rem; }
  .logo img { height: 30px !important; }
  .btn-header { padding: 0.4rem 0.8rem !important; font-size: 0.78rem !important; }

  /* Hero */
  .hero { min-height: 360px; }
  .hero-ctas { flex-direction: column; gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .pros-cons { grid-template-columns: 1fr !important; }
  .article-aside-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .two-col-grid { grid-template-columns: 1fr !important; }
  .three-col-grid { grid-template-columns: 1fr !important; }
  .facts-grid { grid-template-columns: 1fr !important; }

  /* Inline grids via attribute selectors */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
  }
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Bonus band */
  .bonus-band { flex-direction: column !important; padding: 1.5rem; }
  .bonus-band .btn { width: 100%; justify-content: center; }

  /* Tables */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr !important; }
  .footer-nav { grid-template-columns: repeat(2, 1fr) !important; }

  /* Sections */
  .section { padding: 2.5rem 0; }
  .seo-section { padding: 2rem 0; }
  .page-hero { padding: 2.5rem 0 2rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-stats > div { flex: 1 1 calc(50% - 0.5rem); }
  .section-title h2 { font-size: 1.75rem; }
  .author-flex { flex-direction: column; align-items: center; text-align: center; }
  .bonus-amount { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .logo img { height: 26px !important; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .footer-nav { grid-template-columns: 1fr 1fr !important; }
  .ring-grid { gap: 0.75rem; }
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:1fr 1fr"] { display: block !important; }
}

/* TABLE OVERFLOW FIX */
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; border-radius: 8px; }
@media (max-width: 768px) {
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
}

/* ================================================
   NUCLEAR MOBILE OVERRIDE - !important on all
   ================================================ */
@media screen and (max-width: 768px) {
  .two-col-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .three-col-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .article-aside-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .facts-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
  }
  .pros-cons {
    grid-template-columns: 1fr !important;
  }
  .bonus-steps {
    grid-template-columns: 1fr !important;
  }
  /* header */
  .main-nav { display: none !important; }
  .hamburger { display: flex !important; }
  /* Allow controlled overflow in tbl-wrap */
  .container { padding-left: 1rem !important; padding-right: 1rem !important; }
  /* inline grids */
  [style*="grid-template-columns:1fr 1fr"] { display: block !important; }
  [style*="grid-template-columns: 1fr 1fr"] { display: block !important; }
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
}
@media screen and (max-width: 900px) {
  .two-col-grid { grid-template-columns: 1fr !important; }
  .article-aside-grid { grid-template-columns: 1fr !important; }
}

/* =============================================
   FINAL TABLE MOBILE FIX - v3
   ============================================= */
@media (max-width: 768px) {
  /* tbl-wrap: horizontal scroll zone */
  .tbl-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 8px;
  }
  /* Compact table cells on mobile */
  .mb-table th,
  .mb-table td {
    font-size: 0.75rem !important;
    padding: 0.5rem 0.6rem !important;
    white-space: normal !important;
    min-width: 60px;
  }
  .mb-table th:first-child,
  .mb-table td:first-child {
    min-width: 90px;
    max-width: 110px;
  }
  /* General table */
  table {
    width: 100% !important;
    display: table !important;
  }
}
@media (max-width: 480px) {
  .mb-table th,
  .mb-table td {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.5rem !important;
  }
}
