:root {

    --primary-dark: #0f172a;
    --primary-light: #1e293b;
    --gold-start: #fbbf24;
    --gold-end: #d97706;
    --accent-blue: #3b82f6;
    --text-main: #334155;
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
    --danger: #ef4444;
    --success: #10b981;


    --nav-height: 80px;
    --border-radius: 12px;
    --container-width: 1200px;


    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --glow: 0 0 15px rgba(251, 191, 36, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

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

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

ul {
    list-style: none;
}

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


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

.section {
    padding: 100px 0;
    position: relative;
}

.bg-light {
    background-color: #f8fafc;
}

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

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


h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.bg-dark h2 {
    color: var(--text-light);
}

.subtext {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--gold-start), var(--gold-end));
    margin: 15px auto 0;
    border-radius: 2px;
}


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

.btn-primary {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    backdrop-filter: blur(5px);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

.btn-outline {
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    background: transparent;
    padding: 10px 24px;
}

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


header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: var(--nav-height);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.logo .highlight {
    background: linear-gradient(to right, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-menu a {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gold-start);
    transition: width 0.3s;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-start);
}

.btn-nav {
    border: 1px solid var(--gold-start);
    padding: 8px 24px !important;
    border-radius: 4px;
    color: var(--gold-start) !important;
}

.btn-nav:hover {
    background: var(--gold-start);
    color: var(--primary-dark) !important;
}

.btn-nav::after {
    display: none;
}

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


.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/hero.png') no-repeat center center/cover;
    position: relative;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    animation: fadeUp 1s ease-out;
}

.badge-18 {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--danger);
    color: #fca5a5;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 25px;
    display: inline-block;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #cbd5e1;
    font-weight: 300;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
}

.hero-benefits i {
    color: var(--gold-start);
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: #475569;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-start);
    border-radius: var(--border-radius);
    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}


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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold-start);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--accent-blue);
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.micro-subtext {
    font-size: 0.75rem;
    color: var(--gold-end);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


#top-bookmakers {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #111827 100%);
}

.operator-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 150px 2fr 1fr auto;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    position: relative;
}

.operator-card:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: var(--gold-start);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
}

.operator-logo {
    background: white;
    padding: 10px;
    border-radius: 8px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operator-logo img {
    max-height: 100%;
    width: auto;
}

.operator-info h3 {
    margin-bottom: 5px;
    color: var(--text-light);
}

.operator-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.rating {
    color: var(--gold-start);
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.features-list li {
    font-size: 0.85rem;
    color: #cbd5e1;
}

.features-list i {
    color: var(--success);
    margin-right: 5px;
}

.operator-payment {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    color: #64748b;
    justify-content: center;
}

.operator-cta {
    text-align: right;
}

.operator-cta .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.terms {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 8px;
    text-align: center;
}


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

.card {
    background: white;
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: var(--primary-dark);
    color: var(--gold-start);
    padding: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-align: center;
}

.card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body p {
    color: #475569;
    margin-bottom: 0;
}

.card-body hr {
    border-top: 1px dashed #cbd5e1;
    margin: 20px 0;
}

.card-footer {
    padding: 20px;
    background: #f1f5f9;
    text-align: center;
}

.card-footer .btn-outline {
    width: 100%;
    border-radius: 8px;
}


.reviews-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    text-align: center;
    border-top: 4px solid var(--accent-blue);
}

.review-card .stars {
    color: var(--gold-start);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-card p {
    font-style: italic;
    color: #475569;
    margin-bottom: 20px;
}

.author {
    font-weight: 700;
    color: var(--primary-dark);
}


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

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-dark);
    font-size: 1.05rem;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-header.active {
    background: #eff6ff;
    color: var(--accent-blue);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.accordion-content p {
    padding: 20px 25px;
    color: #475569;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
}


.warning-bg {
    background-color: #fef2f2;
    border-top: 1px solid #fee2e2;
    border-bottom: 1px solid #fee2e2;
}

.warning-icon {
    font-size: 3.5rem;
    color: var(--danger);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.action-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    max-width: 300px;
}

.action-item h4 {
    color: var(--primary-dark);
}


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

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

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}


footer {
    background: #020617;
    color: #94a3b8;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.age-badge {
    display: inline-block;
    background: #1e293b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #334155;
    margin-top: 15px;
    font-size: 0.8rem;
}

.footer-links h4,
.footer-legal h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--gold-start);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 600px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

