/* ═══════════════════════════════════════════════
   XonBet-online.de — Global Stylesheet v1.0
   Design: Navy Blue + Gold Premium Casino DE
   Fonts: Barlow Condensed (headings) + Source Sans 3 (body)
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
    --navy: #070F1A;
    --navy2: #0B1E3D;
    --navy3: #112952;
    --blue: #1A4A8B;
    --gold: #F5A623;
    --gold-dim: #B87A0F;
    --gold-pale: #FDD280;
    --white: #FFFFFF;
    --silver: #C8D6E8;
    --text: #A8BED4;
    --green: #2EC46D;
    --red: #E05555;

    --bg: #070F1A;
    --bg2: #0B1E3D;
    --bg3: #0F2548;
    --card: #0E2040;
    --card2: #132c52;
    --border: rgba(245, 166, 35, .2);
    --border2: rgba(26, 74, 139, .3);

    --font-h: 'Barlow Condensed', Arial, sans-serif;
    --font-b: 'Source Sans 3', Arial, sans-serif;

    --r: 10px;
    --r-sm: 6px;
    --r-lg: 16px;
    --tr: .2s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, .4);
    --glow: 0 0 30px rgba(245, 166, 35, .15);
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ── SKIP LINK ── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 8px;
    background: var(--gold);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    font-weight: 700;
    font-size: .85rem;
    z-index: 9999;
    transition: top var(--tr);
}

.skip-link:focus {
    top: 0;
}

/* ── LAYOUT ── */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-xs {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 15, 26, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 64px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 36px;
    width: auto;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-main a {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--silver);
    padding: 6px 12px;
    border-radius: var(--r-sm);
    transition: color var(--tr), background var(--tr);
}

.nav-main a:hover {
    color: var(--gold);
    background: rgba(245, 166, 35, .08);
}

.header-cta {
    margin-left: 16px;
}

/* Desktop CTA, hidden on mobile */
.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    color: var(--navy) !important;
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 9px 22px;
    border-radius: 50px;
    white-space: nowrap;
    transition: opacity var(--tr), transform var(--tr), box-shadow var(--tr);
    box-shadow: 0 4px 16px rgba(245, 166, 35, .35);
}

.btn-header:hover {
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(245, 166, 35, .5);
}

/* Mobile-only CTA */
.header-cta-mobile {
    display: none;
}

/* ── BURGER ── */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    justify-content: center;
    padding: 6px;
    border-radius: var(--r-sm);
    transition: background var(--tr);
    flex-shrink: 0;
}

.burger:hover {
    background: rgba(245, 166, 35, .1);
}

.burger span {
    display: block;
    height: 2px;
    background: var(--silver);
    border-radius: 2px;
    transition: all var(--tr);
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── MOBILE NAV ── */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 16px;
    gap: 4px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--silver);
    padding: 10px 14px;
    border-radius: var(--r-sm);
    transition: color var(--tr), background var(--tr);
}

.mobile-nav a:hover {
    color: var(--gold);
    background: rgba(245, 166, 35, .08);
}

.mobile-nav-cta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-nav-cta .btn-gold {
    width: 100%;
    justify-content: center;
}

/* ── BODY OFFSET ── */
.page-wrap {
    padding-top: 64px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-h);
    font-weight: 700;
    letter-spacing: .04em;
    border-radius: 50px;
    transition: all var(--tr);
    white-space: nowrap;
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    color: var(--navy);
    padding: 12px 28px;
    font-size: 1.05rem;
    box-shadow: 0 4px 16px rgba(245, 166, 35, .35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 166, 35, .5);
    opacity: .95;
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 26px;
    font-size: 1.05rem;
}

.btn-outline:hover {
    background: rgba(245, 166, 35, .1);
}

.btn-sm {
    padding: 8px 18px;
    font-size: .9rem;
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1.15rem;
}

/* ── HERO — Fullscreen overlay layout ── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

/* Full-bleed background image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: 0;
}

/* Dark gradient overlay so text is readable */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(7, 15, 26, .97) 0%,
            rgba(7, 15, 26, .92) 35%,
            rgba(7, 15, 26, .65) 60%,
            rgba(7, 15, 26, .25) 80%,
            rgba(7, 15, 26, .05) 100%);
    z-index: 1;
}

