/* ===== CSS CUSTOM PROPERTIES — Bold Gaming Dark Theme v2.0 ===== */
:root {
    --bg: #05030a;
    --bg-soft: #0a0418;
    --ink: #1a0438;
    --primary: #a855f7;
    --primary-deep: #6d28d9;
    --accent: #22d3ee;
    --text: #fff;
    --muted: rgba(255,255,255,0.7);
    --muted-2: rgba(255,255,255,0.55);
    --border: rgba(168,85,247,0.25);
    --border-strong: rgba(168,85,247,0.35);

    /* Legacy aliases for anything that references old variable names */
    --color-primary: #a855f7;
    --color-primary-light: #c084fc;
    --color-primary-gradient: linear-gradient(135deg, #a855f7, #6d28d9);
    --color-text: #fff;
    --color-text-secondary: rgba(255,255,255,0.7);
    --color-text-muted: rgba(255,255,255,0.55);
    --color-bg: #05030a;
    --color-bg-secondary: #0a0418;
    --color-border: rgba(168,85,247,0.25);
    --color-navbar: #05030a;
    --font-main: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.011em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
/* NAV — identical to homepage */
.nav, .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: var(--bg);
    border-bottom: 1px solid rgba(168,85,247,0.2);
    gap: 20px;
}

.brand, .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
}

.nav-link {
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85);
    transition: color .15s;
    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.is-active {
    background: var(--accent);
    color: var(--bg);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    padding-left: 18px;
    padding-right: 18px;
}

/* Brand logo — spinning conic-gradient ring */
.brand-logo {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.brand-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary), var(--accent), var(--primary));
    animation: spin 8s linear infinite;
}

