/* =====================================================
   Jackpota-sweep.world — Main Stylesheet
   Brand: Deep Purple + Gold + White
   Theme: Jackpot Stars / Premium Social Casino
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@700;800&family=Inter:wght@400;500;600&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
    --purple: #7C3AED;
    --purple-light: #A78BFA;
    --purple-dark: #4C1D95;
    --purple-deep: #1E0A3C;
    --gold: #F59E0B;
    --gold-light: #FCD34D;
    --gold-dark: #B45309;
    --white: #FFFFFF;
    --off-white: #F8F6FF;
    --text: #E8E0FF;
    --muted: #9D8EC9;
    --card-bg: rgba(124, 58, 237, 0.08);
    --card-border: rgba(124, 58, 237, 0.2);
    --surface: #120428;
    --surface-2: #1A0535;
    --font-brand: 'Syne', sans-serif;
    --font-ui: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-w: 1200px;
    --r: 10px;
    --r-lg: 18px;
    --transition: 0.22s ease;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--purple-deep);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(ellipse at 10% 0%, rgba(124, 58, 237, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
}

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

a {
    color: inherit;
}

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    z-index: 9999;
    background: var(--gold);
    color: var(--purple-deep);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
}

.skip-link:focus {
    left: 1rem;
}

/* ─── TOP TICKER ─── */
.ticker {
    background: linear-gradient(90deg, var(--purple-dark), #2D0A6E, var(--purple-dark));
    border-bottom: 1px solid rgba(124, 58, 237, 0.4);
    padding: 0.4rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted);
    gap: 1rem;
    flex-wrap: wrap;
}

.ticker-badge {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--gold);
    padding: 0.18rem 0.65rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.ticker-badge.purple {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
    color: var(--purple-light);
}

/* ─── HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(30, 10, 60, 0.96);
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 32px rgba(124, 58, 237, 0.2);
}

.header-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0.65rem 1.5rem;
    gap: 1.25rem;
}

/* LOGO */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(245, 158, 11, 0.5);
}

.logo-text {
    font-family: var(--font-brand);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.01em;
}

.logo-text span {
    color: var(--gold);
}

.logo-sub {
    font-size: 0.56rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1px;
}

/* NAV */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.83rem;
    color: var(--muted);
    text-decoration: none;
    padding: 0.42rem 0.7rem;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: rgba(124, 58, 237, 0.25);
}

/* HEADER RIGHT */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

/* LOCALE */
.locale-wrap {
    position: relative;
}

.locale-btn {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.35);
    color: var(--muted);
    padding: 0.38rem 0.65rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.78rem;
    font-family: var(--font-ui);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.locale-btn:hover {
    border-color: var(--purple-light);
    color: var(--purple-light);
}

.locale-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--surface-2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 10px;
    padding: 0.35rem;
    min-width: 170px;
    z-index: 200;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}

.locale-dropdown.open {
    display: block;
}

.locale-dropdown a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 7px;
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: all var(--transition);
}

.locale-dropdown a:hover {
    background: rgba(124, 58, 237, 0.2);
    color: var(--white);
}

/* CTA BUTTON */
.btn-cta {
    background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
    color: var(--purple-deep);
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition);
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.35);
    font-family: var(--font-ui);
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.55);
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.4rem;
    flex-shrink: 0;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--purple-light);
    border-radius: 2px;
    transition: all var(--transition);
}

/* MOBILE NAV */
.mob-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(20, 5, 45, 0.99);
}

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

.mob-nav a {
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition);
    font-family: var(--font-ui);
}

.mob-nav a:hover {
    color: var(--white);
    background: rgba(124, 58, 237, 0.2);
}

.mob-nav .btn-cta {
    margin-top: 0.5rem;
    text-align: center;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.webp') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2.5rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--gold);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: var(--font-brand);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.1rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 0 28px rgba(124, 58, 237, 0.4);
    font-family: var(--font-ui);
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 44px rgba(124, 58, 237, 0.6);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(245, 158, 11, 0.45);
    color: var(--gold);
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    font-family: var(--font-ui);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.08);
}

/* HERO STATS ROW */
.stat-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    min-width: 60px;
}

.stat-val {
    font-family: var(--font-brand);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* HERO CARD  */
.hero-card {
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--r-lg);
    padding: 2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.15);
}

