/* =====================================================================
   mr-bet-online.de — Main Stylesheet  Version 1.0
   Brand: Mr Bet Casino | Navy #0D1B2A + Gold #F0B429
   Structure: Different layout from .ca — horizontal cards, sidebar stats
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-deep: #0D1B2A;
    --bg-dark: #122030;
    --bg-card: #1A2D40;
    --bg-card2: #1F3347;
    --gold: #F0B429;
    --gold-light: #FFD166;
    --gold-dark: #C8941F;
    --silver: #E2EAF4;
    --text: #C8D8E8;
    --text-dim: #8A9DB5;
    --border: rgba(240, 180, 41, .15);
    --border2: rgba(255, 255, 255, .07);
    --green: #2EC46D;
    --red: #E05555;
    --shadow: 0 8px 48px rgba(0, 0, 0, .55);
    --shadow-g: 0 4px 32px rgba(240, 180, 41, .18);
    --radius: 16px;
    --radius-sm: 10px;
    --tr: .2s ease;
    --max-w: 1240px;
    --font: 'Inter', -apple-system, sans-serif;
    --font-h: 'Playfair Display', Georgia, serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
}

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 {
    position: absolute;
    top: -999px;
    left: 0;
    background: var(--gold);
    color: #000;
    padding: .5rem 1rem;
    z-index: 99999;
    border-radius: 0 0 8px 0;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

/* ── CONTAINER ── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(13, 27, 42, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 12px;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: var(--text);
    font-size: .82rem;
    font-weight: 500;
    padding: 6px 9px;
    border-radius: 8px;
    transition: color var(--tr), background var(--tr);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    background: rgba(240, 180, 41, .1);
}

.header-cta {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Mobile-only CTA button in header */
.header-cta-mobile {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: all var(--tr);
    text-decoration: none;
}

.btn-gold {
    background: var(--gold);
    color: #0D1B2A;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: #000;
    box-shadow: var(--shadow-g);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #0D1B2A;
}

.btn-sm {
    padding: 7px 16px;
    font-size: .82rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-ghost {
    background: rgba(255, 255, 255, .07);
    color: var(--silver);
    border: 1px solid var(--border2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .13);
    color: #fff;
}

/* ── MOBILE MENU ── */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--tr);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 16px 0;
    gap: 2px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--text);
    font-weight: 500;
    font-size: .95rem;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav a:hover {
    color: var(--gold);
    background: rgba(240, 180, 41, .06);
}

.mobile-nav-cta {
    padding: 16px 24px;
    display: flex;
    gap: 12px;
}

.mobile-nav-cta .btn {
    flex: 1;
    justify-content: center;
}

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    padding: 0;
}

.hero-img-wrap {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 27, 42, .95) 0%, rgba(13, 27, 42, .75) 55%, rgba(13, 27, 42, .2) 100%);
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
}

.hero-content {
    padding: 0 48px;
    overflow: visible;
    max-width: 640px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 180, 41, .12);
    border: 1px solid rgba(240, 180, 41, .3);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
}

.hero-title span {
    color: var(--gold);
}

.hero-desc {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 28px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--text-dim);
}

.hero-badge-item svg {
    color: var(--green);
}

/* ── SCORE BAR (hero sidebar) ── */
.hero-score-panel {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 45, 64, .92);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    width: 260px;
    backdrop-filter: blur(8px);
}

.score-big {
    text-align: center;
    margin-bottom: 20px;
}

.score-big .num {
    font-family: var(--font-h);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
}

.score-big .lbl {
    font-size: .8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.score-row .cat {
    font-size: .8rem;
    color: var(--text-dim);
}

.score-row .bar {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, .1);
    border-radius: 3px;
    overflow: hidden;
}

.score-row .bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
}

.score-row .val {
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold);
}

/* ── SECTIONS ── */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg-dark);
}

.section-card {
    background: var(--bg-card);
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-dim);
    max-width: 620px;
    margin: 0 auto;
    font-size: .95rem;
}

/* ── BONUS CARD (horizontal layout) ── */
.bonus-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.bonus-main-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #162438 100%);
    border: 1px solid rgba(240, 180, 41, .25);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.bonus-main-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(240, 180, 41, .1) 0%, transparent 70%);
    border-radius: 50%;
}