.brand-logo-inner {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Fallback text "C" inside logo when no img */
.brand-logo-inner:not(:has(img)) {
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.brand-name {
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #fff;
}

.brand-name em {
    color: var(--primary);
    font-style: normal;
}

/* Footer brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-brand .brand-logo {
    width: 48px;
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 2px;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 8px;
    z-index: 100;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5,3,10,0.98);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    display: block;
    padding: 12px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.15s;
}

.mobile-menu a:hover {
    color: var(--accent);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--bg);
    overflow: hidden;
}

/* Animated gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    will-change: transform;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168,85,247,0.3) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: orb-float-1 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(109,40,217,0.2) 0%, transparent 70%);
    bottom: -5%;
    left: -8%;
    animation: orb-float-2 10s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation: orb-float-3 12s ease-in-out infinite;
}

@keyframes orb-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -20px) scale(1.08); }
    66% { transform: translate(-15px, 25px) scale(0.92); }
}

@keyframes orb-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 20px) scale(1.1); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.hero-badge-top {
    display: inline-block;
    background: rgba(10,4,24,0.6);
    border: 1px solid var(--border-strong);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-transform: uppercase;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.hero-text {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

/* Hero CTA row */
.hero-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.cta-primary {
    background: var(--accent);
    color: var(--bg);
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}

.cta-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: border-color 0.15s, color 0.15s;
}

.cta-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero stats row */
.hero-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: rgba(10,4,24,0.6);
    border: 1px solid var(--border-strong);
    padding: 28px 40px;
    backdrop-filter: blur(12px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stat-text {
    display: block;
    font-size: 10px;
    color: var(--muted-2);
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 0.15em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(168,85,247,0.2);
}

/* ===== CATEGORY CARDS GRID ===== */
.categories-section {
    padding: 32px 0 40px;
    background: var(--bg-soft);
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-card {
    background: rgba(168,85,247,0.06);
    border: 1px solid var(--border);
    border-radius: 980px;
    padding: 10px 20px 10px 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168,85,247,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 980px;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(168,85,247,0.2);
    border-color: var(--accent);
    background: rgba(168,85,247,0.1);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover .category-arrow {
    transform: translateX(3px);
    opacity: 1;
}

.category-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.category-card,
.category-card:hover {
    color: #fff;
}

.category-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.category-card p {
    display: none;
}

.category-arrow {
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    opacity: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* ===== TRUST BADGES (kept for other pages) ===== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10,4,24,0.6);
    padding: 12px 20px;
    border-radius: 980px;
    border: 1px solid var(--border-strong);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(168,85,247,0.15);
    transform: translateY(-2px);
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
}

/* ===== TOP 3 PREVIEW ===== */
.top3-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.preview-card {
    background: rgba(168,85,247,0.06);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
}

.preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(168,85,247,0.15);
    border-color: var(--accent);
}

.preview-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(168,85,247,0), rgba(34,211,238,0.3), rgba(168,85,247,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.preview-card:hover::after {
    opacity: 1;
}

.preview-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 16px;
}

.preview-rank {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.preview-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.preview-bonus {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
}

.preview-rating {
    color: var(--muted);
    font-size: 14px;
}

/* ===== CTA BUTTON ===== */
.cta-button, a.cta-button {
    display: inline-block;
    background: var(--accent);
    color: #05030a !important;
    font-weight: 900;
    padding: 14px 28px;
    font-size: 13px;
    letter-spacing: 0.1em;
    transition: all 0.15s ease;
    margin-top: 20px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border: none;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    text-decoration: none;
}

.cta-button:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-1px);
    filter: brightness(1.1);
    box-shadow: 0 4px 16px rgba(34,211,238,0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* ===== SECTION STYLING ===== */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.16;
    color: #fff;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.7;
}

/* ===== CASINO LIST ===== */
#casino-liste {
    background: var(--bg-soft);
}

.casino-card {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 32px;
    align-items: center;
    background: rgba(168,85,247,0.06);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: all 0.15s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
    .casino-card:hover {
        border-color: var(--accent);
        box-shadow: 0 8px 30px rgba(168,85,247,0.12);
        transform: translateY(-2px);
        background: rgba(168,85,247,0.1);
    }
}

.casino-card:hover::before {
    left: 100%;
}

.casino-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.casino-logo {
    width: 120px;
    height: 50px;
    object-fit: contain;
    background: #f5f5f7;
    border: 1px solid rgba(168,85,247,0.35);
    border-radius: 6px;
    padding: 6px;
}

.casino-rank {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: var(--accent);
    background: rgba(34,211,238,0.08);
    padding: 4px 12px;
    border: 1px solid rgba(34,211,238,0.3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.casino-info {
    flex: 1;
}

.casino-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    color: #fff;
    text-transform: uppercase;
}

.casino-bonus {
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 12px;
    font-size: 15px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    color: #f59e0b;
    font-size: 14px;
}

.rating-value {
    color: var(--muted);
    font-size: 14px;
}

.casino-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.casino-features li {
    background: rgba(34,211,238,0.08);
    color: var(--accent);
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    border: 1px solid rgba(34,211,238,0.3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.casino-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 160px;
}

.casino-cta .cta-button {
    text-align: center;
    margin-top: 0;
    padding: 14px 28px;
}

.review-link {
    text-align: center;
    font-size: 14px;
    color: var(--muted);
}

.review-link:hover {
    color: var(--accent);
}

/* ===== HOW TO CHOOSE ===== */
#auswahl {
    background: var(--bg);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.choose-card {
    background: rgba(168,85,247,0.05);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 32px;
    transition: all 0.15s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.choose-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(168,85,247,0.12);
    border-color: var(--accent);
}

.choose-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(168,85,247,0.08), transparent 30%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: spin 4s linear infinite paused;
    pointer-events: none;
}

.choose-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.choose-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.choose-card p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.choose-card ul {
    list-style: none;
    padding-left: 0;
}

.choose-card li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.choose-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* ===== BONUS SECTION ===== */
#bonus {
    background: var(--bg-soft);
}

.bonus-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    background: rgba(10,4,24,0.6);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: none;
}

.bonus-table th,
.bonus-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bonus-table th {
    background: rgba(168,85,247,0.15);
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.bonus-table td {
    color: rgba(255,255,255,0.82);
}

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

.bonus-table tr:hover td {
    background: rgba(168,85,247,0.04);
}

.wagering-info {
    background: rgba(10,4,24,0.6);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    padding: 32px;
    margin-top: 40px;
    box-shadow: none;
}

.wagering-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.wagering-info p {
    color: var(--muted);
    line-height: 1.7;
}

/* ===== FAQ SECTION ===== */
#faq {
    background: var(--bg);
}

