/* =========================================================================
   ApostaAnalise — "Cyber-Analytical Terminal" Theme
   High-end dark mode dashboard with cyan & purple neon glows.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Color Palette */
    --bg-base: #040508;
    --bg-surface: #0a0d14;
    --bg-glass: rgba(10, 13, 20, 0.6);
    --bg-glass-hover: rgba(0, 240, 255, 0.05);

    --accent-cyan: #00f0ff;
    --accent-cyan-glow: rgba(0, 240, 255, 0.3);
    --accent-purple: #7000ff;

    --text-pure: #ffffff;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;

    --border-dim: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 240, 255, 0.2);

    /* Fonts */
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Metrics */
    --wrap: 1200px;
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-pill: 100px;
    --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ── 1. Reset & Setup ── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

/* Selection */
::selection {
    background: var(--accent-cyan);
    color: #000;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px;
}

/* 18+ Top Bar */
.age-bar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-dim);
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 8px 0;
    text-align: left;
    position: relative;
    z-index: 100;
}

.age-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.age-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.age-right {
    margin-left: auto;
    white-space: nowrap;
}

.age-bar strong {
    color: var(--accent-cyan);
}

/* ── 2. Floating Header ── */
.header-wrapper {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-wrapper.scrolled {
    position: fixed;
    top: 15px;
}

.header-glass {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-pill);
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.header-wrapper.scrolled .header-glass {
    padding: 8px 25px;
    border-color: var(--accent-cyan-glow);
    background: rgba(4, 5, 8, 0.8);
}

.logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-pure);
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--accent-cyan);
    margin-right: 8px;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px var(--accent-cyan-glow));
}

.nav-desktop {
    display: flex;
    gap: 30px;
}

.nav-desktop a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active-link {
    color: var(--text-pure);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.nav-desktop a:hover::after,
.nav-desktop a.active-link::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10002;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-pure);
    transition: var(--transition);
    border-radius: 2px;
}

/* ── 3. Mobile Sidebar ── */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nav-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--accent-cyan-glow);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
}

.nav-sidebar.is-open {
    transform: translateX(0);
}

.nav-sidebar a {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.nav-sidebar a:hover {
    color: var(--accent-cyan);
    padding-left: 10px;
}

/* ── 4. Cinematic Hero ── */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Abstract Cyber Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 30%, rgba(112, 0, 255, 0.15), transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(0, 240, 255, 0.1), transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border-dim) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-dim) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(3);
    z-index: -1;
    opacity: 0.3;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-pure);
}

.cyber-text {
    background: linear-gradient(to right, var(--text-pure), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Spotlight Casino (The #1 Pick) */
.spotlight-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-glass);
    border: 1px solid var(--accent-cyan-glow);
    border-radius: var(--radius-xl);
    padding: 4px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.15);
    backdrop-filter: blur(10px);
}

.spotlight-card::before {
    content: 'TOP 1 ESCOLHA';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: #000;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    letter-spacing: 1px;
    box-shadow: 0 0 15px var(--accent-cyan-glow);
}

.spotlight-inner {
    background: var(--bg-surface);
    border-radius: 20px;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.spotlight-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-head);
}

.spotlight-bonus {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.btn-cyber {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-cyan);
    color: #000;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-cyber:hover {
    box-shadow: 0 0 25px var(--accent-cyan);
    transform: translateY(-2px);
}

/* ── 5. The Monolith Leaderboard ── */
.section {
    padding: 100px 0;
    position: relative;
}

/* ── 5.5. Gambling Backgrounds ── */
.casino-bg {
    position: relative;
    min-height: 380px;
    background-attachment: local;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.casino-bg--1 {
    background-image: url('https://images.unsplash.com/photo-1742666978255-007e0fcfc0c5?w=1920&q=80');
}

.casino-bg--2 {
    background-image: url('https://images.unsplash.com/photo-1542145272-597f274b38ab?w=1920&q=80');
}

.casino-bg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 5, 8, 0.72) 0%, rgba(4, 5, 8, 0.92) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.casino-bg__content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.casino-bg__title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: var(--text-pure);
    margin-bottom: 16px;
    line-height: 1.2;
}

.casino-bg__text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

/* Extra top spacing for static internal pages with floating header */
.static-page-main {
    padding-top: 150px;
}

