/* ═══════════════════════════════════════════════
   ONLINE CASINO DEUTSCH — Design System
   Кардинально отличается от casinoonline.it.com:
   - IT.COM: тёмно-фиолетовый primary (#1b1b3a), жёлтый accent, красный CTA
   - DE: тёмно-зелёный primary (#0d2818), изумрудный accent, золотой CTA
   - IT.COM: cards with hover lift
   - DE: horizontal table-style rows (немцы любят таблицы)
   - IT.COM: rounded everything
   - DE: sharper, more structured, "German precision" feel
   - IT.COM: system fonts
   - DE: Inter font
   ═══════════════════════════════════════════════ */

/* Fonts loaded via <link> in HTML for performance */

:root {
    --c-primary: #0d2818;
    --c-primary-light: #143d24;
    --c-accent: #10b981;
    --c-accent-light: #34d399;
    --c-accent-bg: rgba(16, 185, 129, 0.08);
    --c-cta: #d97706;
    --c-cta-hover: #b45309;
    --c-gold: #f59e0b;
    --c-text: #1e293b;
    --c-text-light: #f8fafc;
    --c-text-muted: #4b5563;
    --c-surface: #ffffff;
    --c-bg: #f1f5f9;
    --c-border: #e2e8f0;
    --c-success: #16a34a;
    --c-danger: #dc2626;
    --c-warning: #f59e0b;
    --rg-h: 34px;
    --header-h: 60px;
    --max-w: 1140px;
    --r: 6px;
    --r-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 1px 6px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.1);
    --tr: 0.15s ease;
}

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

html { scroll-behavior: smooth; }

@font-face {
    font-family: 'Inter fallback';
    src: local('Arial');
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
    size-adjust: 107%;
}
body {
    font-family: 'Inter', 'Inter fallback', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #0e7c5f; text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--c-accent); }

/* ══════ RG BANNER ══════ */
.rg-banner {
    background: var(--c-primary);
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.rg-banner .age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: var(--c-danger);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 10px;
    flex-shrink: 0;
}
.rg-banner a { color: var(--c-accent-light); text-decoration: underline; }

/* ══════ HEADER ══════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    padding: 10px 20px;
    transition: padding 0.3s ease;
}
.site-header.scrolled {
    padding: 5px 20px;
    box-shadow: var(--shadow);
}
.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--c-primary);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.3px;
}
.logo img {
    width: 180px;
    height: auto;
    transition: width 0.3s ease;
}
.site-header.scrolled .logo img {
    width: 120px;
}
.logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--c-accent), #059669);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
}
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a,
.main-nav .nav-dropdown > a {
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--c-text);
    border-radius: var(--r);
    transition: background var(--tr), color var(--tr);
}
.main-nav > a:hover,
.main-nav .nav-dropdown > a:hover { background: var(--c-bg); color: var(--c-accent); }
.main-nav a.active { color: #0e7c5f; font-weight: 600; }
.nav-dropdown {
    position: relative;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 400;
    color: var(--c-text);
    text-decoration: none;
    transition: background var(--tr), color var(--tr);
}
.nav-dropdown-menu a:hover { background: var(--c-bg); color: var(--c-accent); }
.region-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 12px;
    border-left: 1px solid var(--c-border);
    padding-left: 12px;
}
.region-switch a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-text-muted);
    border-radius: var(--r);
    transition: background var(--tr), color var(--tr);
    text-decoration: none;
}
.region-switch a:hover { background: var(--c-bg); color: var(--c-text); }
.region-switch a.active {
    background: var(--c-primary);
    color: var(--c-accent-light);
}
.region-switch a.active:hover { background: var(--c-primary-light); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--c-text); }
.nav-toggle svg { width: 24px; height: 24px; }

/* ══════ HERO ══════ */
.hero {
    background: linear-gradient(145deg, #0d2818 0%, #1a4731 50%, #0f3d26 100%);
    color: var(--c-text-light);
    padding: 52px 20px 48px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-w);
    background: url(/image/background.webp) right center / auto 70% no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 768px) {
    .hero::after { display: none; }
}
.hero:has(.hero-with-img)::after { display: none; }
.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-inner.hero-with-img {
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero-text { flex: 1; }
.hero-img {
    flex: 0 0 48%;
    max-width: 520px;
}
.hero-img img {
    width: 100%;
    height: auto;
    border-radius: var(--r-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .hero-inner.hero-with-img { flex-direction: column; }
    .hero-img { max-width: 100%; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-accent-light);
    margin-bottom: 16px;
}
.hero h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.hero h1 span { color: var(--c-accent-light); }
.hero-sub {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin-bottom: 24px;
}
.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--c-accent-light);
}
.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-author {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.hero-author img {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(16,185,129,0.4);
    flex-shrink: 0;
}
.hero-author-text { display: flex; flex-direction: column; gap: 2px; }
.hero-author-name { font-size: 14px; }
.hero-author-name a { color: var(--c-accent-light); font-weight: 600; }
.hero-author-role { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ══════ BREADCRUMBS ══════ */
.breadcrumbs {
    padding: 12px 20px;
    font-size: 12px;
    color: var(--c-text-muted);
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
}
.breadcrumbs-inner { max-width: var(--max-w); margin: 0 auto; }
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs .sep { margin: 0 6px; }

/* ══════ MAIN LAYOUT ══════ */
.page-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 32px 20px;
}

/* ══════ CASINO LIST — Table-Row Style ══════ */
.casino-list { margin-bottom: 40px; }
.casino-list-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 16px;
}

.casino-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 180px 160px 140px 140px;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    margin-bottom: -1px;
    transition: box-shadow var(--tr);
}
.casino-row:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
.casino-row:last-child { border-radius: 0 0 var(--r-lg) var(--r-lg); }
.casino-row:only-child { border-radius: var(--r-lg); }
.casino-row:hover {
    z-index: 1;
    box-shadow: var(--shadow-lg);
    border-color: var(--c-accent);
}
.casino-row.featured {
    border: 2px solid var(--c-accent);
    background: linear-gradient(90deg, rgba(16,185,129,0.03), transparent);
}