.faq-item {
    background: rgba(10,4,24,0.5);
    border: 1px solid var(--border);
    border-radius: 0;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-strong);
    box-shadow: 0 2px 12px rgba(168,85,247,0.08);
}

.faq-item:hover {
    transform: translateX(4px);
}

.faq-item.active {
    border-color: var(--primary);
    border-left: 3px solid var(--primary);
    background: rgba(168,85,247,0.06);
}

.faq-question {
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.faq-icon {
    font-size: 22px;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    color: var(--accent);
    font-weight: 900;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq-answer-content {
    padding: 0 20px 16px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.65;
}

.faq-answer-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer-content a:hover {
    color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

/* ===== RESPONSIBLE GAMBLING ===== */
#verantwortung {
    background: var(--bg-soft);
}

.responsible-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.responsible-content p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.help-link {
    background: rgba(10,4,24,0.6);
    padding: 12px 20px;
    border-radius: 0;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    font-size: 15px;
    color: var(--muted);
}

.help-link:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(168,85,247,0.15);
    color: var(--accent);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: transparent;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 36px;
    border-radius: 0;
    margin-top: 32px;
    border: 2px solid var(--primary);
    letter-spacing: -0.04em;
}

/* ===== FOOTER ===== */
footer, .site-footer {
    background: var(--bg-soft);
    padding: 48px 40px 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--muted-2);
}

.site-footer .footer-inner, footer .container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

footer p, .site-footer p {
    color: var(--muted-2);
    font-size: 13px;
    line-height: 1.5;
}

.site-footer h4, .footer-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.site-footer ul, .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer a, .footer-links a, .footer-nav a {
    color: var(--muted-2);
    font-size: 12px;
    transition: color 0.15s;
    text-decoration: none;
}

.site-footer a:hover, .footer-links a:hover, .footer-nav a:hover {
    color: var(--accent);
}

.footer-bottom, .site-footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
}

.footer-section {
    margin-bottom: 32px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.payment-icons {
    display: flex;
    gap: 8px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.payment-icon {
    background: transparent;
    padding: 4px 10px;
    border-radius: 0;
    font-size: 10px;
    color: var(--muted-2);
    border: 1px solid var(--border);
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .site-footer .footer-inner, footer .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Hide auto-generated TOC from old script.js cache */
.toc-container { display: none !important; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 100px 0 0;
}

.breadcrumbs nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--accent);
    font-size: 14px;
}

.breadcrumbs .separator {
    color: var(--muted-2);
}

.breadcrumbs .current {
    color: var(--muted);
}

/* ===== REVIEW PAGE STYLES ===== */
.review-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    background: var(--bg);
    min-height: 320px;
}

.review-hero .review-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.review-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
    z-index: 1;
}

.review-hero .container {
    position: relative;
    z-index: 2;
}

.review-hero-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.review-hero-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(168,85,247,0.15);
    padding: 6px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.review-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
}

.review-hero h1 .year {
    color: var(--primary);
}

.review-hero-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 14px;
    color: #fbbf24;
}

.review-hero-stars .rating-num {
    color: #fff;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
}

.review-hero-breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 16px;
    opacity: 0.6;
}

.review-hero-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.review-hero-breadcrumb a:hover {
    color: var(--accent);
}

.review-hero-breadcrumb span {
    color: var(--muted-2);
}

/* Info boxes grid in review hero */
.review-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.review-info-box {
    background: rgba(168,85,247,0.06);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 14px 16px;
    text-align: center;
}

.review-info-box .info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-2);
    margin-bottom: 4px;
}

.review-info-box .info-value {
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
}

.review-info-box .info-value.highlight {
    color: var(--accent);
}

.review-hero-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    font-weight: 900;
    font-size: 13px;
    padding: 14px 28px;
    text-decoration: none;
    margin-bottom: 24px;
    transition: transform 0.15s ease, filter 0.15s ease;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.review-hero-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    color: var(--bg);
}