.bonus-amount {
    font-family: var(--font-h);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.bonus-sub {
    font-size: .95rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.bonus-packages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.bonus-pkg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border2);
}

.bonus-pkg .pkg-name {
    font-size: .85rem;
    color: var(--text-dim);
}

.bonus-pkg .pkg-val {
    font-weight: 700;
    color: #fff;
    font-size: .9rem;
}

.bonus-pkg .pkg-tag {
    font-size: .75rem;
    color: var(--gold);
}

.bonus-steps-card {
    background: var(--bg-card2);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 28px;
}

.bonus-steps-card h3 {
    font-family: var(--font-h);
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border2);
}

.step-item:last-child {
    border-bottom: none;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(240, 180, 41, .12);
    color: var(--gold);
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(240, 180, 41, .25);
}

.step-text h4 {
    color: #fff;
    font-size: .9rem;
    margin-bottom: 3px;
}

.step-text p {
    font-size: .82rem;
    color: var(--text-dim);
}

/* ── GAME GRID ── */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border2);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-g);
}

.game-thumb {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bg-card2), var(--bg-deep));
    position: relative;
    overflow: hidden;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gold);
    color: #000;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}

.game-info {
    padding: 12px;
}

.game-name {
    font-weight: 600;
    font-size: .88rem;
    color: #fff;
    margin-bottom: 3px;
}

.game-provider {
    font-size: .75rem;
    color: var(--text-dim);
}

.game-rtp {
    font-size: .75rem;
    color: var(--green);
    margin-top: 4px;
}

/* ── STATS GRID ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: border-color var(--tr);
}

.stat-card:hover {
    border-color: rgba(240, 180, 41, .3);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stat-num {
    font-family: var(--font-h);
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: .8rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ── COMPARISON TABLE ── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

thead {
    background: rgba(240, 180, 41, .1);
}

th {
    padding: 14px 18px;
    text-align: left;
    color: var(--gold);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}

td {
    padding: 13px 18px;
    color: var(--text);
    border-bottom: 1px solid var(--border2);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(255, 255, 255, .03);
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
}

.td-green {
    color: var(--green);
}

.td-check::before {
    content: '✓ ';
    color: var(--green);
    font-weight: 900;
}

.td-cross {
    color: var(--text-dim);
}

.td-highlight {
    background: rgba(240, 180, 41, .05) !important;
}

.caption-lbl {
    font-size: .78rem;
    color: var(--text-dim);
    padding: 10px 18px;
    background: var(--bg-card);
}

/* ── CHART BARS (CSS-only) ── */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bar-label {
    font-size: .82rem;
    color: var(--text-dim);
    width: 130px;
    flex-shrink: 0;
    text-align: right;
}

.bar-track {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, .08);
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    transition: width .8s ease;
}

.bar-val {
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold);
    width: 44px;
}

/* ── DONUT CHART (CSS-only) ── */
.donut-wrap {
    display: flex;
    align-items: center;
    gap: 32px;
}

.donut {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 50%;
    background: conic-gradient(var(--gold) 0deg, var(--gold) calc(var(--pct) * 3.6deg), rgba(255, 255, 255, .1) calc(var(--pct) * 3.6deg) 360deg);
}

.donut::after {
    content: '';
    position: absolute;
    inset: 22px;
    background: var(--bg-dark);
    border-radius: 50%;
}

.donut-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-direction: column;
}

.donut-num {
    font-family: var(--font-h);
    font-size: 1.6rem;
    color: var(--gold);
}

.donut-sub {
    font-size: .65rem;
    color: var(--text-dim);
}

.donut-legend {
    flex: 1;
}

.donut-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .82rem;
}

.donut-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── PAYMENT GRID ── */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pay-card {
    background: var(--bg-card2);
    border: 1px solid var(--border2);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color var(--tr);
}

.pay-card:hover {
    border-color: rgba(240, 180, 41, .3);
}

.pay-icon {
    font-size: 2rem;
}

.pay-name {
    font-weight: 700;
    color: #fff;
    font-size: .9rem;
}

.pay-speed {
    font-size: .78rem;
}

.pay-speed strong {
    color: var(--green);
}

.pay-limit {
    font-size: .76rem;
    color: var(--text-dim);
}

/* ── FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    border: 1px solid var(--border2);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--tr);
}

.faq-item:hover {
    border-color: var(--border);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: .95rem;
    background: var(--bg-card);
    gap: 12px;
    transition: background var(--tr);
}

.faq-q:hover {
    background: var(--bg-card2);
}

.faq-q .icon {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform var(--tr);
}

.faq-a {
    display: none;
    padding: 0 22px 20px;
    background: var(--bg-card);
    color: var(--text-dim);
    font-size: .9rem;
    line-height: 1.8;
}

.faq-a.open {
    display: block;
}

.faq-item.open .faq-q .icon {
    transform: rotate(45deg);
}

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, #0D1B2A 0%, #1A2D40 50%, #142032 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(240, 180, 41, .08) 0%, transparent 70%);
}

.cta-section h2 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #fff;
    margin-bottom: 14px;
}

.cta-section p {
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── AUTHOR BOX ── */
.author-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin: 48px 0;
}

.author-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}

.author-meta h4 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2px;
}

.author-meta .role {
    font-size: .78rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.author-meta p {
    font-size: .85rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ── SEO ARTICLE ── */
.seo-text {
    color: var(--text);
    line-height: 1.85;
}

.seo-text h2 {
    font-family: var(--font-h);
    font-size: 1.6rem;
    color: #fff;
    margin: 40px 0 16px;
    padding-top: 8px;
    border-top: 1px solid var(--border2);
}

.seo-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--silver);
    margin: 28px 0 12px;
}

.seo-text p {
    margin-bottom: 16px;
    color: var(--text-dim);
}

.seo-text a {
    color: var(--gold);
    border-bottom: 1px solid rgba(240, 180, 41, .3);
}

.seo-text a:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.seo-text ul {
    margin: 12px 0 18px 0;
}

.seo-text ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    color: var(--text-dim);
}

.seo-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: .85rem;
}

.info-box {
    background: rgba(240, 180, 41, .06);
    border: 1px solid rgba(240, 180, 41, .2);
    border-radius: 10px;
    padding: 20px;
    margin: 24px 0;
}

.info-box p {
    color: var(--text);
    margin: 0;
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    padding: 16px 0;
}

.breadcrumbs a {
    color: var(--text-dim);
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs .sep {
    color: var(--text-dim);
    opacity: .5;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    height: 36px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: .85rem;
    color: var(--text-dim);
    line-height: 1.75;
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--silver);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: .87rem;
    color: var(--text-dim);
    transition: color var(--tr);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border2);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom p {
    font-size: .8rem;
    color: var(--text-dim);
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badge {
    border: 1px solid var(--border2);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .72rem;
    color: var(--text-dim);
}

.age-warn {
    background: rgba(240, 180, 41, .07);
    border-top: 1px solid var(--border);
    padding: 16px 0;
    text-align: center;
    font-size: .78rem;
    color: var(--text-dim);
}

.age-warn a {
    color: var(--gold);
}

/* ── RATING STARS ── */
.stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    font-size: 1rem;
}

.stars .half {
    opacity: .5;
}

/* ── NOTICE BOXES ── */
.notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-radius: 10px;
    padding: 16px 18px;
    margin: 20px 0;
    font-size: .875rem;
}

.notice-info {
    background: rgba(46, 196, 109, .06);
    border: 1px solid rgba(46, 196, 109, .2);
    color: var(--text);
}

.notice-warn {
    background: rgba(240, 180, 41, .06);
    border: 1px solid rgba(240, 180, 41, .2);
    color: var(--text);
}

.notice-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a1520 100%);
    border-bottom: 1px solid var(--border);
    padding: 52px 0 48px;
}

.page-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 12px;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    color: var(--text-dim);
    max-width: 680px;
    font-size: .95rem;
}

.page-hero .meta {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.page-hero .meta span {
    font-size: .8rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── FEATURE LIST ── */
.feat-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feat-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border2);
    border-radius: var(--radius-sm);
    transition: border-color var(--tr);
}

.feat-item:hover {
    border-color: var(--border);
}

.feat-item-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

.feat-item-content h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}

.feat-item-content p {
    font-size: .85rem;
    color: var(--text-dim);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    border-bottom: 1px solid var(--border);
    padding: 48px 0 40px;
}

