/* ============================================
   LARA-LOUISE.COM - Online Casino ohne Lizenz
   Global Stylesheet — Premium Design System v2
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&display=swap');

/* --- CSS Variables --- */
:root {
    --primary: #141935;
    --primary-light: #1e2448;
    --accent: #f7c948;
    --accent-hover: #ffd766;
    --accent-deep: #d99f1f;
    --green: #2ee06e;
    --green-dark: #16a34a;
    --red: #ef4444;
    --blue: #4f8ef7;
    --purple: #8b5cf6;
    --dark: #0a0e20;
    --card-bg: #191f40;
    --card-border: #2b325e;
    --text: #dce4f2;
    --text-muted: #93a3c4;
    --text-bright: #ffffff;
    --border: #334155;
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --shadow: 0 12px 32px -8px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.25);
    --shadow-gold: 0 8px 28px -6px rgba(247,201,72,0.28);
    --gradient-gold: linear-gradient(135deg, #ffe08a 0%, #f7c948 45%, #e3a821 100%);
    --gradient-card: linear-gradient(180deg, #1d2449 0%, #171d3c 100%);
    --hairline: rgba(255,255,255,0.07);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
    --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background:
        radial-gradient(1100px 520px at 85% -5%, rgba(139,92,246,0.10) 0%, transparent 60%),
        radial-gradient(900px 460px at 8% 0%, rgba(247,201,72,0.06) 0%, transparent 55%),
        var(--dark);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: var(--dark); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    color: var(--text-bright);
    line-height: 1.25;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); margin-bottom: 0.875rem; margin-top: 2.5rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.75rem; margin-top: 1.5rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* --- Header & Navigation --- */
.site-header {
    background: var(--primary);
    border-bottom: 1px solid rgba(247,201,72,0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}
@supports (backdrop-filter: blur(1px)) {
    .site-header {
        background: rgba(14,18,40,0.82);
        backdrop-filter: blur(14px) saturate(150%);
        -webkit-backdrop-filter: blur(14px) saturate(150%);
    }
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.site-logo {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.site-logo a {
    color: var(--accent);
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
}
.site-logo a:hover { color: var(--text-bright); }
.site-logo .logo-secondary {
    font-size: 0.72em;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.85;
}

.main-nav { display: flex; align-items: center; }
.main-nav > ul {
    display: flex;
    gap: 4px;
    align-items: center;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: block;
    padding: 9px 14px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    color: var(--accent);
    background: rgba(247, 201, 72, 0.1);
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    transition: var(--transition);
}
.main-nav > ul > li:hover .dropdown-toggle::after { transform: rotate(225deg); top: 1px; }
.dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--primary-light);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    min-width: 260px;
    padding: 8px 0;
    box-shadow: var(--shadow);
    z-index: 100;
    max-height: 420px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.dropdown-menu li a {
    display: block;
    padding: 9px 16px;
    color: var(--text);
    font-size: 0.85rem;
    border-left: 2px solid transparent;
    transition: var(--transition);
}
.dropdown-menu li a:hover {
    background: rgba(247, 201, 72, 0.08);
    border-left-color: var(--accent);
    color: var(--accent);
    padding-left: 20px;
}
.main-nav > ul > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-bright);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-bright);
    margin: 5px 0;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(160deg, #151a3a 0%, #0b0f26 55%, #180f38 100%);
    border-bottom: 1px solid var(--hairline);
    padding: 72px 0 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    width: 900px;
    height: 600px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(247,201,72,0.10) 0%, transparent 65%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 70%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 70%);
    pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    max-width: 860px;
    margin: 0 auto 1.25rem;
    position: relative;
}
.hero h1 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-byline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 auto 1.5rem;
    text-align: center;
    letter-spacing: 0.3px;
}
.hero-byline a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}
.hero-byline a:hover { text-decoration: underline; }
.hero-byline .byline-sep { margin: 0 8px; opacity: 0.5; }

.hero-byline--with-photo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 18px 6px 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--hairline);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.hero-byline--with-photo .byline-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 3px rgba(247,201,72,0.15);
    flex-shrink: 0;
}
.hero-byline--with-photo .byline-text { line-height: 1.45; text-align: left; }

.hero .subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(247,201,72,0.25);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

/* --- Casino Cards --- */
.casino-list { padding: 24px 0 56px; }
.casino-list-title { text-align: center; margin-bottom: 40px; }
.casino-list-title h2 { margin-top: 1.5rem; }
.casino-card {
    display: grid;
    grid-template-columns: 50px 140px 1.3fr 1fr 1fr 1fr auto;
    align-items: center;
    gap: 18px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin-bottom: 16px;
    transition: var(--transition);
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), var(--shadow-sm);
}
.casino-card:hover {
    border-color: rgba(247,201,72,0.55);
    transform: translateY(-3px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), var(--shadow), 0 0 0 1px rgba(247,201,72,0.2);
}