.hero-left {
    position: relative;
    z-index: 3;
    padding: 80px 0;
    max-width: 640px;
}

/* Hide separate hero-right — image is now background */
.hero-right {
    display: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, .1);
    border: 1px solid rgba(245, 166, 35, .25);
    color: var(--gold);
    font-size: .8rem;
    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(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-title span {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--silver);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(11, 30, 61, .6);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    max-width: 380px;
}

.hero-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.hero-score {
    font-family: var(--font-h);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
}

.hero-score-label {
    font-size: .78rem;
    color: var(--text);
}

/* ── BADGES ── */
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(11, 30, 61, .7);
    border: 1px solid var(--border2);
    color: var(--silver);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
}

.badge-gold {
    border-color: rgba(245, 166, 35, .3);
    color: var(--gold-pale);
}

/* ── SECTIONS ── */
.section {
    padding: 72px 0;
}

.section-sm {
    padding: 48px 0;
}

.section-lg {
    padding: 96px 0;
}

.section-dark {
    background: var(--navy);
}

.section-mid {
    background: var(--navy2);
}

.section-card {
    background: var(--bg3);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text);
    max-width: 560px;
    margin: 0 auto;
}

/* ── CARDS ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.cards-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    padding: 24px;
    transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}

.card:hover {
    border-color: rgba(245, 166, 35, .3);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.card-title {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.card-text {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.6;
}

/* ── BONUS CARDS ── */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bonus-card {
    background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dim));
}

.bonus-num {
    font-family: var(--font-h);
    font-size: .78rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bonus-pct {
    font-family: var(--font-h);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.bonus-max {
    font-size: .82rem;
    color: var(--silver);
    margin: 8px 0;
}

.bonus-fs {
    display: inline-block;
    background: rgba(46, 196, 109, .1);
    border: 1px solid rgba(46, 196, 109, .2);
    color: var(--green);
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

/* ── TABLES ── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--r);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

thead th {
    background: var(--navy3);
    color: var(--gold);
    font-family: var(--font-h);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 14px 18px;
    text-align: left;
    white-space: nowrap;
}

tbody tr {
    border-bottom: 1px solid var(--border2);
    transition: background var(--tr);
}

tbody tr:hover {
    background: rgba(26, 74, 139, .15);
}

tbody td {
    padding: 13px 18px;
    color: var(--text);
    vertical-align: middle;
}

tbody tr:last-child {
    border-bottom: none;
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
}

.td-green {
    color: var(--green);
}

.td-red {
    color: var(--red);
}

.td-white {
    color: var(--white);
    font-weight: 600;
}

.td-hl {
    background: rgba(245, 166, 35, .05);
}

/* ── RATING STARS ── */
.stars {
    color: var(--gold);
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ── CHARTS WRAPPER ── */
.chart-wrap {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    padding: 28px;
    position: relative;
}

.chart-title {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chart-wrap canvas {
    max-height: 280px;
}

/* ── PROS / CONS ── */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-box,
.cons-box {
    background: var(--card);
    border-radius: var(--r);
    padding: 22px;
}

.pros-box {
    border: 1px solid rgba(46, 196, 109, .2);
}

.cons-box {
    border: 1px solid rgba(224, 85, 85, .2);
}

.pros-box h4 {
    color: var(--green);
    font-family: var(--font-h);
    font-size: 1rem;
    margin-bottom: 14px;
}

.cons-box h4 {
    color: var(--red);
    font-family: var(--font-h);
    font-size: 1rem;
    margin-bottom: 14px;
}

.pros-list li,
.cons-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 7px 0;
    font-size: .88rem;
    color: var(--text);
    border-bottom: 1px solid var(--border2);
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

.ico-pro {
    color: var(--green);
    flex-shrink: 0;
}

.ico-con {
    color: var(--red);
    flex-shrink: 0;
}

/* ── NOTICE BLOCKS ── */
.notice {
    display: flex;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--r-sm);
    border: 1px solid;
    margin: 24px 0;
    align-items: flex-start;
    font-size: .9rem;
}

.notice-info {
    background: rgba(26, 74, 139, .12);
    border-color: rgba(26, 74, 139, .35);
}

.notice-warn {
    background: rgba(245, 166, 35, .06);
    border-color: rgba(245, 166, 35, .25);
}

.notice-ok {
    background: rgba(46, 196, 109, .06);
    border-color: rgba(46, 196, 109, .2);
}

.notice-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── SEO TEXT ── */
.seo-text h2 {
    font-family: var(--font-h);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--white);
    margin: 36px 0 14px;
}

.seo-text h3 {
    font-family: var(--font-h);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--silver);
    margin: 26px 0 10px;
}

.seo-text p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text);
}

