:root {
    --bg-dark: #0f172a;
    --bg-alt: #1e293b;
    --primary: #3b82f6;
    --secondary: #6366f1;
    --text-white: #f8fafc;
    --text-dim: #94a3b8;
    --accent-green: #10b981;
}

* { box-sizing: border-box; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.05); sticky: top; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(15px); z-index: 1000; position: sticky; top: 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; }
.logo-svg { width: 35px; height: 35px; }
.logo-text strong { display: block; font-size: 18px; letter-spacing: 1px; color: var(--primary); }
.logo-text span { font-size: 10px; text-transform: uppercase; color: var(--text-dim); }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dim); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--primary); }
.btn-outline { border: 1px solid var(--primary); padding: 8px 16px; border-radius: 6px; color: var(--primary) !important; }

/* HERO */
.hero-section { padding: 120px 0 80px; text-align: center; }
.badge { display: inline-block; background: rgba(59,130,246,0.1); color: var(--primary); padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 30px; border: 1px solid rgba(59,130,246,0.2); }
h1 { font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 30px; }
.text-gradient { background: linear-gradient(to right, #60a5fa, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-section p { max-width: 750px; margin: 0 auto 40px; color: var(--text-dim); font-size: 19px; line-height: 1.6; }
.hero-btns { display: flex; flex-direction: column; align-items: center; gap: 25px; }
.btn-main { background: var(--primary); color: white; padding: 20px 40px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 18px; box-shadow: 0 10px 30px rgba(59,130,246,0.3); }
.anj-status { display: flex; align-items: center; gap: 15px; }
.anj-status img { height: 30px; filter: brightness(1.5); }
.anj-status p { margin: 0; font-size: 12px; color: var(--text-dim); }

/* STATS */
.stats-bar { background: var(--bg-alt); padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item strong { display: block; font-size: 32px; color: var(--primary); }
.stat-item span { color: var(--text-dim); font-size: 12px; text-transform: uppercase; font-weight: 600; }

/* SECTIONS */
.section-padding { padding: 100px 0; }
.bg-alt { background: #161e2e; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 36px; font-weight: 700; margin-bottom: 15px; }
.section-header p { color: var(--text-dim); font-size: 18px; }

/* METHODOLOGY */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.method-card { background: var(--bg-alt); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.icon-box { color: var(--primary); margin-bottom: 20px; }
.method-card h4 { font-size: 20px; margin-bottom: 15px; }
.method-card p { color: var(--text-dim); font-size: 15px; }

/* TABLE */
.table-container { background: var(--bg-alt); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.market-table { width: 100%; border-collapse: collapse; text-align: left; }
.market-table th { padding: 20px; background: rgba(255,255,255,0.02); color: var(--text-dim); font-size: 14px; text-transform: uppercase; }
.market-table td { padding: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.status-tag { padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; background: rgba(59,130,246,0.1); color: var(--primary); }
.status-tag.green { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); }
.pulse { animation: pulse-animation 2s infinite; }
@keyframes pulse-animation { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

/* BONUS BOX */
.bonus-box { display: flex; align-items: center; background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-radius: 30px; padding: 60px; gap: 50px; border: 1px solid var(--primary); }
.bonus-content { flex: 1; }
.check-list { list-style: none; padding: 0; margin: 30px 0; }
.check-list li { margin-bottom: 15px; padding-left: 30px; position: relative; color: var(--text-dim); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-green); font-weight: 800; }
.bonus-visual { flex: 0.8; display: flex; justify-content: center; }
.visual-card { background: var(--bg-alt); width: 250px; height: 250px; border-radius: 50%; border: 10px solid var(--primary); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.visual-card .score { font-size: 72px; font-weight: 900; color: var(--text-white); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.faq-item h5 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
.faq-item p { color: var(--text-dim); font-size: 15px; }

/* FOOTER */
.footer { padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.legal-banner { background: rgba(239, 68, 68, 0.05); border: 1px solid rgba(239, 68, 68, 0.2); padding: 30px; border-radius: 20px; display: flex; gap: 30px; align-items: center; margin-bottom: 50px; }
.age-badge { background: #ef4444; color: white; min-width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; }
.legal-text p { margin: 0; color: var(--text-dim); font-size: 14px; }
.legal-text strong { color: #ef4444; display: block; margin-bottom: 5px; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; color: var(--text-dim); font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-dim); text-decoration: none; }

@media (max-width: 992px) {
    .method-grid, .stats-grid, .faq-grid { grid-template-columns: 1fr; }
    .bonus-box { flex-direction: column; padding: 40px; }
    h1 { font-size: 42px; }
}

/* Дополнение к style.css для текстовых страниц */
.legal-content h1, .legal-content h3 { color: var(--primary); margin-top: 30px; }
.legal-content p { color: var(--text-dim); margin-bottom: 20px; font-size: 16px; text-align: justify; }
.warning-box-alt { 
    background: rgba(239, 68, 68, 0.1); 
    border-left: 5px solid #ef4444; 
    padding: 25px; 
    margin: 40px 0; 
    border-radius: 4px;
}
.warning-box-alt h4 { color: #ef4444; margin-top: 0; }
.method-detailed { display: grid; gap: 20px; margin-top: 40px; }

/* AGE GATE STYLES */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 24, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000; /* Самый высокий приоритет */
}

.age-gate-modal {
    background: #1e293b;
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.age-gate-logo { margin-bottom: 20px; }

.age-gate-modal h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 800;
}

.age-gate-modal p {
    color: var(--text-dim);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-confirm {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-confirm:hover { background: var(--secondary); transform: translateY(-2px); }

.btn-exit {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
}

.btn-exit:hover { color: #ef4444; }

.age-gate-footer {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.age-gate-footer img { height: 25px; filter: grayscale(1) brightness(1.5); }
.age-gate-footer span { font-size: 11px; color: var(--text-dim); text-transform: uppercase; }

/* Класс для скрытия Age Gate */
.age-gate-hidden {
    display: none !important;
}

/* OPERATOR CARD STYLES */
.operator-card {
    background: var(--bg-alt);
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.operator-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 700;
    border-bottom-right-radius: 15px;
    text-transform: uppercase;
}

.card-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    gap: 30px;
    padding: 40px;
    align-items: center;
}

.brand-side {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding-right: 20px;
}

.op-logo {
    background: white; /* Pour faire ressortir le logo orange de Betsson */
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.op-logo img { width: 100%; height: auto; }

.op-rating .score {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--accent-green);
}

.op-rating .label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.info-side h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
}

.bonus-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.bonus-highlight .amount {
    font-size: 42px;
    font-weight: 900;
    color: #ff4f00; /* Orange Betsson */
}

.bonus-highlight .desc {
    font-size: 14px;
    color: var(--text-white);
    line-height: 1.2;
    max-width: 120px;
}

.legal-disclaimer {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.feature-tags {
    display: flex;
    gap: 10px;
}

.feature-tags span {
    background: rgba(255,255,255,0.05);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    color: var(--primary);
}

.btn-main-op {
    display: block;
    background: #ff4f00; /* Couleur Betsson */
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(255, 79, 0, 0.2);
    transition: 0.3s;
}

.btn-main-op:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 79, 0, 0.3);
}

.btn-main-op small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 5px;
}

.card-footer {
    background: rgba(0,0,0,0.2);
    padding: 15px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 992px) {
    .card-main {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .brand-side {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 0 0 20px 0;
    }
}

.footer-disclaimer {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2); /* Чуть темнее основного фона */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-text {
    font-size: 10px; /* Тот самый мелкий шрифт */
    line-height: 1.5;
    color: #64748b; /* Приглушенный серый цвет */
    margin: 0;
    text-align: justify;
    font-weight: 400;
}

/* На мобильных устройствах можно чуть увеличить для читаемости */
@media (max-width: 768px) {
    .disclaimer-text {
        font-size: 9px;
    }
}