:root {
    --bg: #f7f7f3;
    --bg-card: #ffffff;
    --bg-alt: #eef0ec;
    --text: #09090b;
    --text-muted: #52525b;
    --text-light: #71717a;
    --border: #dddcd3;
    --accent: #09090b;
    --accent-foreground: #fafaf9;
    --accent-light: #f4f4ef;
    --brand: #C3FF79;
    --brand-soft: rgba(195, 255, 121, 0.16);
    --brand-border: rgba(195, 255, 121, 0.36);
    --fill-strong: #18181b;
    --fill-soft: #52525b;
    --fill-muted: #d4d4d8;
    --fill-strong-fg: #fafaf9;
    --fill-soft-fg: #fafaf9;
    --fill-muted-fg: #09090b;
    --radius: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(9, 9, 11, 0.05);
    --shadow: 0 8px 30px rgba(9, 9, 11, 0.06);
    --shadow-lg: 0 20px 40px rgba(9, 9, 11, 0.08);
    --shadow-xl: 0 30px 70px rgba(9, 9, 11, 0.12);
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg: #09090b;
    --bg-card: #111113;
    --bg-alt: #1b1b1d;
    --text: #fafafa;
    --text-muted: #a1a1aa;
    --text-light: #71717a;
    --border: #27272a;
    --accent: #fafafa;
    --accent-foreground: #09090b;
    --accent-light: #18181b;
    --brand: #C3FF79;
    --brand-soft: rgba(195, 255, 121, 0.14);
    --brand-border: rgba(195, 255, 121, 0.32);
    --fill-strong: #fafafa;
    --fill-soft: #d4d4d8;
    --fill-muted: #a1a1aa;
    --fill-strong-fg: #09090b;
    --fill-soft-fg: #09090b;
    --fill-muted-fg: #09090b;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.28);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.32);
    --shadow-xl: 0 30px 70px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    isolation: isolate;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top center, rgba(195, 255, 121, 0.12), transparent 34%),
        linear-gradient(to bottom, rgba(9, 9, 11, 0.02), transparent 26%);
    opacity: 1;
    z-index: -1;
}

[data-theme="dark"] body::before { content: none; }

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

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 9, 11, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(195, 255, 121, 0.18);
    transition: var(--transition);
}

[data-theme="dark"] nav { background: rgba(9, 9, 11, 0.82); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    gap: 24px;
    position: relative;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    min-width: 0;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo:hover { opacity: 0.88; }

.nav-logo-image {
    display: block;
    width: auto;
    height: 20px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-actions {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links a {
    color: rgba(250, 250, 250, 0.72);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover { color: #fafafa; }
.nav-links a.is-active { color: #fafafa; }

.mobile-quick-nav {
    display: none;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    font-size: 1rem;
    color: #fafafa;
    transition: var(--transition);
}

.theme-toggle-icon {
    width: 17px;
    height: 17px;
    display: block;
}

.theme-toggle-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.theme-toggle-moon { display: none; }
[data-theme="dark"] .theme-toggle-sun { display: none; }
[data-theme="dark"] .theme-toggle-moon { display: block; }

.theme-toggle:hover {
    background: var(--brand);
    color: #181818;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    color: #fafafa;
    transition: var(--transition);
}

.mobile-menu-btn i {
    width: 18px;
    height: 18px;
    display: block;
}

.mobile-menu-btn:hover {
    background: var(--brand);
    color: #181818;
}

.mobile-menu-btn[aria-expanded="true"] {
    background: var(--brand);
    color: #181818;
}

.hero {
    padding: 48px 0 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero > .container,
main {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: none;
}

[data-theme="dark"] .hero::before { content: none; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(195, 255, 121, 0.16);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    border: 1px solid var(--brand-border);
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

[data-theme="dark"] .hero-badge {
    background: rgba(195, 255, 121, 0.1);
    border-color: var(--brand-border);
}

.hero h1 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0;
}

.section { padding: 80px 0; }
#reviews { padding-top: 14px; }
.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

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

.quick-pick {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.quick-pick:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.quick-pick-cat {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.quick-pick-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }

.quick-pick-price {
    font-family: 'Geist Mono', monospace;
    font-weight: 600;
    color: var(--text);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 9px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    font-family: inherit;
}

.filter-btn:hover { color: var(--text); }

.filter-btn.active {
    background: var(--brand);
    color: #181818;
}

.search-panel {
    max-width: 720px;
    margin: 0 auto 22px;
}

.search-field { position: relative; }

.search-input {
    width: 100%;
    min-height: 50px;
    display: block;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-card);
    color: var(--text);
    font: inherit;
    line-height: 50px;
    box-shadow: var(--shadow-sm);
    outline: none;
    transition: var(--transition);
    appearance: none;
}

.search-input:focus {
    box-shadow: var(--shadow-sm);
}

.empty-state {
    margin-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-weight: 600;
}

.casino-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.casino-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.casino-card:hover {
    box-shadow: var(--shadow-xl);
}

.casino-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.casino-card-link:focus-visible {
    outline: none;
}

.casino-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.casino-card-left { padding: 40px; }

.casino-card-right {
    padding: 40px;
    background: var(--bg-alt);
    border-left: 1px solid var(--border);
}

.casino-overview {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.casino-copy {
    min-width: 0;
    flex: 1;
}

.casino-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.casino-thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: default;
    transition: var(--transition);
}

.casino-thumb:hover {
    box-shadow: none;
}

.casino-thumb {
    position: relative;
    background: #181818;
    color: #fff;
    border-color: var(--brand-border);
}

.casino-rank {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    font-weight: 800;
}

.casino-mark {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.casino-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

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

.bonus-text {
    display: inline-block;
    max-width: 100%;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
}

.casino-price {
    font-family: 'Geist Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.casino-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.feature-tags,
.payment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tags {
    margin-top: 18px;
}

.feature-tags span,
.payment-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg);
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 700;
}

[data-theme="dark"] .feature-tags span,
[data-theme="dark"] .payment-tags span {
    background: rgba(250, 250, 250, 0.03);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 22px;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--brand);
    color: #181818;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 800;
    transition: var(--transition);
}

.casino-card-link:hover .cta-link {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.casino-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.spec-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
}

[data-theme="dark"] .spec-item { background: var(--bg-card); }

.spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    font-weight: 600;
}

.spec-value { font-size: 0.9rem; font-weight: 600; margin-top: 2px; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.pros-title,
.cons-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 10px;
}

.pros-title { color: var(--text); }
.cons-title { color: var(--text-muted); }

.pros-list,
.cons-list { list-style: none; }

.pros-list li,
.cons-list li {
    font-size: 0.85rem;
    padding: 4px 0 4px 20px;
    position: relative;
    color: var(--text-muted);
}

.pros-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--text);
    font-weight: 700;
    font-family: 'Geist Mono', monospace;
}

.cons-list li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-weight: 700;
    font-family: 'Geist Mono', monospace;
}

.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.compare-table th {
    background: var(--bg-alt);
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.compare-table th:hover { color: var(--accent); }
.compare-table th .sort-arrow { margin-left: 4px; opacity: 0.4; }
.compare-table th.sorted .sort-arrow { opacity: 1; color: var(--accent); }

.compare-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg-alt); }
.compare-table tbody tr[data-href] { cursor: pointer; }
.compare-table tbody tr[data-href]:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: -2px;
}
.table-name { font-weight: 700; }