.casino-rank {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid var(--c-surface);
}
.casino-rank.gold {
    background: var(--c-gold);
    color: #fff;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.casino-logo-wrap {
    position: relative;
    width: 110px; height: 80px;
    border-radius: 12px;
    background: var(--c-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
    border: 1px solid var(--c-border);
}
.casino-logo-placeholder {
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-align: center;
    line-height: 1.2;
}
.casino-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    border-radius: 12px;
}
.casino-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 2px;
}
.casino-license {
    font-size: 11px;
    color: var(--c-text-muted);
}
.casino-license .verified {
    color: #15803d;
    font-weight: 600;
}

.casino-bonus {
    font-size: 13px;
    line-height: 1.5;
}
.casino-bonus strong {
    display: block;
    font-size: 14px;
    color: var(--c-primary);
}
.casino-bonus .wagering {
    font-size: 11px;
    color: var(--c-text-muted);
}

.casino-payout {
    font-size: 13px;
}
.casino-payout strong {
    display: block;
    color: #15803d;
    font-weight: 700;
}
.casino-payout .method {
    font-size: 11px;
    color: var(--c-text-muted);
}

.casino-rating-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}
.rating-overall {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--c-bg);
    border-radius: var(--r-lg);
    font-size: 16px;
    font-weight: 700;
    color: var(--c-primary);
}
.rating-badge.excellent { background: linear-gradient(135deg, #16a34a, #059669); }
.rating-badge.good { background: linear-gradient(135deg, #0e7c5f, #065f46); }
.rating-badge.average { background: linear-gradient(135deg, #f59e0b, #d97706); }
.rating-label { font-size: 11px; color: var(--c-text-muted); font-weight: 500; }

.casino-cta-cell { text-align: right; }
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #d97706, #b45309);
    border: none;
    border-radius: var(--r);
    text-decoration: none;
    cursor: pointer;
    transition: background var(--tr), transform 0.1s, box-shadow var(--tr);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}
.btn-cta:hover {
    background: linear-gradient(135deg, #b45309, #92400e);
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}
.btn-review {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #0e7c5f;
    text-align: center;
}
.btn-review:hover { color: var(--c-accent); }

/* ══════ CONTENT SECTIONS ══════ */
.content-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 32px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.content-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-accent);
    display: inline-block;
}
.content-block h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--c-primary);
    margin: 24px 0 10px;
}
.content-block p {
    margin-bottom: 14px;
}

/* ══════ QUICK FACTS TABLE ══════ */
.quick-facts {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    font-size: 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.quick-facts th,
.quick-facts td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.quick-facts tr:last-child th,
.quick-facts tr:last-child td {
    border-bottom: none;
}
.quick-facts th {
    background: var(--c-bg);
    color: var(--c-primary);
    font-weight: 600;
    font-size: 13px;
    width: 35%;
    border-right: 1px solid var(--c-border);
}
.quick-facts td {
    background: var(--c-surface);
    color: var(--c-text);
}
.quick-facts tr:nth-child(even) th {
    background: #e8eef3;
}
.quick-facts tr:nth-child(even) td {
    background: #f6f8fa;
}

/* ══════ PROS / CONS ══════ */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}
.pros-box, .cons-box {
    padding: 18px 20px;
    border-radius: var(--r-lg);
    background: var(--c-surface);
}
.pros-box {
    border-left: 4px solid var(--c-success);
    background: rgba(22,163,74,0.03);
}
.cons-box {
    border-left: 4px solid var(--c-danger);
    background: rgba(220,38,38,0.03);
}
.pros-box h4, .pros-box h3, .pros-title { color: #166534; margin-bottom: 10px; font-size: 14px; font-weight: 700; }
.cons-box h4, .cons-box h3, .cons-title { color: #991b1b; margin-bottom: 10px; font-size: 14px; font-weight: 700; }
.pros-box li, .cons-box li {
    font-size: 13.5px;
    margin-bottom: 6px;
    list-style: none;
    padding-left: 20px;
    position: relative;
}
.pros-box li::before { content: "✓"; position: absolute; left: 0; color: #166534; font-weight: 700; }
.cons-box li::before { content: "✕"; position: absolute; left: 0; color: #991b1b; font-weight: 700; }

/* ══════ PROS / CONS (review pages) ══════ */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}
.pros, .cons {
    padding: 18px 20px;
    border-radius: var(--r-lg);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
}
.pros {
    border-left: 4px solid var(--c-success);
    background: rgba(22,163,74,0.03);
}
.cons {
    border-left: 4px solid var(--c-danger);
    background: rgba(220,38,38,0.03);
}
.pros h3 { color: #166534; margin-bottom: 10px; font-size: 15px; font-weight: 700; }
.cons h3 { color: #991b1b; margin-bottom: 10px; font-size: 15px; font-weight: 700; }
.pros li, .cons li {
    font-size: 13.5px;
    margin-bottom: 6px;
    list-style: none;
    padding-left: 20px;
    position: relative;
}
.pros li::before { content: "\2713"; position: absolute; left: 0; color: var(--c-success); font-weight: 700; }
.cons li::before { content: "\2715"; position: absolute; left: 0; color: var(--c-danger); font-weight: 700; }
@media (max-width: 768px) {
    .pros-cons { grid-template-columns: 1fr; }
}

/* ══════ FAQ ══════ */
.faq-block { margin: 24px 0; }
.faq-item {
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    margin-bottom: 6px;
    overflow: hidden;
    background: var(--c-surface);
}
.faq-item:not(:has(.faq-q)) {
    padding: 18px 22px;
}
.faq-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-primary);
    margin-bottom: 8px;
}
.faq-item > p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--c-text);
    margin: 0;
}
h3.faq-q {
    margin: 0;
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-primary);
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}
.faq-q::after { content: "+"; font-size: 18px; color: var(--c-text-muted); }
.faq-a {
    padding: 0 18px 14px;
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.7;
}

/* ══════ AUTHOR CARD ══════ */
.author-card {
    display: flex;
    gap: 24px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 24px;
    margin: 24px 0;
    box-shadow: var(--shadow);
}
.author-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.author-avatar {
    width: 88px; height: 88px;
    border-radius: 50%;
    border: 3px solid var(--c-accent);
}
.author-socials {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    order: 2;
}
.author-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--c-bg);
    color: var(--c-text-muted);
    transition: background var(--tr), color var(--tr);
}
.author-social-link:hover {
    background: var(--c-primary);
    color: var(--c-accent-light);
}
.author-card-right { flex: 1; }
.author-card .author-name {
    font-weight: 700;
    color: var(--c-primary);
    font-size: 17px;
    margin-bottom: 2px;
}
.author-card .author-title {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 10px;
}
.author-card .author-bio {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.author-stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.author-stat-item {
    font-size: 12px;
    font-weight: 600;
    color: var(--c-text-muted);
    background: var(--c-bg);
    padding: 4px 10px;
    border-radius: 20px;
}
.author-more {
    font-size: 13px;
    font-weight: 600;
    color: #0e7c5f;
}
.author-more:hover { color: var(--c-accent); }

/* ══════ SHARE BAR ══════ */
.share-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    margin: 24px 0;
}
.share-label { font-size: 13px; font-weight: 600; color: var(--c-text); }
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: opacity var(--tr), transform var(--tr);
}
.share-btn:hover { opacity: 0.85; color: #fff; transform: scale(1.1); }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #1a1a1a; }
.share-btn.li { background: #0a66c2; }
.share-btn.tg { background: #229ed9; }

/* ══════ FOOTER ══════ */
.site-footer {
    background: var(--c-primary);
    color: rgba(255,255,255,0.65);
    padding: 40px 20px 16px;
    margin-top: 40px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}
.footer-heading {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 13px; }
.footer-col a:hover { color: var(--c-accent-light); }
.footer-about { font-size: 13px; line-height: 1.7; }
.footer-rg {
    background: rgba(0,0,0,0.25);
    border-radius: var(--r);
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 12px;
    text-align: center;
    line-height: 1.8;
}
.footer-rg strong { color: #fff; }
.footer-rg a { color: var(--c-accent-light); text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: underline; }

/* ══════ AFFILIATE DISCLOSURE ══════ */
.disclosure {
    background: #f0fdf4;
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: var(--r);
    padding: 12px 18px;
    font-size: 12px;
    color: #1e293b;
}
.disclosure a {
    color: #15803d;
    text-decoration: underline;
    font-weight: 600;
    margin: 16px 0;
    line-height: 1.6;
}

/* ══════ RESPONSIVE ══════ */
@media (max-width: 1024px) {
    .casino-row {
        grid-template-columns: minmax(0, 1fr) 120px 110px auto auto;
        gap: 12px;
        padding: 14px 14px;
    }
    .casino-info { gap: 12px; }
    .casino-logo-wrap { width: 80px; height: 60px; }
    .casino-name { font-size: 14px; }
    .casino-license { font-size: 10px; }
    .casino-bonus { font-size: 11px; line-height: 1.35; }
    .casino-bonus strong { font-size: 12px; }
    .casino-bonus .wagering { font-size: 10px; }
    .casino-payout { font-size: 11px; }
    .casino-payout strong { font-size: 12px; }
    .casino-payout .method { font-size: 10px; }
    .rating-badge { width: 42px; height: 42px; font-size: 14px; }
    .rating-label { font-size: 10px; }
    .btn-cta { padding: 9px 14px; font-size: 12px; }
    .btn-review { font-size: 11px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
    .casino-row {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 14px;
    }
    .casino-bonus, .casino-payout { display: none; }
    .casino-cta-cell { display: flex; flex-direction: column; align-items: stretch; min-width: 120px; }
}

@media (max-width: 768px) {
    .content-block { padding: 18px 14px; margin-bottom: 16px; }
    .content-block h2 { font-size: 19px; margin-bottom: 12px; padding-bottom: 8px; }
    .content-block h3 { font-size: 15px; }
    .content-block p { margin-bottom: 10px; }
    .page-content { padding: 0 10px; }
    .hero { padding: 28px 16px; }
    .hero h1 { font-size: 22px; }
    .hero-sub { font-size: 13px; }
    .disclosure { padding: 10px 14px; font-size: 11px; }
    .header-inner { position: relative; }
    .region-switch { border-left: none; margin-left: auto; margin-right: 4px; padding-left: 0; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        background: var(--c-surface);
        border-bottom: 1px solid var(--c-border);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 8px 0;
        z-index: 999;
    }
    .main-nav.open { display: flex; }
    .main-nav > a,
    .main-nav .nav-dropdown > a { padding: 12px 20px; font-size: 15px; border-radius: 0; }
    .main-nav > a:hover,
    .main-nav .nav-dropdown > a:hover { background: var(--c-bg); }
    .nav-dropdown { width: 100%; }
    .nav-dropdown > a::after {
        content: "\25BE";
        margin-left: 6px;
        font-size: 11px;
        opacity: 0.5;
        transition: transform 0.2s;
        display: inline-block;
    }
    .nav-dropdown.open > a::after { transform: rotate(180deg); }
    .nav-dropdown:hover .nav-dropdown-menu { display: none; }
    .nav-dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        background: var(--c-bg);
        border-top: 1px solid var(--c-border);
    }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu a {
        padding: 10px 20px 10px 36px;
        font-size: 14px;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .nav-dropdown-menu a:last-child { border-bottom: none; }
    .nav-toggle { display: block; }
    .hero h1 { font-size: 24px; }
    .hero-stats { gap: 20px; }
    .casino-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    .casino-rank { width: 24px; height: 24px; font-size: 11px; top: -4px; left: -4px; }
    .casino-info { justify-content: center; order: 2; gap: 0; }
    .casino-info > div:last-child { display: none; }
    .casino-logo-wrap { width: 150px; height: 108px; }
    .casino-rating-cell { flex-direction: row; align-items: center; gap: 6px; justify-content: flex-start; order: 1; }
    .casino-license { display: none; }
    .casino-payout { display: block; order: 3; font-size: 12px; color: var(--c-text-muted); margin-top: -4px; }
    .casino-payout::before { content: "Auszahlung: "; color: var(--c-text-muted); }
    .casino-payout strong { display: inline; color: #15803d; font-weight: 700; }
    .casino-payout strong::after { content: " \00B7 "; color: var(--c-text-muted); font-weight: 400; }
    .casino-payout .method { display: inline; }
    .casino-bonus { display: block; order: 4; background: var(--c-bg); border-radius: var(--r); padding: 8px 12px; font-size: 13px; }
    .casino-bonus strong { font-size: 14px; }
    .casino-bonus .wagering { font-size: 11px; }
    .casino-cta-cell { order: 5; }
    .casino-rating-cell .rating-badge { width: 36px; height: 24px; border-radius: 10px; font-size: 14px; font-weight: 400; }
    .casino-rating-cell .rating-label { font-size: 12px; }
    .casino-cta-cell { text-align: center; }
    .btn-cta { width: 100%; }
    .pros-cons-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .author-card { flex-direction: column; text-align: center; }
    .author-stats-row { justify-content: center; }
    .share-bar { flex-direction: row; }
}

/* ══════ TABLE OF CONTENTS ══════ */
.toc {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    margin: 20px 0;
}
.toc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 10px;
}
.toc ol {
    counter-reset: toc;
    list-style: none;
    padding: 0;
}
.toc li {
    counter-increment: toc;
    margin-bottom: 5px;
}
.toc li::before {
    content: counter(toc) ". ";
    color: var(--c-accent);
    font-weight: 600;
}
.toc a {
    color: var(--c-text);
    font-size: 13.5px;
}
.toc a:hover { color: #0e7c5f; }

/* ══════ COMPARISON TABLE ══════ */
.cmp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 13.5px;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.cmp-table thead { background: var(--c-primary); color: var(--c-text-light); }
.cmp-table th {
    padding: 11px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.cmp-table td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--c-border);
    vertical-align: middle;
}
.cmp-table tbody tr:hover { background: var(--c-accent-bg); }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table .hi { font-weight: 700; color: var(--c-success); }
.cmp-table .lo { color: var(--c-danger); }

/* ══════ RATING BLOCK (single review) ══════ */
.rating-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 24px;
    margin: 24px 0;
    box-shadow: var(--shadow);
}
.rating-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-border);
}
.rating-big {
    width: 64px; height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #16a34a, #059669);
    flex-shrink: 0;
}
.rating-big.mid { background: linear-gradient(135deg, #0e7c5f, #065f46); }
.rating-big.low { background: linear-gradient(135deg, #f59e0b, #d97706); }
.rating-info { flex: 1; }
.rating-info h3 { font-size: 18px; font-weight: 700; color: var(--c-primary); margin-bottom: 2px; }
.rating-info p { font-size: 13px; color: var(--c-text-muted); }

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.rating-bar-lbl {
    width: 130px;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text);
    flex-shrink: 0;
}
.rating-bar-track {
    flex: 1;
    height: 7px;
    background: var(--c-bg);
    border-radius: 4px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--c-accent), #059669);
    border-radius: 4px;
}
.rating-bar-val {
    width: 32px;
    text-align: right;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-primary);
}

/* Rating bars (review pages) */
.rating-bars { margin: 20px 0; }
.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
}
.rating-bar-item:last-child { border-bottom: none; }
.rating-bar-label {
    width: 160px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--c-text);
    flex-shrink: 0;
}
.rating-bar {
    flex: 1;
    height: 10px;
    background: var(--c-bg);
    border-radius: 5px;
    overflow: hidden;
}
.rating-bar .rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--c-accent), #059669);
    border-radius: 5px;
    transition: width 0.6s ease;
}
.rating-bar-value {
    width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--c-primary);
    background: var(--c-bg);
    padding: 3px 6px;
    border-radius: var(--r);
}