.page-hero .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    font-size: .8rem;
    color: var(--text-dim);
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-dim);
    transition: color var(--tr);
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs .sep {
    color: var(--text-dim);
    font-size: .7rem;
}

/* ── NOTICE BLOCKS ── */
.notice {
    display: flex;
    gap: 14px;
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid;
    margin: 24px 0;
    align-items: flex-start;
}

.notice-info {
    background: rgba(46, 196, 109, .06);
    border-color: rgba(46, 196, 109, .2);
}

.notice-warn {
    background: rgba(240, 180, 41, .06);
    border-color: rgba(240, 180, 41, .2);
}

.notice-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice p {
    font-size: .9rem;
    margin: 0;
}

/* ── SEO TEXT ── */
.seo-text h2 {
    font-family: var(--font-h);
    font-size: 1.6rem;
    color: #fff;
    margin: 32px 0 12px;
}

.seo-text h3 {
    font-family: var(--font-h);
    font-size: 1.25rem;
    color: var(--silver);
    margin: 24px 0 10px;
}

.seo-text p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.seo-text ul,
.seo-text ol {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.seo-text li {
    margin-bottom: 8px;
    font-size: .95rem;
    color: var(--text);
}

.text-link {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-style: dashed;
    text-underline-offset: 3px;
}

.text-link:hover {
    color: #fff;
    text-decoration-style: solid;
}

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, rgba(240, 180, 41, .07) 0%, transparent 60%);
    border-top: 1px solid var(--border);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-h);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 12px;
}

.cta-section p {
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto 28px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER STYLES ── */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    margin-top: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 0 40px;
}

.footer-brand p {
    font-size: .85rem;
    color: var(--text-dim);
    margin-top: 14px;
    line-height: 1.65;
    max-width: 300px;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-block;
    background: rgba(240, 180, 41, .1);
    border: 1px solid rgba(240, 180, 41, .25);
    color: var(--gold);
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: .04em;
}

.footer-col h4 {
    color: var(--gold);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-dim);
    font-size: .85rem;
    transition: color var(--tr);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border2);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: .8rem;
    color: var(--text-dim);
}

.age-warn {
    background: rgba(240, 180, 41, .04);
    border-top: 1px solid var(--border2);
    padding: 14px 24px;
    text-align: center;
    font-size: .78rem;
    color: var(--text-dim);
}

.age-warn a {
    color: var(--gold);
}

/* ── AUTHOR CARD ── */
.author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-card2);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    margin-top: 40px;
}

.author-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.author-meta h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-meta .role {
    font-size: .78rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.author-meta p {
    font-size: .85rem;
    color: var(--text-dim);
    margin: 0;
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
    .hero-score-panel {
        display: none;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
    }

    /* ── MOBILE HEADER FIX ── */
    .site-header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9999 !important;
        background: rgba(13, 27, 42, .98) !important;
    }

    .header-inner {
        height: 60px;
        gap: 8px;
        padding: 0 8px;
    }

    .header-logo img {
        height: 30px;
    }

    /* hide desktop nav & desktop cta */
    .nav-links,
    .header-cta {
        display: none !important;
    }

    /* show mobile CTA button */
    .header-cta-mobile {
        display: flex !important;
        margin-left: auto;
        flex-shrink: 0;
    }

    .header-cta-mobile .btn {
        padding: 7px 12px;
        font-size: .75rem;
        border-radius: 8px;
        white-space: nowrap;
    }

    .burger {
        display: flex !important;
        flex-shrink: 0;
    }

    /* Push content below fixed header — on wrapper, not body */
    .site-header+* {
        margin-top: 0;
    }

    body {
        padding-top: 60px;
    }

    main,
    .page-hero {
        position: relative;
        z-index: 1;
    }

    .hero-img-wrap {
        height: 320px;
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-desc {
        font-size: .88rem;
    }

    .bonus-showcase {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    table {
        font-size: .8rem;
    }

    th,
    td {
        padding: 10px 12px;
    }

    .author-card {
        flex-direction: column;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        text-align: center;
        justify-content: center;
    }

    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    /* Auto layout stack */
    .autor-layout {
        flex-direction: column !important;
    }

    .hero-score-panel {
        display: none;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bonus-amount {
        font-size: 2.6rem;
    }

    .header-inner {
        height: 56px;
    }
}