.table-price {
    font-family: 'Geist Mono', monospace;
    font-weight: 600;
    color: var(--text);
}

.table-rating {
    font-family: 'Geist Mono', monospace;
    font-weight: 600;
}

.mobile-compare-controls {
    display: none;
}

.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.chart-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.chart-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.bar-chart { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: flex; align-items: center; gap: 12px; }

.bar-label {
    width: 120px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bar-track {
    flex: 1;
    height: 28px;
    background: var(--bg-alt);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-foreground);
}

.radar-container { text-align: center; }

.radar-select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 16px;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 16px;
    cursor: pointer;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.method-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.method-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.method-icon svg {
    width: 20px;
    height: 20px;
}

.method-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.method-card p { font-size: 0.85rem; color: var(--text-muted); }

.guide-card {
    max-width: 880px;
    margin: 28px auto 0;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
}

.guide-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.guide-card p {
    color: var(--text-muted);
    line-height: 1.75;
}

.guide-card p + p {
    margin-top: 14px;
}

.responsible-note {
    color: var(--text) !important;
    font-weight: 700;
}

.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question::after { content: '−'; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.7;
}

body.modal-open { overflow: hidden; }
body.modal-open .mobile-dock,
body.modal-open .back-to-top {
    opacity: 0;
    pointer-events: none;
}

body.mobile-menu-open .mobile-dock,
body.mobile-menu-open .back-to-top {
    opacity: 0;
    pointer-events: none;
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.image-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.image-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 9, 11, 0.76);
    backdrop-filter: blur(10px);
}

.image-modal-panel {
    position: relative;
    width: min(560px, 100%);
    padding: 20px;
    border-radius: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}

.image-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
}

.image-modal-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    max-height: 70vh;
    padding: 20px;
    border-radius: 22px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    overflow: hidden;
}

.image-modal-frame img {
    width: 100%;
    max-width: 420px;
    max-height: 58vh;
    object-fit: contain;
    display: block;
    border-radius: 24px;
    overflow: hidden;
}

