:root {

    --bg-body: #020617;
    --bg-surface: rgba(30, 41, 59, 0.7);
    --bg-surface-hover: rgba(51, 65, 85, 0.8);


    --primary: #10b981;
    --primary-glow: rgba(16, 185, 129, 0.4);
    --secondary: #3b82f6;
    --gold: #fbbf24;


    --text-main: #f8fafc;
    --text-muted: #94a3b8;


    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(16, 185, 129, 0.5);
    --glass-blur: blur(12px);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);


    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-body);

    background-image:
        radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 25%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
}


#header {
    background-color: rgba(2, 6, 23, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}


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

.desktop-nav a {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--primary);
}

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

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

.mobile-nav {
    display: none;
    background-color: var(--bg-body);
    border-bottom: 1px solid var(--border-light);
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

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


.section-padding {
    padding: 100px 0;
}

.section-dark {
    position: relative;
}


.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff 20%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}


.hero-section {
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('../img/hero.png') center center/cover no-repeat;
}


.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.785) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-light);
    padding-top: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-muted);
}

.hero-features i {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}



.step-card,
.service-card,
.feature-block,
.bookmaker-card {
    background-color: var(--bg-surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.step-card:hover,
.service-card:hover,
.feature-block:hover,
.bookmaker-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    background-color: var(--bg-surface-hover);
}


.step-icon,
.service-card i,
.feat-icon,
.stat-item i {
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}


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

.step-card {
    text-align: center;
}

.step-icon {
    font-size: 2.5rem;
    background: rgba(16, 185, 129, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--text-main);
}

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


.text-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}


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

.service-card i {
    font-size: 2rem;
}

.feat-icon {
    background: var(--bg-body);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid var(--border-light);
}

.check-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.check-list li {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.check-list i {
    color: var(--primary);
    margin-right: 15px;
}


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

.bookmaker-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.bm-logo {
    height: 140px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}


.bm-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.bm-logo img {
    max-height: 70px;
    max-width: 80%;
    object-fit: contain;
}

.bm-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bm-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.bm-rating {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bm-rating span {
    color: var(--text-main);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

.bm-pros {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.bm-pros li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.bm-content .btn-outline {
    margin-top: auto;
    width: 100%;
    text-align: center;
    border-color: var(--primary);
    color: var(--primary);
}

.bm-content .btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
}

.disclaimer-box {
    margin-top: 50px;
    padding: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
    border-top: 1px solid var(--border-light);
}


.responsible-content {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--secondary);
    border-radius: 12px;
    padding: 40px;
}

.tips-list li {
    background: transparent;
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    color: var(--text-main);
}

.tips-list li:last-child {
    border-bottom: none;
}

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


.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item.active {
    border-color: var(--primary);
    background-color: var(--bg-surface-hover);
}

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

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 25px;
    color: var(--text-muted);
    font-size: 1rem;
}

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


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

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

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
    padding: 15px;
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    background-color: rgba(0, 0, 0, 0.5);
}

.checkbox-group label {
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-align: center;
    display: none;
}


.age-badge {
    background-color: #dc2626;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

.copyright {
    color: #475569;
    font-size: 0.85rem;
    margin-top: 40px;
}


@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

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

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

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

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

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

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

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.no-scroll {
    overflow: hidden;
}

 

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.96);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
}

.age-overlay__content {
    background-color: #020617;
    color: #f9fafb;
    max-width: 480px;
    width: 100%;
    border-radius: 16px;
    padding: 24px 24px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.age-overlay__content h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.age-overlay__content p {
    font-size: 14px;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 16px;
}

.age-overlay__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.age-overlay__note {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}
 

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: min(1040px, 100% - 32px);
    background-color: #020617;
    color: #f9fafb;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: none;
    align-items: center;
    gap: 16px;
    z-index: 9998;
}

.cookie-banner__text h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

.cookie-banner__text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #e5e7eb;
}

.cookie-banner__actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
    margin-left: auto;
}

@media (max-width: 640px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
}
 

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 16px;
}

.cookie-modal--visible {
    display: flex;
}

.cookie-modal__content {
    background-color: #020617;
    color: #f9fafb;
    max-width: 560px;
    width: 100%;
    border-radius: 18px;
    padding: 20px 20px 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.cookie-modal__header h3 {
    font-size: 18px;
    margin: 0;
}

.cookie-modal__close {
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 22px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.cookie-modal__close:hover {
    color: #f9fafb;
}

.cookie-modal__intro {
    font-size: 13px;
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-modal__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(30, 64, 175, 0.35);
    cursor: pointer;
}

.cookie-toggle span small {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.cookie-toggle__switch {
    width: 40px;
    height: 22px;
    border-radius: 9999px;
    background-color: #111827;
    border: 1px solid #4b5563;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cookie-toggle__switch::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 9999px;
    background-color: #f9fafb;
    transition: transform 0.2s ease;
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle__switch {
    background-color: #10b981;
    border-color: #10b981;
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle__switch::after {
    transform: translateX(16px);
}

.cookie-toggle__switch--disabled {
    background-color: #111827;
    border-color: #4b5563;
}

.cookie-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}
 

.policy-container {
    max-width: 900px;  
    margin: 0 auto;
    background-color: var(--bg-surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-glow);
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
    text-align: center;
}

.policy-date {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.policy-content h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.policy-content ul li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.policy-content strong {
    color: var(--white);
}

.text-link {
    color: var(--primary);
    text-decoration: underline;
}

.text-link:hover {
    color: var(--white);
    text-decoration: none;
}

.policy-footer-action {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid var(--border-light);
    padding-top: 40px;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.4rem;
    }
}