.seo-text ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.seo-text ol {
    list-style: decimal;
    padding-left: 24px;
    margin-bottom: 16px;
}

.seo-text li {
    margin-bottom: 8px;
    font-size: .95rem;
    color: var(--text);
    line-height: 1.65;
}

.seo-text strong {
    color: var(--silver);
}

.seo-text a {
    color: var(--gold);
    border-bottom: 1px dashed rgba(245, 166, 35, .4);
}

.seo-text a:hover {
    color: var(--white);
    border-color: var(--white);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    border-bottom: 1px solid var(--border);
    padding: 52px 0 44px;
}

.page-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero .sub {
    font-size: 1rem;
    color: var(--text);
    max-width: 600px;
    margin-top: 10px;
}

.page-hero .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
    font-size: .8rem;
    color: var(--text);
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.breadcrumbs a {
    color: var(--text);
    transition: color var(--tr);
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs .sep {
    color: var(--border-dim, rgba(168, 190, 212, .5));
    font-size: .7rem;
}

/* ── SCORE WIDGET ── */
.score-widget {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    text-align: center;
}

.score-num {
    font-family: var(--font-h);
    font-size: 5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.score-out {
    font-size: .9rem;
    color: var(--text);
}

.score-bars {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
}

.score-label {
    color: var(--silver);
    width: 120px;
    flex-shrink: 0;
}

.score-bar {
    flex: 1;
    height: 6px;
    background: var(--border2);
    border-radius: 10px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dim));
}

.score-val {
    color: var(--gold);
    font-weight: 700;
    width: 30px;
    text-align: right;
}

/* ── STEPS/HOW-TO ── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border2);
    align-items: flex-start;
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--navy);
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 6px;
}

.step-content p {
    font-size: .88rem;
    color: var(--text);
}

/* ── GAMES GRID ── */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.game-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    overflow: hidden;
    transition: all var(--tr);
}

.game-card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.game-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.game-info {
    padding: 12px 14px;
}

.game-name {
    font-family: var(--font-h);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.game-provider {
    font-size: .75rem;
    color: var(--text);
}

.game-rtp {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
}

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-section p {
    color: var(--text);
    max-width: 540px;
    margin: 0 auto 32px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── AUTHOR CARD ── */
.author-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    margin-top: 48px;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    flex-shrink: 0;
}

.author-meta h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 3px;
}

.author-role {
    font-size: .78rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.author-bio {
    font-size: .85rem;
    color: var(--text);
}

/* ── FOOTER ── */
.site-footer {
    background: #040c16;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 0 40px;
}

.footer-brand p {
    font-size: .84rem;
    color: var(--text);
    margin-top: 14px;
    line-height: 1.65;
    max-width: 280px;
}

.footer-logo {
    height: 34px;
    width: auto;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.footer-badge {
    display: inline-block;
    background: rgba(245, 166, 35, .08);
    border: 1px solid rgba(245, 166, 35, .2);
    color: var(--gold);
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: .04em;
}

.footer-col h5 {
    font-family: var(--font-h);
    color: var(--gold);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text);
    font-size: .85rem;
    transition: color var(--tr);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(26, 74, 139, .25);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: .78rem;
    color: var(--text);
}

.age-warn {
    background: rgba(245, 166, 35, .04);
    border-top: 1px solid rgba(245, 166, 35, .1);
    padding: 14px 24px;
    text-align: center;
    font-size: .77rem;
    color: var(--text);
}

.age-warn a {
    color: var(--gold);
}

/* ── PAYMENT ICONS ROW ── */
.payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.pay-badge {
    background: var(--card2);
    border: 1px solid var(--border2);
    border-radius: var(--r-sm);
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--silver);
}