/* ══════ PAYMENT TABLE ══════ */
.pay-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 13.5px;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.pay-table thead { background: var(--c-primary); color: #fff; }
.pay-table th { padding: 10px 14px; font-size: 12px; font-weight: 600; text-align: left; }
.pay-table td { padding: 10px 14px; border-bottom: 1px solid var(--c-border); }
.pay-table .yes { color: var(--c-success); font-weight: 700; }
.pay-table .no { color: var(--c-danger); font-weight: 700; }

/* ══════ TESTING SUMMARY ══════ */
.test-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--c-accent);
}
.test-table caption {
    background: var(--c-accent);
    color: var(--c-primary);
    font-weight: 700;
    padding: 9px 16px;
    text-align: left;
    font-size: 13px;
}
.test-table th {
    background: var(--c-accent-bg);
    padding: 9px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    width: 38%;
    border-bottom: 1px solid var(--c-border);
}
.test-table td {
    padding: 9px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--c-border);
}

/* ══════ POLICY / LEGAL PAGES ══════ */
.policy-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 36px 20px;
}
.policy-wrap h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--c-primary);
    margin-bottom: 8px;
}
.policy-wrap h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-primary);
    margin: 28px 0 10px;
    padding-top: 14px;
    border-top: 1px solid var(--c-border);
}
.policy-wrap h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 18px 0 8px;
}
.policy-wrap p { margin-bottom: 14px; }
.policy-wrap ul, .policy-wrap ol { margin-bottom: 14px; padding-left: 1.2em; }
.policy-wrap li { margin-bottom: 5px; }