.image-modal-title {
    margin-top: 14px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-site-name {
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.footer-meta { margin-top: 8px; }
footer a { color: var(--text); text-decoration: none; }

.scroll-progress {
    position: fixed;
    top: 64px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--brand);
    z-index: 101;
    transition: width 0.05s linear;
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 50;
}

[data-theme="dark"] .back-to-top { background: rgba(17, 17, 19, 0.9); }
.back-to-top.visible { opacity: 1; transform: translateY(0); }

.back-to-top:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

.mobile-dock { display: none; }

@media (max-width: 900px) {
    .casino-card-inner { grid-template-columns: 1fr; }
    .casino-card-right { border-left: none; border-top: 1px solid var(--border); }
    .charts-grid { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .casino-overview { align-items: center; }
}

@media (max-width: 640px) {
    html { scroll-padding-top: 0; }

    body {
        min-height: 100dvh;
        padding-bottom: 0;
    }

    .container { padding: 0 16px; }

    nav { display: none; }

    .nav-inner {
        height: 72px;
        gap: 16px;
    }

    .nav-center {
        gap: 0;
        width: 100%;
    }

    .scroll-progress { display: none; }

    .nav-links,
    .nav-links.open { display: none; }

    .mobile-menu-btn { display: none; }
    .nav-logo-image { height: 20px; }

    .mobile-quick-nav { display: none; }

    .hero {
        padding: 18px 0 6px;
        text-align: left;
    }

    .hero h1 {
        font-size: clamp(1.1rem, 5.5vw, 1.5rem);
        line-height: 1.08;
        margin-bottom: 0;
    }

    .section {
        padding: 36px 0;
    }

    #reviews { padding-top: 8px; }

    .section-header {
        margin-bottom: 24px;
        text-align: left;
    }

    .section-header p {
        margin: 0;
        max-width: none;
    }

    .quick-picks {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .quick-pick {
        padding: 18px 20px;
        border-radius: 22px;
    }

    .filter-bar {
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 10px;
        margin: 0 -16px 24px;
        padding: 4px 16px;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .filter-bar::-webkit-scrollbar { display: none; }

    .filter-btn {
        flex: 0 0 auto;
        padding: 12px 18px;
        font-size: 0.82rem;
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
    }

    .search-panel {
        margin: 0 0 18px;
    }

    .search-input {
        min-height: 48px;
        border-radius: 16px;
        font-size: 0.92rem;
    }

    .casino-card {
        border-radius: 28px;
        box-shadow: var(--shadow-sm);
    }

    .casino-card-left,
    .casino-card-right { padding: 20px; }

    .casino-overview {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 16px;
    }

    .casino-name {
        font-size: 1.28rem;
        line-height: 1.15;
    }

    .casino-price-rating {
        flex-wrap: wrap;
        gap: 10px 14px;
        margin-bottom: 0;
    }

    .bonus-text {
        font-size: 0.92rem;
    }

    .casino-thumb {
        width: 56px;
        height: 56px;
        padding: 8px;
        border-radius: 14px;
        margin-left: 0;
    }

    .casino-mark {
        font-size: 2.25rem;
    }

    .casino-excerpt {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .casino-specs {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .spec-item {
        border-radius: 14px;
        padding: 11px 12px;
    }

    .pros-cons { gap: 18px; }

    .mobile-compare-controls {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }

    .mobile-compare-label {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-light);
    }

    .mobile-compare-select {
        width: 100%;
        min-height: 48px;
        padding: 0 16px;
        border-radius: 16px;
        border: 1px solid var(--border);
        background: var(--bg-card);
        color: var(--text);
        font: inherit;
        box-shadow: var(--shadow-sm);
    }

    .table-wrapper {
        overflow: visible;
        border: none;
        background: transparent;
        border-radius: 0;
    }

    .compare-table,
    .compare-table tbody,
    .compare-table tr,
    .compare-table td {
        display: block;
        width: 100%;
    }

    .compare-table thead {
        display: none;
    }

    .compare-table tbody {
        display: grid;
        gap: 12px;
    }

    .compare-table tr {
        padding: 16px 18px;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: var(--bg-card);
        box-shadow: var(--shadow-sm);
    }

    .compare-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        padding: 10px 0;
        white-space: normal;
        border-bottom: 1px solid var(--border);
    }

    .compare-table td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .compare-table tr:last-child td {
        border-bottom: 1px solid var(--border);
    }

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

    .compare-table td::before {
        content: attr(data-label);
        flex: 0 0 86px;
        color: var(--text-light);
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .compare-table tr:hover td {
        background: transparent;
    }

    .charts-grid { gap: 16px; }

    .chart-card {
        padding: 20px;
        border-radius: 24px;
    }

    .bar-chart { gap: 14px; }

    .bar-row {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .bar-label {
        width: auto;
        text-align: left;
        font-size: 0.76rem;
    }

    .bar-track { height: 26px; }

    .radar-select {
        width: 100%;
        margin-bottom: 18px;
    }

    #radarCanvas {
        width: min(100%, 320px);
        height: auto;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .method-card {
        padding: 20px;
        border-radius: 22px;
    }

    .guide-card {
        padding: 20px;
        border-radius: 22px;
    }

    .faq-question {
        padding: 18px 0;
        font-size: 0.96rem;
        line-height: 1.4;
    }

    .faq-answer-inner {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .image-modal {
        padding: 16px;
    }

    .image-modal-panel {
        padding: 16px;
        border-radius: 24px;
    }

    .image-modal-frame {
        min-height: 240px;
        padding: 16px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }

    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 420px) {
    .casino-specs { grid-template-columns: 1fr; }

    .mobile-quick-nav a {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.74rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