/* Featured card (#1 Testsieger) */
.casino-card--featured {
    border-color: rgba(247,201,72,0.5);
    background:
        linear-gradient(180deg, rgba(247,201,72,0.07) 0%, rgba(247,201,72,0.02) 100%),
        var(--gradient-card);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), var(--shadow-gold);
    margin-top: 14px;
}
.card-ribbon {
    position: absolute;
    top: -13px;
    left: 24px;
    background: var(--gradient-gold);
    color: #141935;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(247,201,72,0.4);
    z-index: 2;
    white-space: nowrap;
}

.casino-logo {
    width: 140px;
    height: 110px;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    flex-shrink: 0;
}
.casino-logo-box {
    width: 140px;
    height: 110px;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* --- Review page logo --- */
.review-logo {
    display: block;
    width: 200px;
    height: 150px;
    margin: 0 auto 20px;
    object-fit: contain;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}
.review-logo-box {
    display: flex;
    width: 200px;
    height: 150px;
    margin: 0 auto 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}
.review-logo-box .review-logo {
    width: 100%;
    height: 100%;
    margin: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.casino-logo-box .casino-logo {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    filter:
        drop-shadow(1.5px 0 0 #000)
        drop-shadow(-1.5px 0 0 #000)
        drop-shadow(0 1.5px 0 #000)
        drop-shadow(0 -1.5px 0 #000)
        drop-shadow(1px 1px 0 #000)
        drop-shadow(-1px -1px 0 #000)
        drop-shadow(1px -1px 0 #000)
        drop-shadow(-1px 1px 0 #000);
}
.casino-rank {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--text-bright);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.casino-rank.top-3 {
    background: var(--gradient-gold);
    border-color: transparent;
    color: #141935;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(247,201,72,0.35);
}
.casino-info h3 {
    margin: 0 0 4px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-bright);
}
.casino-info .casino-license { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.casino-bonus { text-align: center; }
.casino-bonus .bonus-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: 0.2px;
    text-shadow: 0 0 20px rgba(46,224,110,0.3);
    line-height: 1.35;
}
.casino-bonus .bonus-detail { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-top: 2px; }
.casino-rating { text-align: center; }
.casino-rating .stars {
    color: var(--accent);
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-shadow: 0 0 14px rgba(247,201,72,0.35);
}
.casino-rating .rating-score { font-size: 1rem; font-weight: 800; color: var(--text-bright); margin-top: 2px; }
.casino-features { display: flex; flex-wrap: wrap; gap: 5px; }
.feature-tag {
    display: inline-block;
    background: rgba(79,142,247,0.12);
    border: 1px solid rgba(79,142,247,0.25);
    color: var(--blue);
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
}
.feature-tag.crypto { background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.3); color: #a78bfa; }
.feature-tag.fast { background: rgba(46,224,110,0.1); border-color: rgba(46,224,110,0.25); color: var(--green); }
.casino-cta {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: center;
}
.casino-cta .btn { width: 100%; min-width: 158px; }
.casino-cta .btn-primary::after {
    content: '\2192';
    font-weight: 700;
    transition: transform 0.25s ease;
}
.casino-cta .btn-primary:hover::after { transform: translateX(3px); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gradient-gold);
    color: #141935;
    box-shadow: 0 4px 16px rgba(247,201,72,0.25), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
}
.btn-primary:hover {
    color: #141935;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(247,201,72,0.4), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:active { transform: translateY(0); }
.btn-secondary { background: transparent; color: var(--accent); border: 1px solid rgba(247,201,72,0.5); }
.btn-secondary:hover { background: rgba(247,201,72,0.1); border-color: var(--accent); transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 15px 38px; font-size: 1rem; }
.btn-green {
    background: linear-gradient(135deg, #34e57a, #16a34a);
    color: #fff;
    box-shadow: 0 4px 16px rgba(46,224,110,0.25);
}
.btn-green:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,224,110,0.35); }
.review-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-color: rgba(147,163,196,0.35);
    text-underline-offset: 3px;
}
.review-link:hover { color: var(--accent); text-decoration-color: var(--accent); }

/* --- Comparison Table --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
}
.comparison-table th {
    background: var(--primary-light);
    padding: 15px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    border-bottom: 2px solid rgba(247,201,72,0.6);
}
.comparison-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(43,50,94,0.6);
    font-size: 0.9rem;
}
.comparison-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tr:hover { background: rgba(247,201,72,0.04); }
.comparison-table .check { color: var(--green); font-weight: 700; }
.comparison-table .cross { color: var(--red); font-weight: 700; }

/* --- Content Sections --- */
.content-section { padding: 56px 0; }
.content-section:nth-child(even) { background: var(--primary); }
.content-block {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
    margin: 24px 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.content-block h2 { margin-top: 0; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pros, .cons {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--card-border);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros li::before { content: '\2713'; color: var(--green); margin-right: 10px; font-weight: 700; }
.cons li::before { content: '\2717'; color: var(--red); margin-right: 10px; font-weight: 700; }
.pros li, .cons li { padding: 7px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.pros li:last-child, .cons li:last-child { border-bottom: none; }

.info-box {
    background: rgba(79,142,247,0.08);
    border: 1px solid rgba(79,142,247,0.18);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 22px;
    margin: 24px 0;
}
.info-box.warning { background: rgba(247,201,72,0.07); border-color: rgba(247,201,72,0.2); border-left-color: var(--accent); }
.info-box.danger { background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.2); border-left-color: var(--red); }
.info-box p { margin-bottom: 0; }

/* --- FAQ --- */
.faq-section { padding: 56px 0; }
.faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(247,201,72,0.35); }
.faq-item.active { border-color: rgba(247,201,72,0.5); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 22px;
    color: var(--text-bright);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--accent);
}
.faq-item.active .faq-question::after {
    content: '\2212';
    background: rgba(247,201,72,0.12);
    border-color: rgba(247,201,72,0.4);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 22px 20px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }
.faq-item.active .faq-answer { max-height: 500px; }

/* --- Author Box / EEAT --- */
.author-box {
    display: flex;
    gap: 22px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
    margin: 30px 0;
    align-items: flex-start;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.author-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(247,201,72,0.35), var(--primary-light) 70%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 4px rgba(247,201,72,0.12), 0 0 24px rgba(247,201,72,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
img.author-avatar.author-photo {
    object-fit: cover;
    background: var(--primary-light);
    padding: 0;
    text-shadow: none;
}
img.author-avatar.author-photo-lg {
    width: 100px;
    height: 100px;
}
.author-info h4 { margin-bottom: 4px; }
.author-info .author-title {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}
.author-info p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* --- Review Page --- */
.review-hero {
    background: linear-gradient(160deg, #151a3a 0%, #0b0f26 100%);
    border-bottom: 1px solid var(--hairline);
    padding: 56px 0 44px;
}
.review-meta { display: flex; gap: 20px; flex-wrap: wrap; margin: 15px 0; }
.review-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted); }
.rating-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(247,201,72,0.12);
    border: 1px solid rgba(247,201,72,0.3);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.rating-large .stars { color: var(--accent); font-size: 1.2rem; letter-spacing: 2px; text-shadow: 0 0 14px rgba(247,201,72,0.35); }
.rating-large .score { color: var(--accent); font-weight: 800; font-size: 1.3rem; font-family: var(--font-display); }

.review-toc {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 20px 0;
}
.review-toc h4 { color: var(--accent); margin-bottom: 12px; }
.review-toc ol { list-style: decimal; padding-left: 20px; }
.review-toc li { padding: 4px 0; }
.review-toc a { color: var(--text-muted); font-size: 0.9rem; }
.review-toc a:hover { color: var(--accent); }

/* --- Bonus Box --- */
.bonus-highlight {
    background:
        radial-gradient(600px 200px at 50% 0%, rgba(247,201,72,0.12) 0%, transparent 70%),
        var(--gradient-card);
    border: 1px solid rgba(247,201,72,0.5);
    border-radius: var(--radius);
    padding: 34px 30px;
    text-align: center;
    margin: 30px 0;
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.06);
}
.bonus-highlight .bonus-value {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}
.bonus-highlight .bonus-desc { color: var(--text-muted); margin-bottom: 18px; }

/* --- Payment Grid --- */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin: 20px 0;
}
.payment-item {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 14px 12px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}
.payment-item:hover { border-color: rgba(247,201,72,0.4); transform: translateY(-2px); }

/* --- Guide Cards --- */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.guide-card {
    display: block;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 26px;
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.guide-card:hover {
    border-color: rgba(247,201,72,0.5);
    transform: translateY(-4px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), var(--shadow);
}
.guide-card .guide-tag {
    display: inline-block;
    background: rgba(247,201,72,0.12);
    border: 1px solid rgba(247,201,72,0.3);
    color: var(--accent);
    padding: 3px 11px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.guide-card h3 { font-size: 1.15rem; margin-bottom: 8px; margin-top: 0; color: var(--text-bright); }
.guide-card:hover h3 { color: var(--accent); }
.guide-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }

/* --- Footer --- */
.site-footer {
    background: #0c1027;
    border-top: 1px solid var(--hairline);
    padding: 56px 0 0;
    margin-top: 64px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
}
.footer-col h4 {
    color: var(--accent);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}
.footer-col p { font-size: 0.85rem; color: var(--text-muted); }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.85rem; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 3px; }
.footer-bottom {
    border-top: 1px solid var(--hairline);
    padding: 22px 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.responsible-gambling-notice {
    background: rgba(239,68,68,0.07);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    margin: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    margin: 0 8px;
    box-shadow: 0 2px 8px rgba(239,68,68,0.3);
}

.breadcrumb { padding: 14px 0; font-size: 0.8rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .separator { margin: 0 8px; opacity: 0.5; }

.affiliate-disclosure {
    background: rgba(79,142,247,0.06);
    border: 1px solid rgba(79,142,247,0.18);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.toc {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 26px;
    margin: 20px 0;
}
.toc h4 { color: var(--accent); margin-bottom: 12px; font-size: 1rem; }
.toc ul { padding-left: 0; }
.toc ul li { padding: 6px 0; border-bottom: 1px solid rgba(43,50,94,0.5); }
.toc ul li:last-child { border-bottom: none; }
.toc a { color: var(--text); font-size: 0.9rem; }
.toc a:hover { color: var(--accent); padding-left: 4px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .casino-card { grid-template-columns: 44px 110px 1fr 1fr; gap: 12px; }
    .casino-features { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .casino-logo { width: 110px; height: 90px; }
    .casino-logo-box { width: 110px; height: 90px; }
}

@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.4rem; }
    .hero h1 { font-size: 1.875rem; }
    .main-nav { display: none; }
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        border-top: 1px solid var(--card-border);
        padding: 20px;
        box-shadow: var(--shadow);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .main-nav.active > ul { flex-direction: column; gap: 0; align-items: stretch; }
    .main-nav.active > ul > li > a { padding: 12px 16px; }
    .main-nav.active .dropdown-menu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        background: transparent;
        max-height: none;
    }
    .mobile-toggle { display: block; }
    main { display: flex; flex-direction: column; }
    main > section.hero { order: -3; }
    main > section.casino-list { order: -2; padding-top: 4px; }
    main > section.casino-list .casino-list-title h2 { margin-top: 16px; }
    main > div:has(> .affiliate-disclosure) { order: -1; }
    .hero { padding: 24px 0 10px; }
    .hero h1 { margin-bottom: 0.5rem; }
    .hero .subtitle { display: none; }
    .hero-byline { margin-bottom: 0.5rem; }
    .hero-badges { display: none; }
    .casino-list-title { margin-bottom: 16px; }
    .casino-card { grid-template-columns: 1fr; text-align: center; padding: 24px 20px; }
    .casino-card--featured { margin-top: 20px; }
    .card-ribbon { left: 50%; transform: translateX(-50%); }
    .casino-rank { margin: 0 auto; }
    .casino-logo { margin: 0 auto; width: 160px; height: 130px; }
    .casino-logo-box { margin: 0 auto; width: 160px; height: 130px; }
    .casino-cta { flex-direction: column; align-items: stretch; }
    .casino-cta .btn { width: 100%; }
    .pros-cons { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .guide-grid { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
    .author-box { flex-direction: column; align-items: center; text-align: center; }
    .comparison-table { display: block; overflow-x: auto; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .casino-card:hover, .guide-card:hover, .btn:hover, .payment-item:hover { transform: none; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.last-updated { font-size: 0.8rem; color: var(--text-muted); font-style: italic; margin-bottom: 20px; }

/* ============================================
   v2.1 — Hero rebuild & conversion components
   ============================================ */

/* --- Hero entrance --- */
@keyframes heroRise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero .container > * { animation: heroRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero .container > *:nth-child(2) { animation-delay: 0.07s; }
.hero .container > *:nth-child(3) { animation-delay: 0.14s; }
.hero .container > *:nth-child(4) { animation-delay: 0.21s; }
.hero .container > *:nth-child(5) { animation-delay: 0.28s; }
.hero .container > *:nth-child(6) { animation-delay: 0.35s; }
.hero .container > *:nth-child(7) { animation-delay: 0.42s; }

/* --- Hero eyebrow --- */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247,201,72,0.6));
}
.hero-eyebrow::after { background: linear-gradient(90deg, rgba(247,201,72,0.6), transparent); }

/* --- Hero benefit chips --- */
.hero-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.75rem 0 0;
}
.hero-benefit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46,224,110,0.07);
    border: 1px solid rgba(46,224,110,0.25);
    color: var(--text);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
}
.hero-benefit::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(46,224,110,0.18);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 800;
}

/* --- Hero CTA row --- */
.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.hero-cta-row .btn-primary::after {
    content: '\2193';
    font-weight: 700;
    transition: transform 0.25s ease;
}
.hero-cta-row .btn-primary:hover::after { transform: translateY(3px); }

/* --- Hero stat bar --- */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(28px, 5vw, 64px);
    margin-top: 2.75rem;
    padding-top: 1.9rem;
    border-top: 1px solid var(--hairline);
}
.hero-stat { text-align: center; }
.hero-stat .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-stat .stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* --- Section eyebrow --- */
.section-eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* --- Quick picks --- */
.quick-picks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 44px;
}
.quick-pick {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 18px 20px;
    position: relative;
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.quick-pick:hover {
    transform: translateY(-3px);
    border-color: rgba(247,201,72,0.5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), var(--shadow);
}
.quick-pick img {
    width: 62px;
    height: 50px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    flex-shrink: 0;
}
.quick-pick .qp-text { min-width: 0; }
.quick-pick .qp-text strong {
    display: block;
    color: var(--text-bright);
    font-family: var(--font-display);
    font-size: 1.02rem;
    line-height: 1.3;
}
.quick-pick .qp-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.quick-pick .qp-label {
    position: absolute;
    top: -11px;
    left: 16px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--gradient-gold);
    color: #141935;
    white-space: nowrap;
}
.quick-pick .qp-label.qp-green { background: linear-gradient(135deg, #34e57a, #16a34a); color: #06210f; }
.quick-pick .qp-label.qp-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); color: #fff; }

/* --- Sticky mobile CTA bar --- */
.mobile-cta-bar { display: none; }

@media (max-width: 768px) {
    .hero-eyebrow { font-size: 0.68rem; letter-spacing: 2px; }
    .hero-benefits, .hero-cta-row, .hero-stats { display: none; }
    .quick-picks { display: none; }
    .mobile-cta-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 900;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        background: rgba(12,16,36,0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(247,201,72,0.3);
        box-shadow: 0 -8px 24px rgba(0,0,0,0.45);
    }
    .mobile-cta-bar .mcb-info { line-height: 1.3; min-width: 0; }
    .mobile-cta-bar .mcb-label {
        display: block;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--accent);
    }
    .mobile-cta-bar strong {
        color: var(--text-bright);
        font-family: var(--font-display);
        font-size: 0.98rem;
        white-space: nowrap;
    }
    .mobile-cta-bar .btn { flex-shrink: 0; }
    body { padding-bottom: 68px; }
}

/* --- Quick-pick CTA --- */
.quick-pick { flex-wrap: wrap; }
.quick-pick .qp-text strong a { color: var(--text-bright); }
.quick-pick .qp-text strong a:hover { color: var(--accent); }
.quick-pick .qp-cta {
    width: 100%;
    margin-top: 6px;
    padding: 10px 16px;
    font-size: 0.8rem;
}

/* --- Numbered step list --- */
.step-list { counter-reset: step; list-style: none; margin: 24px 0; padding: 0; }
.step-list > li {
    counter-increment: step;
    position: relative;
    padding: 0 0 28px 68px;
}
.step-list > li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    color: #141935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 4px 14px rgba(247,201,72,0.3);
}
.step-list > li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 52px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, rgba(247,201,72,0.4), var(--card-border));
}
.step-list h4 { margin: 6px 0 8px; font-size: 1.1rem; }
.step-list p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0; }

/* --- Pre-signup checklist grid --- */
.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}
.check-item {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: var(--transition);
}
.check-item:hover { border-color: rgba(46,224,110,0.4); }
.check-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    font-size: 1rem;
}
.check-item h4::before {
    content: '\2713';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(46,224,110,0.15);
    border: 1px solid rgba(46,224,110,0.35);
    border-radius: 50%;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 800;
}
.check-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.check-item .warn { color: var(--accent); font-weight: 600; }

@media (max-width: 768px) {
    .check-grid { grid-template-columns: 1fr; }
    .step-list > li { padding-left: 56px; }
    .step-list > li::before { width: 38px; height: 38px; font-size: 1rem; }
    .step-list > li:not(:last-child)::after { left: 18px; top: 46px; }
}
