/* =============================================
   sweepstake-casino.de — Main Stylesheet
   Design: Editorial Dark Premium / Cyber Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    /* Color System */
    --midnight: #080e1a;
    --navy: #0d1829;
    --card: #121f35;
    --card-alt: #16243e;
    --border: #1e2f4a;
    --border-soft: rgba(255, 255, 255, 0.07);

    /* Accents */
    --gold: #f0b429;
    --gold-dim: rgba(240, 180, 41, 0.15);
    --gold-glow: rgba(240, 180, 41, 0.3);
    --cyan: #22d3ee;
    --cyan-dim: rgba(34, 211, 238, 0.12);
    --coral: #ff6b6b;
    --green: #22c55e;

    /* Text */
    --white: #f0f4ff;
    --white-dim: rgba(240, 244, 255, 0.72);
    --muted: rgba(240, 244, 255, 0.45);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Layout */
    --max-w: 1200px;
    --radius: 12px;
    --radius-sm: 8px;
}

/* ─── 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(--midnight);
    color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: var(--gold);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    background: var(--gold);
    color: #000;
    padding: .5rem 1rem;
    font-weight: 700;
    border-radius: 0 0 8px 0;
    z-index: 9999;
}

.skip-link:focus {
    left: 0;
}

/* ─── LAYOUT ─── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sec {
    padding: 4rem 0;
}

.sec-sm {
    padding: 2.5rem 0;
}

.sec-inner {
    padding: 2rem 0;
}

/* ─── HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 14, 26, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 68px;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 1rem;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-decoration: none;
}

.logo-mark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav */
.main-nav ul {
    display: flex;
    gap: 1.75rem;
}

.main-nav a {
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 600;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: color .2s;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

/* CTA Button Header */
.header-cta-group {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.btn-tracker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: linear-gradient(135deg, var(--gold) 0%, #e8920a 100%);
    color: #000;
    font-weight: 800;
    font-size: .78rem;
    padding: .55rem 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-display);
    white-space: nowrap;
    box-shadow: 0 0 20px var(--gold-glow);
    transition: transform .2s, box-shadow .2s;
}

.btn-tracker:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--gold-glow);
    text-decoration: none;
    color: #000;
}

/* Burger */
.burger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mob-nav {
    display: none;
    flex-direction: column;
    gap: .25rem;
    background: var(--navy);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.25rem;
}

.mob-nav.open {
    display: flex;
}

.mob-nav a {
    padding: .6rem .75rem;
    border-radius: var(--radius-sm);
    color: var(--white-dim);
    font-weight: 500;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.mob-nav a:hover {
    background: var(--card);
    color: var(--gold);
}

.mob-nav .mob-cta-link {
    margin-top: .5rem;
    background: linear-gradient(135deg, var(--gold), #e8920a);
    color: #000 !important;
    font-weight: 800;
    border-radius: 50px;
    text-align: center;
    font-family: var(--font-display);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #0d1a36 60%, #101e30 100%);
    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(240, 180, 41, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 1.5rem 4rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--gold-dim);
    border: 1px solid rgba(240, 180, 41, 0.3);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem .8rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hero-h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.hero-h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--gold) 0%, #e8920a 100%);
    color: #000;
    font-weight: 800;
    font-size: .9rem;
    padding: .8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-display);
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--gold-glow);
    text-decoration: none;
    color: #000;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--white-dim);
    font-weight: 600;
    font-size: .9rem;
    padding: .78rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    text-decoration: none;
}

.hero-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.hero-img-pill {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(8, 14, 26, 0.9);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
    padding: .35rem .75rem;
    border-radius: 50px;
    font-family: var(--font-display);
    text-transform: uppercase;
}

/* ─── TRUST BAR ─── */
.trust-bar {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}

.trust-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.trust-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gold);
}

.trust-lbl {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.3;
}

/* ─── SECTION TYPOGRAPHY ─── */
.eyebrow {
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: .5rem;
}

.h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.2;
}

.h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
}

.lead {
    font-size: 1.05rem;
    color: var(--white-dim);
}

.muted {
    color: var(--muted);
    font-size: .9rem;
}

/* ─── CARDS ─── */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color .2s, transform .2s;
}

.card:hover {
    border-color: rgba(240, 180, 41, 0.3);
    transform: translateY(-3px);
}

/* Casino Ranking Card */
.rank-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    transition: border-color .2s;
}

.rank-card:hover {
    border-color: var(--gold);
}

.rank-card+.rank-card {
    margin-top: 1rem;
}

.rank-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
    opacity: .4;
    min-width: 2.5rem;
    text-align: center;
}

.rank-card.top1 .rank-num {
    opacity: 1;
}

.rank-info .rank-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.rank-bonus {
    color: var(--gold);
    font-size: .82rem;
    font-weight: 600;
    margin-top: .25rem;
}

.rank-tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.tag {
    background: var(--card-alt);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: .7rem;
    padding: .2rem .5rem;
    border-radius: 4px;
}