.hcard-title {
    font-family: var(--font-brand);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.hcard-bonus {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--r);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.hcard-val {
    font-family: var(--font-brand);
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 800;
    line-height: 1;
}

.hcard-sub {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.35rem;
}

.hcard-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.hcard-list li {
    font-size: 0.85rem;
    color: var(--text);
    padding-left: 1.4rem;
    position: relative;
}

.hcard-list li::before {
    content: '\2605';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 0.65rem;
    top: 3px;
}

.hcard-cta {
    display: block;
    text-align: center;
}

/* ─── SECTION THEMES ─── */
.sec {
    padding: 4.5rem 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

.sec-dark {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.06) 0%, transparent 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.12);
    border-bottom: 1px solid rgba(124, 58, 237, 0.12);
    padding: 4.5rem 1.5rem;
}

.sec-dark-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 0.5rem;
    font-family: var(--font-ui);
}

.sec-title {
    font-family: var(--font-brand);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.sec-title .g {
    color: var(--gold);
}

.sec-desc {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 620px;
    line-height: 1.7;
}

/* ─── TABLES ─── */
.tbl-box {
    overflow-x: auto;
    border-radius: var(--r);
    border: 1px solid var(--card-border);
    background: rgba(10, 2, 25, 0.4);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.87rem;
}

.data-table thead {
    background: rgba(124, 58, 237, 0.15);
}

.data-table th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--purple-light);
    border-bottom: 1px solid var(--card-border);
}

.data-table td {
    padding: 0.78rem 1rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    color: var(--muted);
}

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

.data-table tr:hover td {
    background: rgba(124, 58, 237, 0.05);
}

.td-gold {
    color: var(--gold);
    font-weight: 600;
}

.td-purple {
    color: var(--purple-light);
    font-weight: 600;
}

.td-white {
    color: var(--white);
    font-weight: 600;
}

.yes {
    color: #34D399;
    font-weight: 700;
}

.no {
    color: #F87171;
}

/* ─── CHARTS ─── */
.chart-box {
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid var(--card-border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
}

.chart-label {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* Horizontal bar chart */
.bar-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.bar-entry {
    display: grid;
    grid-template-columns: 150px 1fr 55px;
    align-items: center;
    gap: 0.75rem;
}

.bar-name {
    font-size: 0.82rem;
    color: var(--muted);
    font-family: var(--font-ui);
}

.bar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    height: 9px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-fill.gold {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.bar-num {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--purple-light);
    text-align: right;
}

.bar-num.gold-num {
    color: var(--gold);
}

/* Radial / donut */
.donut-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: center;
}

.donut-svg-wrap {
    position: relative;
}

.donut-svg-wrap svg {
    display: block;
    margin: 0 auto;
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-val {
    font-family: var(--font-brand);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.donut-lbl {
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.dl-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.dl-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}

.dl-name {
    font-size: 0.84rem;
    color: var(--text);
    flex: 1;
}

.dl-pct {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--gold);
}

/* ─── CARDS ─── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.2);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.card-title {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.card-text {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── SCORE / RATING ─── */
.rating-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.rating-item {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--r);
    padding: 1.2rem 0.75rem;
}

.rating-val {
    font-family: var(--font-brand);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.rating-lbl {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-ui);
}

/* ─── FAQ ACCORDION ─── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--r);
    overflow: hidden;
}

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

.faq-q:hover {
    color: var(--purple-light);
}

.faq-arrow {
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-a-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
}

.faq-a-inner a {
    color: var(--gold);
}

/* ─── SEO TEXT ─── */
.seo-wrap {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.06) 0%, transparent 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.12);
    padding: 5rem 1.5rem;
}

.seo-layout {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.seo-txt h2 {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.85rem;
}

.seo-txt h3 {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1rem;
    color: var(--purple-light);
    margin: 1.5rem 0 0.5rem;
}

.seo-txt p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 0.9rem;
}

.seo-txt a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--r);
    padding: 1.15rem;
}

.sc-title {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.65rem;
}

.sc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sc-list li {
    font-size: 0.8rem;
    color: var(--muted);
    padding-left: 1rem;
    position: relative;
}

.sc-list li::before {
    content: '\25C6';
    color: var(--purple-light);
    position: absolute;
    left: 0;
    font-size: 0.5rem;
    top: 4px;
}

/* ─── AUTHOR ─── */
.author-panel {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.author-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245, 158, 11, 0.4);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.1rem;
}