/* ══════ CONTACT FORM ══════ */
.contact-form { max-width: 600px; }
.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: var(--c-primary);
    margin-bottom: 5px;
    margin-top: 18px;
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    background: var(--c-surface);
    color: var(--c-text);
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { margin-top: 20px; }

/* ══════ STICKY CTA (mobile) ══════ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    padding: 10px 16px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}
.sticky-cta .btn-cta { width: 100%; text-align: center; font-size: 15px; }
@media (max-width: 768px) {
    .sticky-cta { display: block; }
}

/* ══════ LAST UPDATED ══════ */
.last-upd {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

/* ══════ AUTHOR BYLINE (under H1) ══════ */
.byline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 20px;
}
.byline img {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid var(--c-accent);
}
.byline a { color: #0e7c5f; font-weight: 600; }

/* ══════ IMAGE BLOCK ══════ */
.img-block { margin: 20px 0; }
.img-block img { border-radius: var(--r); box-shadow: var(--shadow); }
.img-block figcaption { font-size: 12px; color: var(--c-text-muted); margin-top: 6px; text-align: left; }

/* ══════ PROCESS STEPS ══════ */
.process-steps { margin: 20px 0; }
.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--c-border);
}
.process-step:last-child { border-bottom: none; }
.step-number {
    width: 36px; height: 36px;
    background: var(--c-primary);
    color: var(--c-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}
.step-content h3 { margin-top: 0; }

/* ══════ RATING TABLE ══════ */
.rating-table-wrap { margin: 16px 0; overflow-x: auto; }
.rating-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.rating-table th,
.rating-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.rating-table th {
    background: var(--c-primary);
    color: var(--c-text-light);
    font-weight: 600;
    font-size: 13px;
}
.rating-table tbody tr:hover { background: var(--c-accent-bg); }

/* ══════ AUTHOR PAGE ══════ */
.author-page { border: none; background: none; padding: 0; }
.author-page > .content-block { padding: 32px; }
.author-hero {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.author-hero-photo {
    width: 160px; height: 160px;
    border-radius: 5%;
    border: 4px solid var(--c-accent);
    flex-shrink: 0;
    object-fit: cover;
}
.author-hero-info { flex: 1; }
.author-hero-info h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--c-primary);
    margin-bottom: 4px;
}
.author-hero-info .author-jobtitle {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}
.author-hero-info .author-tagline {
    font-size: 14px;
    color: var(--c-text);
    margin-bottom: 16px;
    line-height: 1.7;
}
.author-hero-socials {
    display: flex;
    gap: 10px;
}
.author-hero-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--c-bg);
    color: var(--c-text-muted);
    transition: background var(--tr), color var(--tr);
}
.author-hero-socials a:hover {
    background: var(--c-primary);
    color: var(--c-accent-light);
}
.author-credentials {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 16px 0;
}
.author-cred {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-muted);
    background: var(--c-bg);
    padding: 6px 14px;
    border-radius: 20px;
}
.author-articles { margin-top: 24px; }
.author-articles h2 { font-size: 18px; font-weight: 700; color: var(--c-primary); margin-bottom: 12px; }
.author-article-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
}
.author-article-item a { color: #0e7c5f; font-weight: 500; }
.author-article-item time { color: var(--c-text-muted); font-size: 12px; }

@media (max-width: 768px) {
    .author-hero { flex-direction: column; align-items: center; text-align: center; }
    .author-hero-photo { width: 120px; height: 120px; border-radius: 5%; }
    .author-hero-socials { justify-content: center; }
    .author-credentials { justify-content: center; }
    .author-page > .content-block { padding: 20px; }
    .author-article-item { flex-direction: column; gap: 2px; }
}

/* ══════ RG AGE BLOCK ══════ */
.rg-age-block {
    text-align: center;
    margin: 40px 0 20px;
    padding: 32px 20px;
    background: var(--c-bg);
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
}
.rg-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--c-danger);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 12px;
}
.rg-age-block p {
    color: var(--c-text-muted);
    font-size: 14px;
    margin: 0;
}

