:root {
    --primary-color: #0f172a;
    --secondary-color: #eab308;
    --accent-color: #3b82f6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --danger: #ef4444;

    --font-main: 'Inter', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    --main-bg: #ffffff;
    --main-text: #0f172a;
    --accent: #0f172a;
    --accent-soft: rgba(15, 23, 42, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #ca8a04;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.full-width {
    width: 100%;
    display: block;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.highlight {
    color: var(--secondary-color);
}


.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-menu ul li a:hover {
    color: var(--secondary-color);
}

.nav-btn {
    margin-left: 20px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}


.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('../img/hero.png');
    background-size: cover;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
}

.feature-item i {
    color: var(--secondary-color);
}


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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header .subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.text-content p {
    margin-bottom: 20px;
}


.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}


.card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}


.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}


.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-list li i {
    color: var(--secondary-color);
}


.feature-block h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.feature-block p {
    color: var(--text-light);
    margin-bottom: 20px;
}


.bookmaker-card {
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.logo-placeholder {
    height: 80px;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 4px;
}

.logo-placeholder img {
    height: 100%;
    padding: 5px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: #94a3b8;
}

.rating {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rating i {
    color: var(--secondary-color);
}

.bookmaker-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.bookmaker-features li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bookmaker-features li i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.disclaimer-box {
    margin-top: 30px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}


.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}


.responsible-section {
    background-color: #fff1f2;
    border-left: 5px solid var(--danger);
}

.responsible-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.responsible-section i {
    margin-right: 10px;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-weight: 700;
    color: var(--danger);
}

.age-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.accordion-item {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-btn {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fcfcfc;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-light);
}

.accordion-btn.active i {
    transform: rotate(180deg);
}


.contact-wrapper {
    align-items: start;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: #eff6ff;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}


.footer {
    background-color: var(--primary-color);
    color: #cbd5e1;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.warning-text {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}


@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px;
        transition: 0.3s;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-menu ul li {
        width: 100%;
    }

    .nav-menu ul li a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-btn {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.sr-footer {
    background: #0b1017;
    color: #f4f4f4;
    font-size: 14px;
    line-height: 1.6;
    padding: 40px 20px 24px;
}

.sr-footer a {
    color: #f3cf55;
    text-decoration: none;
}

.sr-footer a:hover {
    text-decoration: underline;
}

.sr-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sr-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.sr-footer-brand {
    max-width: 520px;
}

.sr-footer-logo {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sr-footer-brand-text {
    margin: 0;
    opacity: 0.9;
}

.sr-footer-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.sr-badge {
    min-height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(243, 207, 85, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 8, 15, 0.7);
}

.sr-badge img {
    height: 60px;
    display: block;
}

.sr-badge-18 {
    background: #c0392b;
    border-color: #c0392b;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}



.sr-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-top: 12px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sr-footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sr-footer-col p {
    margin: 0 0 8px;
    opacity: 0.9;
}

.sr-footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sr-footer-nav li {
    margin-bottom: 6px;
}

.sr-footer-nav a {
    font-size: 14px;
}



.sr-footer-bottom {
    margin-top: 18px;
}

.sr-footer-disclaimer {
    margin: 0 0 10px;
    font-size: 13px;
    opacity: 0.9;
}

.sr-footer-copy {
    margin: 0 0 6px;
    font-size: 13px;
    opacity: 0.85;
}

.sr-footer-en {
    margin: 0;
    font-size: 12px;
    opacity: 0.75;
}



@media (max-width: 992px) {
    .sr-footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sr-footer-top {
        flex-direction: column;
    }

    .sr-footer-columns {
        grid-template-columns: 1fr;
    }

    .sr-footer {
        padding: 28px 16px 20px;
    }
}

body.lock-scroll {
    overflow: hidden;
}


.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-box {
    max-width: 480px;
    width: 100%;
    background: #ffffff;
    color: var(--main-text);
    border-radius: 16px;
    padding: 24px 24px 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.age-gate-box h2 {
    margin-bottom: 12px;
    font-size: 22px;
}

.age-gate-box p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.age-gate-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.age-gate-note {
    display: block;
    font-size: 11px;
    color: #64748b;
}

.cookie-banner {
    position: fixed;
    inset-inline: 16px;
    bottom: 16px;
    background: #ffffff;
    color: var(--main-text);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    padding: 16px 18px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    z-index: 9998;
}

.cookie-banner-text {
    flex: 2;
    min-width: 220px;
}

.cookie-banner-text h3 {
    margin-bottom: 6px;
    font-size: 16px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-banner-actions {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}


.cookie-settings-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.cookie-settings-box {
    max-width: 520px;
    width: 100%;
    background: #ffffff;
    color: var(--main-text);
    border-radius: 16px;
    padding: 24px 24px 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cookie-settings-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.cookie-settings-box p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.cookie-option {
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--accent-soft);
    margin-bottom: 8px;
}

.cookie-option label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-settings-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 12px;
    margin-bottom: 6px;
}

.cookie-settings-note {
    font-size: 11px;
    color: #64748b;
}



.is-hidden {
    display: none !important;
}

@media (min-width: 768px) {
    .cookie-banner-actions {
        flex-direction: row;
        justify-content: flex-end;
    }

    .cookie-banner-actions .btn-primary,
    .cookie-banner-actions .btn-secondary {
        min-width: 160px;
    }
}

.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.legal-text-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8f0;
}

.legal-text-wrapper h2 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.legal-text-wrapper h2:first-child {
    margin-top: 0;
}

.legal-text-wrapper p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-text-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text-wrapper ul li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.active-link {
    color: var(--white) !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .legal-text-wrapper {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}.help-box {
            background-color: #fef2f2;
            border-left: 4px solid #ef4444;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .help-box h3 {
            color: #ef4444;
            margin-top: 0;
        }
        .check-list li {
            margin-bottom: 10px;
            list-style: none;
        }
        .check-list li i {
            color: #ef4444;
            margin-right: 10px;
        }