.author-role {
    font-size: 0.75rem;
    color: var(--purple-light);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.author-bio {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── LEGAL / RG BAR ─── */
.rg-bar {
    background: rgba(124, 58, 237, 0.08);
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.74rem;
    color: var(--muted);
}

.rg-bar a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.age-badge {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #F87171;
    padding: 0.12rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.68rem;
}

/* ─── FOOTER ─── */
.site-footer {
    background: #0A0115;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding: 4rem 1.5rem 2rem;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
}

.footer-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.65;
    margin-top: 0.65rem;
    max-width: 260px;
}

.footer-disclaimer {
    font-size: 0.68rem;
    color: rgba(157, 142, 201, 0.55);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.footer-col h5 {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 0.9rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-col a {
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.74rem;
    color: rgba(157, 142, 201, 0.5);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom a {
    color: rgba(245, 158, 11, 0.7);
    text-decoration: none;
}

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

/* ─── UTILITIES ─── */
.gold {
    color: var(--gold);
}

.purple-text {
    color: var(--purple-light);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--purple-light);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chip.gold-chip {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--gold);
}

.breadcrumb {
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--purple-light);
    text-decoration: none;
}

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

/* ─── DESKTOP ONLY / MOBILE ONLY ─── */
@media (min-width: 769px) {
    .burger {
        display: none !important;
    }

    .mob-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none !important;
    }

    .locale-wrap {
        display: none !important;
    }

    .logo-sub {
        display: none;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .header-wrap {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

    .header-wrap .logo-link {
        grid-column: 1;
    }

    .header-wrap .main-nav {
        display: none !important;
    }

    .header-wrap .header-right {
        grid-column: 3;
        gap: 0.4rem;
        margin-left: 0;
    }

    .header-right .locale-wrap {
        display: none !important;
    }

    .header-right .btn-cta {
        font-size: 0.73rem;
        padding: 0.43rem 0.65rem;
    }

    .burger {
        display: flex !important;
        grid-column: 4;
    }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-card {
        order: -1;
    }

    .hero-desc {
        font-size: 0.92rem;
    }

    .stat-row {
        gap: 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        text-align: center;
    }

    /* Sections */
    .rating-strip {
        grid-template-columns: 1fr 1fr;
    }

    .donut-wrap {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .donut-svg-wrap {
        max-width: 220px;
    }

    .donut-legend {
        width: 100%;
    }

    .bar-entry {
        grid-template-columns: 100px 1fr 42px;
        gap: 0.5rem;
    }

    .bar-name {
        font-size: 0.75rem;
    }

    /* Two-column inline grids → single column */
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
    }

    [style*="grid-template-columns:1fr 420px"] {
        display: flex !important;
        flex-direction: column !important;
    }

    [style*="grid-template-columns:auto 1fr"] {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Ticker: hide second row on smallest mobile */
    .ticker>div:last-child {
        display: none;
    }

    .ticker {
        justify-content: center;
        padding: 0.35rem 1rem;
    }

    /* Tables */
    .tbl-box {
        border-radius: var(--r);
    }

    .data-table {
        font-size: 0.79rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.6rem 0.65rem;
    }

    /* SEO layout */
    .seo-layout {
        grid-template-columns: 1fr;
    }

    .seo-sidebar {
        order: -1;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    /* Pros/cons */
    .pros-cons-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 1rem 2rem;
    }

    .hero-title {
        font-size: clamp(1.7rem, 8vw, 2.5rem);
    }

    .sec {
        padding: 2.5rem 1rem;
    }

    .sec-dark {
        padding: 2.5rem 1rem;
    }

    .seo-wrap {
        padding: 2.5rem 1rem;
    }

    .rating-strip {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .rating-val {
        font-size: 1.5rem;
    }

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

    .footer-col ul {
        gap: 0.3rem;
    }

    .author-panel {
        flex-direction: column;
    }

    .author-img {
        align-self: flex-start;
    }

    .stat-row {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .stat-val {
        font-size: 1.5rem;
    }

    .hcard-val {
        font-size: 1.7rem;
    }

    .bar-entry {
        grid-template-columns: 85px 1fr 38px;
        gap: 0.4rem;
    }

    .bar-name {
        font-size: 0.72rem;
    }

    .chart-box {
        padding: 1.25rem;
    }

    .mob-nav a {
        font-size: 0.95rem;
        padding: 0.7rem 0.75rem;
    }

    /* rg-bar compact */
    .rg-bar {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
}