.legal-page-title {
    text-align: left;
    font-size: clamp(2rem, 4.2vw, 2.8rem);
    margin-bottom: 34px;
}

.holo-card.legal-content-card {
    max-width: 960px;
    margin: 0 auto;
    padding: 34px;
    border-color: var(--accent-cyan-glow);
    background: linear-gradient(145deg, rgba(0, 240, 255, 0.05), rgba(255, 255, 255, 0.01));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(0, 240, 255, 0.08);
}

.holo-card.legal-content-card:hover {
    transform: none;
    border-color: var(--accent-cyan-glow);
}

.holo-card.legal-content-card:hover::before {
    opacity: 0;
}

.holo-card.legal-content-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0 0 14px;
}

.holo-card.legal-content-card > br {
    display: none;
}

.holo-card.legal-content-card p strong {
    color: var(--text-pure);
}

.holo-card.legal-content-card h2 {
    margin: 30px 0 12px;
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--text-pure);
    letter-spacing: 0.2px;
}

.holo-card.legal-content-card h3 {
    margin: 22px 0 10px;
    font-family: var(--font-head);
    font-size: 1.06rem;
    color: var(--accent-cyan);
}

.holo-card.legal-content-card a {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0, 240, 255, 0.5);
    text-underline-offset: 2px;
    transition: var(--transition);
}

.holo-card.legal-content-card a:hover {
    color: var(--text-pure);
    text-decoration-color: var(--accent-cyan);
}

.holo-card.legal-content-card ul,
.holo-card.legal-content-card ol {
    margin: 10px 0 20px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.holo-card.legal-content-card ul li,
.holo-card.legal-content-card ol li {
    position: relative;
    color: var(--text-secondary);
    line-height: 1.65;
}

.holo-card.legal-content-card ul li {
    padding-left: 24px;
}

.holo-card.legal-content-card ul li::before {
    content: '>';
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-purple);
    font-family: var(--font-head);
    font-weight: 700;
}

.holo-card.legal-content-card ol {
    counter-reset: legal-step;
}

.holo-card.legal-content-card ol li {
    counter-increment: legal-step;
    padding-left: 28px;
}

.holo-card.legal-content-card ol li::before {
    content: counter(legal-step) '.';
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-cyan);
    font-family: var(--font-head);
    font-weight: 700;
}

.holo-card.legal-content-card .notice-box {
    margin-top: 30px;
    padding: 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 240, 255, 0.25);
    background: rgba(0, 240, 255, 0.06);
}

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

.section-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--text-pure);
}

.terminal-board {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-xl);
    padding: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.terminal-inner {
    background: var(--bg-base);
    border-radius: 22px;
    padding: 20px;
}

/* Leaderboard Rows */
.lb-row {
    display: grid;
    grid-template-columns: 60px 2fr 3fr 1fr 180px;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-dim);
    transition: var(--transition);
    position: relative;
    border-radius: var(--radius-md);
}

.lb-row:last-child {
    border-bottom: none;
}

.lb-row:hover {
    background: var(--bg-glass-hover);
    border-color: transparent;
    transform: translateX(10px);
    box-shadow: inset 2px 0 0 var(--accent-cyan);
}

.lb-rank {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--border-dim);
    /* huge, transparent-ish number */
}

.lb-row:nth-child(1) .lb-rank {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.lb-brand {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.lb-bonus {
    display: flex;
    flex-direction: column;
}

.lb-bonus-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.lb-bonus-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lb-score {
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.4);
}

.lb-btn {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan-glow);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.lb-row:hover .lb-btn {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--accent-cyan-glow);
}

/* ── 6. Holographic Info Panels (Methodology/Info) ── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.holo-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.holo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    opacity: 0;
    transition: var(--transition);
}

.holo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(112, 0, 255, 0.3);
}

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

.holo-icon {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(112, 0, 255, 0.4));
}

.holo-card h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

/* ── 7. FAQ Cyber Accordion ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 25px;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-pure);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    /* remove default arrow */
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--accent-cyan);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 25px 20px;
    color: var(--text-secondary);
}

/* ── 8. Footer ── */
.site-footer {
    border-top: 1px solid var(--border-dim);
    padding: 60px 0 30px;
    background: #020304;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
    justify-content: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: underline;
    text-decoration-color: rgba(0, 240, 255, 0.45);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-cyan);
    text-decoration-color: var(--accent-cyan);
    text-decoration-thickness: 2px;
}