.review-hero-disclaimer {
    font-size: 0.75rem;
    color: var(--muted-2);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .review-hero {
        padding: 72px 0 0;
        min-height: auto;
    }
    .review-info-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-hero h1 {
        font-size: 24px;
    }
    .review-hero-logo {
        width: 44px;
        height: 44px;
    }
}

.review-rating-large .rating-value {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

/* Review content sections */
.review-section {
    padding: 60px 0;
}

.review-section:nth-child(even) {
    background: var(--bg-soft);
}

.review-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.review-section p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 800px;
}

.review-section ul {
    list-style: none;
    padding: 0;
}

.review-section ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.review-section ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.pros-card, .cons-card {
    background: rgba(10,4,24,0.6);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    padding: 28px;
    transition: all 0.3s ease;
}

.pros-card {
    border-color: rgba(34,211,238,0.4);
}

.cons-card {
    border-color: rgba(168,85,247,0.5);
}

.pros-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.cons-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.pros-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(34,211,238,0.1);
}

.cons-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(168,85,247,0.1);
}

.pros-card li::before {
    content: "+";
    color: var(--accent);
}

.cons-card li::before {
    content: "\2212";
    color: var(--primary);
}

/* Info table for review pages */
.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(10,4,24,0.6);
    border-radius: 0;
    overflow: hidden;
    margin: 24px 0;
    border: 1px solid var(--border-strong);
}

.info-table td {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 15px;
}

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

.info-table td:first-child {
    color: var(--muted);
    font-weight: 500;
    width: 200px;
}

.info-table td:last-child {
    color: #fff;
}

.info-table tr {
    transition: background 0.2s ease;
}

.info-table tr:hover {
    background: rgba(168,85,247,0.04);
}

/* Payment methods grid */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.payment-tag {
    background: transparent;
    padding: 4px 10px;
    font-size: 10px;
    color: var(--muted-2);
    border: 1px solid var(--border);
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

/* Verdict box */
.verdict-box {
    background: linear-gradient(135deg, rgba(168,85,247,0.08) 0%, rgba(34,211,238,0.04) 100%);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    padding: 40px;
    text-align: center;
    margin-top: 32px;
    transition: all 0.4s ease;
}

.verdict-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(168,85,247,0.15);
}

.verdict-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.verdict-box p {
    max-width: 600px;
    margin: 0 auto 24px;
    color: var(--muted);
}

/* ===== CATEGORY PAGE STYLES ===== */
/* Hero header image */
.hero-header-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    margin-top: 72px;
    position: relative;
    z-index: 1;
    filter: brightness(0.3) saturate(1.2);
}

.hero .hero-header-img {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.2) saturate(1.2);
}

.hero.has-header-img {
    background: var(--bg);
}

.hero.has-header-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(34,211,238,0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(5,3,10,0.3) 0%, rgba(5,3,10,0.7) 100%);
    pointer-events: none;
}

.hero.has-header-img .container {
    position: relative;
    z-index: 1;
}

.hero.has-header-img h1,
.hero.has-header-img .hero-text,
.hero.has-header-img .hero-badge-top,
.hero.has-header-img .hero-stat-number,
.hero.has-header-img .hero-stat-text {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.hero.has-header-img h1 span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero.has-header-img .hero-badge-top {
    background: rgba(10,4,24,0.6);
    border-color: var(--border-strong);
    color: var(--muted);
}

.hero.has-header-img .hero-orb {
    display: none;
}

.category-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--ink) 50%, var(--bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-hero.has-header-img {
    padding-top: 0;
    background: var(--bg);
}

.category-hero.has-header-img .hero-header-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    margin-top: 72px;
    filter: brightness(0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.category-hero.has-header-img .container {
    position: relative;
    z-index: 1;
    padding-top: 120px;
}

.category-hero.has-header-img h1,
.category-hero.has-header-img .hero-text {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.category-hero.has-header-img h1 span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-hero.has-header-img::after {
    display: none;
}

@media (max-width: 768px) {
    .hero-header-img,
    .hero .hero-header-img,
    .category-hero.has-header-img .hero-header-img {
        height: 200px;
    }
}

.category-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
}

.category-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.16;
    color: #fff;
    text-transform: uppercase;
}

.category-hero h1 span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-hero .hero-text {
    max-width: 700px;
    margin: 0 auto 32px;
    color: var(--muted);
}

/* Content article */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.content-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.content-section p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 800px;
}