/* ── STAT BOXES ── */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-box {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    padding: 20px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-h);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: .8rem;
    color: var(--text);
    margin-top: 4px;
}

/* ═══════════════════════════════════════
   RESPONSIVE — Single Source of Truth
   All breakpoints in one place
═══════════════════════════════════════ */

/* ─ Tablet ─ */
@media (max-width: 1100px) {
    .hero {
        min-height: auto;
    }

    .hero-left {
        padding: 60px 0;
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─ Mobile ─ */
@media (max-width: 768px) {

    /* ── HEADER ── */
    .nav-main,
    .header-cta {
        display: none !important;
    }

    .burger {
        display: flex !important;
    }

    .header-cta-mobile {
        display: flex !important;
        margin-left: auto;
    }

    /* Logo image: constrain height on mobile */
    .header-logo img {
        height: 32px !important;
        width: auto !important;
        max-width: 120px !important;
    }

    /* ── HERO ── */
    .hero {
        min-height: 100svh;
    }

    .hero::before {
        background: linear-gradient(180deg,
                rgba(7, 15, 26, .98) 0%,
                rgba(7, 15, 26, .88) 55%,
                rgba(7, 15, 26, .7) 100%);
    }

    .hero-left {
        padding: 40px 0 60px;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* ── SECTIONS ── */
    .section,
    .section-lg {
        padding: 48px 0;
    }

    /* ── GRIDS ── */
    .cards-grid,
    .cards-grid-4 {
        grid-template-columns: 1fr;
    }

    .cards-grid-2 {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .review-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .author-card {
        flex-direction: column;
    }

    .steps {
        gap: 16px;
    }

    .score-bars {
        width: 100%;
    }

    /* ── FOOTER ── */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 36px 0 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* ── INLINE GRIDS (all variations) ── */
    [data-desktop-grid="true"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    /* Both colon-space and colon-no-space variants */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* ── CHARTS ── */
    .chart-wrap canvas {
        max-height: 260px !important;
    }

    .reg-progress {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    /* ── CONTAINERS ── */
    .container,
    .container-sm,
    .container-xs {
        padding: 0 16px;
    }
}

/* ─ Small Mobile ─ */
@media (max-width: 480px) {
    .bonus-grid {
        grid-template-columns: 1fr !important;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-inner {
        grid-template-columns: 1fr !important;
    }

    .review-grid {
        grid-template-columns: 1fr !important;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 1.7rem;
    }

    .game-title {
        font-size: .95rem;
    }

    .chart-wrap canvas {
        max-height: 200px !important;
    }
}

/* ══════════════════════════════════════
   GLOBAL OVERFLOW PREVENTION
   Prevents charts / images from breaking layout on ALL screens
   Applied outside media queries so they are always active
══════════════════════════════════════ */

/* 1. Global overflow prevention */
html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

/* 2. All images always responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. Canvas — responsive (overrides Chart.js inline width/height attrs) */
canvas {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
}

/* 4. Chart wrapper */
.chart-wrap {
    overflow: hidden;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}

/* 5. Tables always scrollable */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    box-sizing: border-box;
}

table {
    min-width: 500px;
}

/* 6. Containers */
.container,
.container-sm,
.container-xs {
    box-sizing: border-box;
    width: 100%;
}




/* ── GAME CARDS WITH IMAGES ── */
.game-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(245, 166, 35, .2);
    border-color: rgba(245, 166, 35, .35);
}

.game-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 10/7;
    background: var(--navy3);
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
    filter: brightness(0.88);
}

.game-card:hover .game-thumb img {
    transform: scale(1.06);
    filter: brightness(1);
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(7, 15, 26, .85);
    border: 1px solid rgba(245, 166, 35, .3);
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.game-badge-live {
    background: rgba(224, 85, 85, .85);
    border-color: rgba(224, 85, 85, .4);
    color: #fff;
}

.game-badge-jackpot {
    background: rgba(46, 196, 109, .85);
    border-color: rgba(46, 196, 109, .4);
    color: #fff;
}

.game-info {
    padding: 14px 16px;
}

.game-title {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.game-provider {
    font-size: .78rem;
    color: var(--text);
    margin-bottom: 6px;
}

.game-rtp {
    font-size: .8rem;
    color: var(--gold);
    font-weight: 700;
}