.footer-disclaimer {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 40px;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-disclaimer h4 {
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-head);
}

.footer-regulators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-regulators a {
    opacity: 0.5;
    transition: opacity 0.3s;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-regulators a:hover {
    opacity: 1;
    color: var(--text-pure);
}

.copy {
    font-size: 0.8rem;
    color: #555;
}

/* ── 9. Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(10, 13, 20, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--accent-cyan-glow);
    padding: 20px 0;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cookie-text a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-accept,
.cookie-decline {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-head);
    transition: var(--transition);
}

.cookie-accept {
    background: var(--accent-cyan);
    color: #000;
}

.cookie-accept:hover {
    box-shadow: 0 0 15px var(--accent-cyan-glow);
    transform: translateY(-1px);
}

.cookie-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-dim);
}

.cookie-decline:hover {
    color: var(--text-pure);
    border-color: var(--text-secondary);
}

/* ── 10. Detailed Review Cards ── */
.detailed-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detailed-card {
    background: linear-gradient(145deg, var(--bg-surface), var(--bg-base));
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.detailed-card:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.2);
}

.dc-header {
    background: rgba(0, 240, 255, 0.03);
    border-bottom: 1px solid var(--border-dim);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dc-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dc-rank {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.dc-brand {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--text-pure);
}

.dc-rating {
    background: var(--accent-purple);
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.4);
}

.dc-body {
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.dc-text {
    flex: 1;
}

.dc-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.dc-pros {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.dc-pros li {
    font-size: 0.9rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 20px;
}

.dc-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

.dc-action {
    width: 200px;
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
}

/* ── 11. Cyber Tabs / Guide ── */
.cyber-tabs {
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.tab-btn {
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-dim);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text-pure);
    border-color: rgba(112, 0, 255, 0.3);
}

.tab-btn.active {
    background: var(--accent-purple);
    color: #fff;
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-flex {
    background: var(--bg-glass);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.tab-text h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 15px;
}

.cyber-list,
.cyber-list-num {
    margin-top: 20px;
}

.cyber-list li,
.cyber-list-num li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 15px;
}

.cyber-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: bold;
}

.cyber-list-num li {
    padding-left: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }


    .mobile-toggle {
        display: flex;
    }

    .header-glass {
        padding: 12px 20px;
        border-radius: 12px;
    }

    .lb-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
        padding: 30px 20px;
    }

    .lb-rank {
        position: absolute;
        top: 10px;
        left: 15px;
        font-size: 1.2rem;
    }

    .lb-score {
        justify-content: center;
        margin: 10px 0;
    }

    .lb-row:hover {
        transform: translateY(-5px);
        box-shadow: inset 0 2px 0 var(--accent-cyan);
    }

    .dc-body {
        flex-direction: column;
        align-items: stretch;
    }

    .dc-action {
        width: 100%;
    }

    .dc-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .tab-flex {
        padding: 20px;
    }

    .casino-bg {
        min-height: 320px;
        background-attachment: scroll;
    }

    .tabs-nav {
        padding-bottom: 10px;
    }

    .static-page-main {
        padding-top: 130px;
    }

    .legal-page-title {
        margin-bottom: 24px;
    }

    .holo-card.legal-content-card {
        padding: 26px;
    }

    .holo-card.legal-content-card h2 {
        font-size: 1.25rem;
        margin-top: 24px;
    }
}

@media (max-width: 600px) {
    .age-bar-inner {
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .age-left {
        justify-content: center;
        text-align: center;
    }

    .age-right {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .spotlight-inner {
        padding: 20px;
        width: 100%;
    }

    .spotlight-bonus {
        font-size: 1.1rem;
    }

    .btn-cyber {
        padding: 12px 20px;
        width: 100%;
        font-size: 1rem;
    }

    .casino-bg {
        min-height: 280px;
    }

    .casino-bg__overlay {
        padding: 32px 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-regulators {
        flex-direction: column;
        gap: 15px;
    }

    .static-page-main {
        padding-top: 115px;
    }

    .holo-card.legal-content-card {
        padding: 22px;
    }

    .holo-card.legal-content-card h2 {
        font-size: 1.12rem;
    }

    .holo-card.legal-content-card h3 {
        font-size: 1rem;
    }
}