.content-section a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-section a:hover {
    color: #fff;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.content-section ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.content-section ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.content-section ul li::marker {
    color: var(--accent);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes blurIn {
    from { opacity: 0; filter: blur(10px); transform: translateY(20px); }
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(168,85,247,0.1); }
    50% { box-shadow: 0 0 40px rgba(168,85,247,0.2); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Scroll reveal base states */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-scale {
    transform: scale(0.92);
}

.reveal.reveal-blur {
    filter: blur(8px);
    transform: translateY(20px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    filter: blur(0);
}

/* Staggered children animation */
.stagger-children .reveal {
    transition-delay: calc(var(--stagger-index, 0) * 0.1s);
}

/* Smooth counter number animation */
.counter-value {
    display: inline-block;
    transition: all 0.3s ease;
}

/* Mouse follow glow */
.mouse-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

/* Smooth page load */
body {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168,85,247,0.3), transparent);
    margin: 0 auto;
    max-width: 600px;
}

/* ===== CATEGORY PAGE CARD COMPONENTS ===== */

/* Category hero stats row */
.hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
    justify-content: center;
}

.hero-stat {
    background: rgba(10,4,24,0.6);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    padding: 12px 20px;
    text-align: center;
    transition: all 0.15s ease;
    box-shadow: none;
}

.hero-stat:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.hero-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.04em;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Category casino list cards */
.cat-casino-card {
    background: rgba(168,85,247,0.06);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    padding: 18px 24px;
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.cat-casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-casino-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(168,85,247,0.12);
    transform: translateY(-2px);
    background: rgba(168,85,247,0.1);
}

.cat-casino-card:hover::before {
    left: 100%;
}

.cat-casino-logo {
    width: 90px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
}

.cat-casino-rank {
    background: rgba(34,211,238,0.08);
    border: 1px solid rgba(34,211,238,0.3);
    border-radius: 0;
    padding: 8px 16px;
    text-align: center;
    min-width: 50px;
    flex-shrink: 0;
}

.cat-casino-rank-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent);
}

.cat-casino-info {
    flex: 1;
    min-width: 200px;
}

.cat-casino-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.cat-casino-bonus {
    color: var(--accent);
    margin: 0 0 4px;
    font-weight: 600;
}

.cat-casino-meta {
    color: var(--muted);
    margin: 0;
    font-size: 0.85rem;
}

.cat-casino-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.cat-review-link {
    color: var(--muted);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cat-review-link:hover {
    color: var(--accent);
}

/* Comparison table enhanced */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(10,4,24,0.6);
    border-radius: 0;
    overflow: hidden;
    margin: 24px 0;
    border: 1px solid var(--border-strong);
}

.comparison-table th {
    background: rgba(168,85,247,0.15);
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-strong);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
    color: rgba(255,255,255,0.82);
}

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

.comparison-table tr {
    transition: background 0.2s ease;
}

.comparison-table tr:hover td {
    background: rgba(168,85,247,0.04);
}