@media(min-width: 600px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-banner p {
        margin-right: 20px;
        margin-bottom: 0;
    }
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


@media (max-width: 992px) {
    .operator-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .operator-logo {
        width: 100%;
        justify-content: center;
    }

    .operator-info {
        width: 100%;
    }

    .features-list {
        justify-content: center;
    }

    .operator-payment {
        justify-content: center;
    }

    .operator-cta {
        text-align: center;
    }

    .operator-cta .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .header-container {
        padding: 0 20px;
    }

    .burger-menu {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 40px 20px;
        height: calc(100vh - var(--nav-height));
        transform: translateX(100%);
        transition: 0.3s ease-in-out;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-secondary {
        margin-left: 0;
    }
}

#how-it-works {
    background-color: var(--light-bg);
    position: relative;
    z-index: 1;
}

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

.step-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(251, 191, 36, 0.3);
}


.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-dark), #1e293b);
    color: var(--gold-start);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}


.step-card:hover .step-number {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--primary-dark);
    transform: scale(1.1) rotate(5deg);
}

.step-card h3 {
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}


.step-sub {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
    transition: var(--transition);
}

.step-card:hover .step-sub {
    background: var(--accent-blue);
    color: white;
}


@media (min-width: 1200px) {
    .step-card {
        padding: 40px;
    }
}

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


.action-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}


.action-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.15);
    border-color: #fca5a5;
}


.action-icon {
    background: #fee2e2;
    color: #ef4444;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.action-content {
    text-align: left;
}

.action-item h4 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.action-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}


.btn-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.action-item:hover .btn-text {
    text-decoration: underline;
}


@media (max-width: 600px) {
    .responsible-actions {
        flex-direction: column;
        align-items: center;
    }

    .action-item {
        max-width: 100%;
    }
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.legal-content .last-updated {
    color: #64748b;
    margin-bottom: 40px;
    display: block;
    font-size: 0.9rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.legal-content p,
.legal-content li {
    color: #334155;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
    color: #334155;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.highlight-box {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.highlight-box p {
    margin-bottom: 0;
    color: #991b1b;
    font-weight: 500;
}

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

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

.cookie-table th {
    background-color: #f8fafc;
    color: var(--primary-dark);
    font-weight: 700;
}

.cookie-table tr:hover {
    background-color: #f1f5f9;
}

.help-box {
    background-color: #eff6ff;
    border-left: 5px solid var(--accent-blue);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.help-box h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.help-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.help-item i {
    color: var(--accent-blue);
}


.quiz-box {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.quiz-question {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #cbd5e1;
}

.quiz-question:last-child {
    border-bottom: none;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}


.age-gate-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-gate-box {
    background: #0f172a;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 500px;
    width: 90%;
    color: #fff;
    position: relative;
    overflow: hidden;
}


.age-gate-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold-start), var(--gold-end));
}

.age-gate-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.age-gate-logo .highlight {
    background: linear-gradient(to right, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.age-gate-box h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.age-gate-box p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.warning-text {
    font-weight: 600;
    color: #cbd5e1 !important;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}


#btnAgeNo {
    border-color: #475569;
    color: #94a3b8;
}

#btnAgeNo:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: transparent;
}

.legal-note {
    font-size: 0.75rem !important;
    color: #64748b !important;
}

.legal-note a {
    color: var(--gold-start);
    text-decoration: underline;
}

@media (min-width: 600px) {
    .age-gate-buttons {
        flex-direction: row;
        justify-content: center;
    }

    #btnAgeYes,
    #btnAgeNo {
        width: 100%;
    }
}