/* ══════ UTILITIES ══════ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.content-block a { text-decoration: underline; }
.content-block a:hover { text-decoration: none; }
ul, ol { padding-left: 1.2em; }
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block .toc ol { list-style: none; padding-left: 0; }

/* ══════ TOPIC LISTINGS ══════ */
.topic-listing { margin: 28px 0 36px; }
.topic-listing-title { font-size: 24px; font-weight: 800; color: var(--c-text); margin: 0 0 18px; line-height: 1.3; }

/* V1 · Payment table — same scale as main casino-list */
.pay-table-wrap { overflow: hidden; border: 1px solid var(--c-border); border-radius: var(--r-lg); background: var(--c-surface); }
.pay-table-scroll { overflow-x: auto; }
.pay-table { width: 100%; border-collapse: collapse; min-width: 820px; background: var(--c-surface); margin: 0px 0; }
.pay-table th { background: #0f172a; color: #fff; padding: 14px 18px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.pay-table td { padding: 20px 18px; border-bottom: 1px solid #f1f5f9; font-size: 15px; color: var(--c-text); vertical-align: middle; }
.pay-table tr:last-child td { border-bottom: none; }
.pay-table tr:hover td { background: #f8fafc; }
.pay-table .pt-casino { display: flex; align-items: center; gap: 20px; min-width: 260px; }
.pay-table .pt-logo-wrap { position: relative; width: 110px; height: 80px; border-radius: 12px; background: var(--c-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pay-table .pt-logo-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 6px; border-radius: 12px; }
.pay-table .pt-casino strong { font-size: 16px; font-weight: 700; color: var(--c-text); text-decoration: none; }
.pay-table .pt-yes { color: #15803d; font-weight: 700; font-size: 15px; display: block; margin-bottom: 2px; }
.pay-table .pt-no { color: #b91c1c; font-weight: 700; font-size: 15px; display: block; margin-bottom: 2px; }
.pay-table .pt-alt { color: #64748b; font-size: 12px; display: block; }
.pay-table .pt-btn { display: inline-block; padding: 12px 20px; background: var(--c-primary); color: #fff; border-radius: 8px; text-decoration: none !important; font-size: 14px; font-weight: 700; white-space: nowrap; transition: background 0.2s; }
.pay-table .pt-btn:hover { background: #166534; }

/* V2 · Game cards */
.game-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.game-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 22px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.gc-head { display: flex; align-items: center; gap: 14px; }
.gc-logo-wrap { width: 90px; height: 70px; border-radius: 12px; background: var(--c-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gc-logo-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 6px; border-radius: 12px; }
.gc-head .gc-name { font-size: 18px; font-weight: 700; color: var(--c-text); }
.gc-head .gc-rating { background: var(--c-primary); color: #fff; padding: 6px 12px; border-radius: 8px; font-weight: 800; font-size: 15px; margin-left: auto; }
.gc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; background: #f8fafc; border-radius: 10px; }
.gc-stat .gc-num { font-size: 20px; font-weight: 800; color: var(--c-primary); display: block; line-height: 1.2; }
.gc-stat .gc-lbl { color: #64748b; font-size: 11px; text-transform: uppercase; letter-spacing: .4px; font-weight: 600; }
.gc-prov { font-size: 13px; color: #475569; line-height: 1.5; }
.gc-prov strong { color: var(--c-text); }
.gc-bonus { font-size: 14px; font-weight: 600; color: #166534; padding: 12px 14px; background: #f0fdf4; border-radius: 8px; border-left: 3px solid var(--c-primary); }
.gc-cta { display: flex; gap: 10px; margin-top: auto; }
.gc-cta .gc-btn { flex: 1; background: var(--c-primary); color: #fff; padding: 14px; border-radius: 8px; text-decoration: none !important; font-weight: 700; text-align: center; font-size: 14px; transition: background 0.2s; }
.gc-cta .gc-btn:hover { background: #166534; }
.gc-cta .gc-rev { padding: 14px 16px; border: 2px solid var(--c-border); color: #475569; border-radius: 8px; text-decoration: none !important; font-size: 13px; font-weight: 600; white-space: nowrap; }

/* V3 · Bonus cards */
.bonus-list { display: flex; flex-direction: column; gap: 16px; }
.bonus-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 22px; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.bc-logo { position: relative; width: 110px; height: 80px; border-radius: 12px; background: var(--c-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bc-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; border-radius: 12px; }
.bc-headline { font-size: 22px; font-weight: 800; color: var(--c-primary); margin: 0 0 6px; line-height: 1.25; }
.bc-name { font-size: 13px; color: #64748b; margin-bottom: 12px; }
.bc-cond { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--c-text); }
.bc-cond span { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; background: #f8fafc; border-radius: 6px; font-weight: 500; }
.bc-cta { display: flex; flex-direction: column; gap: 8px; min-width: 170px; }
.bc-cta .bc-btn { background: var(--c-primary); color: #fff; padding: 14px 20px; border-radius: 8px; text-decoration: none !important; font-weight: 700; text-align: center; font-size: 14px; transition: background 0.2s; }
.bc-cta .bc-btn:hover { background: #166534; }
.bc-cta .bc-rev { color: var(--c-primary); text-align: center; text-decoration: none !important; font-size: 13px; font-weight: 600; }
@media (max-width: 700px) { .bonus-card { grid-template-columns: 1fr; text-align: center; gap: 14px; } .bc-cond { justify-content: center; } .bc-cta { min-width: 0; } }

/* V4 · License/Compliance table */
.comp-table-wrap { overflow: hidden; border: 1px solid var(--c-border); border-radius: var(--r-lg); background: var(--c-surface); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.comp-table-scroll { overflow-x: auto; }
.comp-table { width: 100%; border-collapse: collapse; min-width: 820px; }
.comp-table th { background: #0f172a; color: #fff; padding: 14px 16px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.comp-table th.center, .comp-table td.center { text-align: center; }
.comp-table td { padding: 18px 16px; border-bottom: 1px solid #f1f5f9; font-size: 14px; color: var(--c-text); vertical-align: middle; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: #f8fafc; }
.comp-table .ct-casino { display: flex; align-items: center; gap: 20px; min-width: 220px; }
.comp-table .ct-casino img { width: 80px; height: 80px; border-radius: 12px; object-fit: contain; background: var(--c-bg); padding: 8px; border: 1px solid var(--c-border); flex-shrink: 0; }
.comp-table .ct-casino strong { font-size: 16px; font-weight: 700; }
.comp-table .ct-ok { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: #dcfce7; color: #15803d; font-size: 16px; font-weight: 700; }
.comp-table .ct-no { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: #fee2e2; color: #b91c1c; font-size: 16px; font-weight: 700; }
.comp-table .ct-warn { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: #ffedd5; color: #c2410c; font-size: 16px; font-weight: 700; }
.comp-table .ct-badge { display: inline-block; padding: 4px 10px; border-radius: 6px; background: #f1f5f9; color: #475569; font-size: 13px; font-weight: 600; }
.comp-table .ct-btn { display: inline-block; padding: 12px 20px; background: var(--c-primary); color: #fff; border-radius: 8px; text-decoration: none !important; font-size: 14px; font-weight: 700; white-space: nowrap; transition: background 0.2s; }
.comp-table .ct-btn:hover { background: #166534; }
.comp-legend { padding: 14px 18px; background: #f8fafc; font-size: 13px; color: #475569; border-top: 1px solid var(--c-border); display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.comp-legend span { display: inline-flex; align-items: center; gap: 6px; }

/* ===== Homepage hub (Navigations-Startseite) ===== */
.hub-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin-top:14px}
.hub-card{display:block;background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:20px 22px;text-decoration:none;transition:border-color .15s,box-shadow .15s,transform .15s}
.hub-card:hover{border-color:#10b981;box-shadow:0 6px 18px rgba(0,0,0,.07);transform:translateY(-2px)}
.hub-card h3{margin:0 0 6px;font-size:17px;color:#0f172a;font-weight:700}
.hub-card p{margin:0;font-size:14px;color:#64748b;line-height:1.55}
.hub-card .hub-arrow{color:#10b981;font-weight:800}
.hub-cta{background:linear-gradient(135deg,#0d2818 0%,#0a3d1f 100%);color:#e2e8f0;border-radius:16px;padding:30px 26px;text-align:center;margin:22px 0}
.hub-cta h3{color:#fff;margin:0 0 10px;font-size:21px;font-weight:800}
.hub-cta p{margin:0 0 20px;color:#86efac;font-size:15px;line-height:1.6}