.tag-gold {
    background: var(--gold-dim);
    border-color: rgba(240, 180, 41, 0.3);
    color: var(--gold);
}

.tag-cyan {
    background: var(--cyan-dim);
    border-color: rgba(34, 211, 238, 0.2);
    color: var(--cyan);
}

.rank-score {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
}

/* ─── TABLES ─── */
.tbl-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
    background: var(--card);
}

caption {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8rem;
    color: var(--muted);
    text-align: left;
    padding: .75rem 1rem .5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

thead {
    background: var(--card-alt);
}

th {
    padding: .85rem 1rem;
    text-align: left;
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid var(--border);
}

td {
    padding: .8rem 1rem;
    border-bottom: 1px solid var(--border-soft);
    color: var(--white-dim);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.td-hl {
    color: var(--white);
    font-weight: 600;
}

.td-yes {
    color: var(--green);
    font-weight: 700;
}

.td-no {
    color: var(--coral);
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
}

/* ─── CHARTS ─── */
/* Horizontal Bar */
.hbar-chart {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.hbar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: .35rem;
}

.hbar-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--white-dim);
}

.hbar-val {
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-display);
}

.hbar-track {
    height: 8px;
    background: var(--card-alt);
    border-radius: 100px;
    overflow: hidden;
}

.hbar-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--gold), #ff9d00);
    width: 0;
    transition: width 1s cubic-bezier(.4, 0, .2, 1);
}

.hbar-fill.hf-cyan {
    background: linear-gradient(90deg, var(--cyan), #06b6d4);
}

.hbar-fill.hf-green {
    background: linear-gradient(90deg, var(--green), #16a34a);
}

/* Donut / Radial */
.donut-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.donut-box {
    text-align: center;
}

.donut-svg {
    width: 100px;
    height: 100px;
    transform: rotate(-90deg);
}

.donut-circle-bg {
    fill: none;
    stroke: var(--card-alt);
    stroke-width: 8;
}

.donut-circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    transition: stroke-dashoffset 1.2s ease;
}

.donut-circle-gold {
    stroke: var(--gold);
}

.donut-circle-cyan {
    stroke: var(--cyan);
}

.donut-circle-green {
    stroke: var(--green);
}

.donut-circle-coral {
    stroke: var(--coral);
}

.donut-pct {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    display: block;
    margin-top: .4rem;
}

.donut-lbl {
    font-size: .72rem;
    color: var(--muted);
    margin-top: .1rem;
}

/* Vertical Bars */
.vbar-chart {
    display: flex;
    align-items: flex-end;
    gap: .75rem;
    height: 180px;
}

.vbar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
}

.vbar-val {
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
}

.vbar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(240, 180, 41, 0.4) 100%);
    transition: height 1s cubic-bezier(.4, 0, .2, 1);
}

.vbar.vc-cyan {
    background: linear-gradient(180deg, var(--cyan), rgba(34, 211, 238, 0.3));
}

.vbar.vc-green {
    background: linear-gradient(180deg, var(--green), rgba(34, 197, 94, 0.3));
}

.vbar-lbl {
    font-size: .68rem;
    color: var(--muted);
    text-align: center;
}

/* Radar / Bubble (custom CSS) */
.bubble-chart {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: flex-end;
}

.bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--card-alt);
    border: 1px solid var(--border);
    transition: border-color .2s;
}

.bubble:hover {
    border-color: var(--gold);
}

.bubble-val {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--gold);
}

.bubble-lbl {
    font-size: .65rem;
    color: var(--muted);
    text-align: center;
}

/* ─── GRIDS ─── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ─── ICON LIST ─── */
.icon-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.icon-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.icon-bullet {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid rgba(240, 180, 41, 0.3);
    color: var(--gold);
    font-size: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .1rem;
}

.icon-text {
    font-size: .9rem;
    color: var(--white-dim);
    line-height: 1.6;
}

/* ─── SEO CONTENT BLOCK ─── */
.seo-block {
    padding: 4rem 0;
}

.seo-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.seo-article h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    margin: 2rem 0 .75rem;
    color: var(--white);
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin: 1.5rem 0 .5rem;
    color: var(--gold);
}

.seo-article p {
    color: var(--white-dim);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: .95rem;
}

.seo-article a {
    color: var(--gold);
}

