:root {
    --primary: #1e3a8a;
    --accent: #6366f1;
    --accent-hover: #4f46e5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-light: #f3f4f6;
    --bg-section: #f9fafb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --container-width: 1200px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: transform 0.2s, background-color 0.3s, box-shadow 0.3s;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

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

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

section {
    padding: 80px 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: padding 0.3s;
}

header.scrolled {
    padding: 10px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}

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

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-stats {
    background: var(--bg-section);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-item {
    margin-bottom: 20px;
    text-align: center;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid #e5e7eb;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

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

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

.feature-item h3 {
    margin: 15px 0;
    font-size: 1.2rem;
}

.why-us-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-us-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.why-us-list i {
    color: var(--success);
}

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

.bookmaker-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #eee;
    position: relative;
}

.bookmaker-header {
    padding: 20px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bookmaker-logo {
    height: 70px;
    width: auto;
    padding: 5px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bookmaker-logo img {
    height: 100%;
}

.rating {
    color: var(--warning);
    font-weight: 700;
}

.bookmaker-body {
    padding: 25px;
}

.bookmaker-features {
    margin-bottom: 20px;
}

.bookmaker-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.bookmaker-features i {
    color: var(--accent);
    margin-right: 8px;
    width: 16px;
}

.bonus-box {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-left: 3px solid var(--accent);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.how-item {
    position: relative;
}

.how-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
    color: var(--primary);
    font-size: 2rem;
    border: 2px solid var(--accent);
}

.warning-box {
    background-color: #fff1f2;
    border-left: 5px solid var(--danger);
    padding: 30px;
    border-radius: var(--radius);
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--danger);
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 10px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-light);
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 5px;
}

form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--accent);
    border-color: transparent;
}

footer {
    background: var(--text-dark);
    color: #9ca3af;
    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;
    padding-bottom: 40px;
    border-bottom: 1px solid #374151;
}

.footer-logo {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.footer-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-cta {
        display: none;
    }

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

    .about-grid,
    .contact-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.legal-badge {
    display: inline-block;
    border: 1px solid #444;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .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.age-gate-open {
    overflow: hidden;
}

.hidden {
    display: none !important;
}

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

.age-gate-modal {
    background: #ffffff;
    color: #111827;
    max-width: 520px;
    width: 90%;
    border-radius: 1rem;
    padding: 2rem 2.25rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.age-gate-header h2 {
    margin: 0 0 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
}

.age-gate-header p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4b5563;
}

.age-gate-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    background: #4f46e5;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
}

.age-gate-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.age-gate-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.cookie-banner {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 9998;
    background: transparent;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.cookie-banner-inner {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    color: #111827;
    border-radius: 0.75rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 700;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.btn-primary {
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.5);
}

.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
    background: #ffffff;
    color: #4f46e5;
    border: 1px solid #4f46e5;
}

.btn-secondary:hover {
    background: #eef2ff;
}

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

.cookie-settings-modal {
    background: #ffffff;
    color: #111827;
    max-width: 560px;
    width: 100%;
    border-radius: 1rem;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

.cookie-settings-header h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.cookie-settings-header p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.cookie-settings-body {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.cookie-option.disabled {
    opacity: 0.85;
}

.cookie-option h4 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.cookie-option p {
    margin: 0;
    font-size: 0.85rem;
    color: #4b5563;
}

.cookie-settings-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.cookie-toggle span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4f46e5;
}

.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #e5e7eb;
    border-radius: 999px;
    transition: 0.2s;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    top: 3px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: 0.2s;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.4);
}

.switch input:checked+.switch-slider {
    background-color: #4f46e5;
}

.switch input:checked+.switch-slider:before {
    transform: translateX(18px);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        margin-left: 0;
    }

    .age-gate-modal {
        padding: 1.5rem 1.25rem;
    }
}


main {
    padding: 60px 0;
}

.policy-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.policy-container h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 20px;
}

.policy-container .last-updated {
    display: block;
    margin-bottom: 40px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.policy-container h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-container h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-container p {
    margin-bottom: 15px;
    color: var(--text-light);
    text-align: justify;
}

.policy-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-light);
}

.policy-container li {
    margin-bottom: 10px;
}

.policy-container .highlight-box {
    background-color: #e0e7ff;
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}


@media (max-width: 768px) {
    .policy-container {
        padding: 20px;
    }

    .policy-container h1 {
        font-size: 2rem;
    }
}

.disclaimer-box {
    background-color: var(--warning-bg);
    border: 1px solid var(--warning-border);
    color: #c2410c;
    padding: 25px;
    border-radius: var(--radius);
    margin: 30px 0;
}

.disclaimer-box strong {
    color: #9a3412;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #e5e7eb;
    padding: 12px 15px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--bg-light);
    color: var(--primary);
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f9fafb;
}

.info-box {
    background-color: var(--info-bg);
    border-left: 4px solid var(--info-border);
    padding: 20px;
    border-radius: 4px;
    margin: 25px 0;
    color: #1e40af;
}

@media (max-width: 768px) {


    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}

ul.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

ul.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    color: var(--text-light);
}

ul.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #10b981;
}

ul.warning-list li::before {
    content: '\f12a';
    color: #ef4444;
}

.info-box {
    padding: 25px;
    border-radius: var(--radius);
    margin: 30px 0;
}

.box-help {
    background-color: #f0f9ff;
    border-left: 5px solid #0ea5e9;
}

.box-danger {
    background-color: var(--danger-bg);
    border-left: 5px solid var(--danger-text);
    color: #7f1d1d;
}

.contact-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-card strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}