/* ===== ARTICLE HERO (used on blog/article pages) ===== */
.article-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--ink) 50%, var(--bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

/* Blog hero */
.blog-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--ink) 50%, var(--bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
    .hero h1 span {
        animation: none;
    }
    .verdict-box {
        animation: none;
    }
    .mouse-glow {
        display: none;
    }
    body {
        animation: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1068px) {
    .hero h1,
    .review-hero h1,
    .category-hero h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 968px) {
    .top3-preview {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .casino-logo-container {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        gap: 8px;
    }

    .hero-stats-row {
        gap: 20px;
        padding: 24px 28px;
    }

    .hero-stat-number {
        font-size: 26px;
    }
}

@media (max-width: 800px) {
    .categories-grid {
        gap: 8px;
    }
}

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

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1,
    .review-hero h1,
    .category-hero h1 {
        font-size: 32px;
        letter-spacing: -0.03em;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-row .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-stats-row {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat-item {
        flex: 1 1 40%;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    .categories-grid {
        gap: 8px;
    }

    .category-card {
        padding: 8px 16px 8px 12px;
    }

    .category-card h3 {
        font-size: 13px;
    }

    .category-icon {
        font-size: 20px;
    }

    .hero-orb {
        opacity: 0.3;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .casino-features {
        justify-content: center;
    }

    .casino-cta {
        width: 100%;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .bonus-table {
        font-size: 14px;
    }

    .bonus-table th,
    .bonus-table td {
        padding: 12px 10px;
    }

    section {
        padding: 60px 0;
    }

    .review-section h2,
    .content-section h2 {
        font-size: 22px;
    }

    .review-meta {
        gap: 10px;
    }

    .review-meta-item {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* ===== SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    .hero h1,
    .review-hero h1,
    .category-hero h1 {
        font-size: 26px;
        letter-spacing: -0.03em;
    }

    .hero {
        min-height: 70vh;
        padding: 100px 0 40px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-stats-row {
        padding: 16px;
        gap: 12px;
    }

    .hero-stat-number {
        font-size: 20px;
    }

    .hero-stat-text {
        font-size: 11px;
    }

    .hero-cta-row .cta-button {
        max-width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .categories-grid {
        gap: 6px;
    }

    .category-card {
        padding: 8px 14px 8px 10px;
    }

    .category-card h3 {
        font-size: 12.5px;
    }

    .category-icon {
        font-size: 18px;
    }

    .casino-card {
        padding: 20px 16px;
    }

    .casino-name {
        font-size: 18px;
    }

    .casino-bonus {
        font-size: 13px;
    }

    .bonus-table {
        font-size: 12px;
    }

    .bonus-table th,
    .bonus-table td {
        padding: 8px 6px;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 16px;
    }

    .faq-answer-content {
        padding: 0 16px 16px;
        font-size: 13px;
    }

    .review-section h2,
    .content-section h2 {
        font-size: 20px;
    }

    .review-section h3,
    .content-section h3 {
        font-size: 17px;
    }

    .footer-grid {
        gap: 24px;
    }
}

/* ===== OVERRIDE INLINE STYLES FROM SUBPAGES ===== */
[style*="color:#1e293b"], [style*="color: #1e293b"] { color: var(--text) !important; }
[style*="color:#334155"], [style*="color: #334155"] { color: var(--muted) !important; }
[style*="color:#0f172a"], [style*="color: #0f172a"] { color: var(--text) !important; }
[style*="color:#6000cd"], [style*="color: #6000cd"] { color: var(--primary) !important; }
[style*="background: #f8f6ff"], [style*="background:#f8f6ff"], [style*="background: #f8fafc"], [style*="background:#f8fafc"] { background: rgba(168,85,247,0.06) !important; border-color: var(--border-strong) !important; }
[style*="border: 1px solid rgba(96,0,205"] { border-color: var(--border-strong) !important; }
[style*="box-shadow:0 4px 24px rgba(96,0,205"] { box-shadow: 0 4px 24px rgba(168,85,247,0.15) !important; }
[style*="color:#64748b"], [style*="color: #64748b"] { color: var(--muted-2) !important; }
[style*="background:#ffffff"], [style*="background: #ffffff"], [style*="background-color:#ffffff"], [style*="background-color: #ffffff"] { background: rgba(168,85,247,0.06) !important; }
[style*="border-color:#e2e8f0"], [style*="border-color: #e2e8f0"], [style*="border: 1px solid #e2e8f0"] { border-color: var(--border-strong) !important; }

/* ===== CONTENT FIGURES (auto-generated section images) ===== */
.content-figure {
    margin: 28px auto;
    max-width: 880px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    background: #0a0a1a;
}
.content-figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Side-by-side layout: figure floats right or left, text wraps around */
@media (min-width: 900px) {
    .content-figure.side-right {
        float: right;
        max-width: 44%;
        margin: 6px 0 18px 28px;
        clear: right;
    }
    .content-figure.side-left {
        float: left;
        max-width: 44%;
        margin: 6px 28px 18px 0;
        clear: left;
    }
}

/* Clear floats at end of each container */
.container::after {
    content: "";
    display: block;
    clear: both;
}

@media (max-width: 768px) {
    .content-figure { margin: 20px auto; border-radius: 10px; }
}