.seo-article a:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.sidebar-box h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.sidebar-box ul {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.sidebar-box li a {
    color: var(--white-dim);
    font-size: .88rem;
}

.sidebar-box li a:hover {
    color: var(--gold);
}

.sidebar-cta {
    background: linear-gradient(135deg, #1a1000, #0d1829);
    border: 1px solid rgba(240, 180, 41, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.sidebar-cta p {
    color: var(--white-dim);
    font-size: .85rem;
    margin: .5rem 0 1rem;
}

/* ─── AUTHOR BOX ─── */
.author-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    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 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
}

.author-role {
    color: var(--gold);
    font-size: .78rem;
    margin-bottom: .5rem;
}

.author-bio {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.7;
}

/* ─── INFO / WARNING BOXES ─── */
.info-box {
    background: var(--card-alt);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.1rem 1.25rem;
    margin: 1.5rem 0;
}

.info-box .ib-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .85rem;
    color: var(--gold);
    margin-bottom: .5rem;
}

.info-box p {
    color: var(--white-dim);
    font-size: .9rem;
    margin: 0;
}

.warn-box {
    background: rgba(255, 107, 107, 0.08);
    border-left: 3px solid var(--coral);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}

.warn-box p {
    color: var(--white-dim);
    font-size: .85rem;
    margin: 0;
    line-height: 1.7;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
    padding: .75rem 0;
    font-size: .8rem;
    color: var(--muted);
    max-width: var(--max-w);
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--muted);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* ─── PAGE HEADER ─── */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--card) 100%);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0 2.5rem;
}

.page-header .container {
    max-width: var(--max-w);
}

.page-eyebrow {
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .5rem;
}

.page-h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -.5px;
    margin-bottom: .75rem;
}

.page-desc {
    color: var(--white-dim);
    font-size: 1rem;
    max-width: 620px;
    line-height: 1.8;
}

/* ─── STEP INDICATOR ─── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.25rem;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1.5px solid rgba(240, 180, 41, 0.4);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .35rem;
}

.step-desc {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.7;
}

/* ─── BONUS CARD ─── */
.bonus-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.bonus-name {
    font-family: var(--font-display);
    font-weight: 700;
}

.bonus-amount {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-display);
}

.bonus-meta {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.bonus-tag {
    background: var(--card-alt);
    color: var(--muted);
    font-size: .7rem;
    padding: .2rem .5rem;
    border-radius: 4px;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-brand p {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.7;
    margin: .75rem 0 1.25rem;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--white);
    margin-bottom: .75rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-col a {
    color: var(--muted);
    font-size: .85rem;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--border-soft);
    margin: 2rem 0 1.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-legal {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-disclaimer {
    font-size: .72rem;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.6;
}

.warn-inline {
    color: var(--coral);
    font-weight: 700;
}

/* ─── RATING STARS ─── */
.stars {
    color: var(--gold);
    letter-spacing: 1px;
    font-size: .9rem;
}

.score {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--green);
}

/* ─── MISC UTILS ─── */
.text-gold {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.mt1 {
    margin-top: 1rem;
}

.mt2 {
    margin-top: 2rem;
}

.mt3 {
    margin-top: 3rem;
}

.mb1 {
    margin-bottom: 1rem;
}

.mb2 {
    margin-bottom: 2rem;
}

.gap-sm {
    gap: .75rem;
}

.fw700 {
    font-weight: 700;
}

.inline-link {
    color: var(--gold);
    font-weight: 600;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* Лого — только марк, без подписи */
    .logo-sub {
        display: none;
    }

    .logo-mark {
        font-size: .88rem;
    }

    /* Кнопка трекера — компактная */
    .header-cta-group .btn-tracker {
        display: inline-flex;
        font-size: .68rem;
        padding: .4rem .65rem;
        white-space: nowrap;
    }

    /* Предотвращаем переполнение header */
    .header-inner {
        padding: 0 .75rem;
        gap: .4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap {
        display: none;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .seo-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .trust-bar-inner {
        gap: 1.25rem;
    }

    .rank-card {
        grid-template-columns: auto 1fr;
    }

    .rank-score {
        grid-column: 2;
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .author-box {
        flex-direction: column;
    }

    .donut-row {
        justify-content: center;
    }
}

/* ─── ANIMATION TRIGGER ─── */
.anim-ready .hbar-fill {
    width: var(--target-w, 0);
}

.anim-ready .vbar {
    height: var(--target-h, 0);
}

/* ─── COLOR SCHEME (AI/browser hint) ─── */
:root {
    color-scheme: dark;
}

/* ─── FOCUS VISIBLE (Accessibility) ─── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 3px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ─── TOUCH TARGETS (Mobile Accessibility) ─── */
.btn-primary,
.btn-ghost,
.btn-tracker,
.mob-nav a {
    min-height: 44px;
    min-width: 44px;
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hbar-fill {
        transition: none;
    }

    .vbar {
        transition: none;
    }

    .donut-circle {
        transition: none;
    }
}

/* ─── HIGH CONTRAST ─── */
@media (forced-colors: active) {

    .btn-primary,
    .btn-tracker {
        border: 2px solid ButtonText;
    }

    .card,
    .rank-card {
        border: 1px solid ButtonText;
    }
}

/* ─── PRINT ─── */
@media print {

    .site-header,
    .mob-nav,
    .sidebar-cta,
    .btn-tracker,
    .btn-primary,
    .hero-actions,
    footer {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    a {
        color: #000;
    }

    .seo-article {
        grid-column: 1 / -1;
    }

    .tbl-wrap {
        overflow: visible;
    }

    table {
        border: 1px solid #000;
    }

    th,
    td {
        border: 1px solid #000;
        padding: .4rem;
    }
}