
:root {
    --bg: #0b1020;
    --card: #111736;
    --muted: #8ea0c6;
    --text: #eaf0ff;
    --accent: #7a1ff6;
    --accent-2: #00c2ff;
    --ok: #19c37d;
    --warn: #ffb020;
    --danger: #ff5f5f;
    --shadow: 0 10px 30px rgba(0, 0, 0, .25);
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: radial-gradient(1000px 600px at 10% -10%, rgba(122, 31, 246, .25), transparent 60%),
    radial-gradient(1000px 600px at 110% 10%, rgba(0, 194, 255, .18), transparent 60%),
    var(--bg);
    line-height: 1.65;
}

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

a {
    color: var(--accent-2);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.container {
    width: min(1100px, 92vw);
    margin-inline: auto
}

.banner-18 {
    background: linear-gradient(90deg, var(--danger), #ff2fab);
    color: #fff;
    text-align: center;
    padding: .6rem .8rem;
    font-weight: 700;
    letter-spacing: .3px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(9, 14, 31, .72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
}

.brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    letter-spacing: .2px;
    color: #fff;
}
.brand:hover {
    text-decoration: none;
}

.brand .logo-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: .7rem;
    color: #cfe2ff;
    margin-right: 10px;
}

.navlinks {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.navlinks a {
    padding: .4rem .7rem;
    border-radius: 999px;
    color: #cfe2ff;
}

.navlinks a:hover {
    background: rgba(255, 255, 255, .06)
}

#nav-toggle {
    display: none
}

.burger {
    display: none;
    cursor: pointer;
    padding: .5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #eaf0ff;
    margin: 5px 0;
    border-radius: 2px
}

.hero {
    padding: 60px 0;
    position: relative;
}

.bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    z-index: -1;
    opacity: 0.15;
    background-position: center;
    background-size: cover;
    top: 0;
    left: 0
}

.bg-1 {
    background-image: url(images/bg-1.jpg);
}

.bg-2 {
    background-image: url(images/bg-2.jpg);
}

.bg-3 {
    background-image: url(images/bg-3.jpg);
}

.image-block img {
    border-radius: 10px;
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 2rem;
    align-items: center;
}

.kicker {
    color: var(--accent-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .82rem
}

h1 {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    line-height: 1.15;
    margin: .4rem 0 1rem
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 60ch
}

.badges {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.4rem
}

.badge {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    padding: .45rem .8rem;
    color: #cfe2ff;
    font-size: .92rem;
    backdrop-filter: blur(5px);
}

.cta-row {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: .6rem
}

.btn {
    display: inline-block;
    padding: .8rem 1.1rem;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: .2px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #041228;
    box-shadow: var(--shadow);
}
.btn:hover {
    text-decoration: none;
}

.btn.secondary {
    background: transparent;
    color: #cfe2ff;
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(5px);
}

.hero-card {
    background: radial-gradient(600px 300px at 90% -10%, rgba(122, 31, 246, .25), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 1rem;
    display: grid;
    gap: 1rem;
    backdrop-filter: blur(5px);
}

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

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin: 0 0 .6rem
}

.section-sub {
    color: var(--muted);
    margin: 0 0 1.4rem
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 1.1rem;
}

.card h3 {
    margin: .2rem 0 .2rem;
    font-size: 1.15rem
}

.card p {
    color: var(--muted);
    margin: .4rem 0 0
}

.offer {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(5px);
}

.logo-slot {
    width: 110px;
    height: 70px;
    border: 2px dashed rgba(255, 255, 255, .25);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #cfe2ff;
    font-size: .8rem
}

.rating {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700
}

.stars {
    letter-spacing: 2px;
    font-size: 1rem;
    color: #ffd76d
}

.badge-note {
    font-size: .85rem;
    color: #cfe2ff;
    background: rgba(0, 0, 0, .2);
    padding: .25rem .5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.offer .cta {
    display: grid;
    gap: .5rem;
    justify-items: end
}

.small {
    font-size: .9rem;
    color: #cfe2ff
}

.faq {
    display: grid;
    gap: .8rem
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01));
    padding: 1rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700
}

.faq-item p {
    color: var(--muted)
}

.form {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 1rem;
    display: grid;
    gap: .8rem;
    backdrop-filter: blur(5px);
}

.input {
    width: 100%;
    padding: .8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: #0d1330;
    color: #eaf0ff
}

textarea.input {
    min-height: 140px;
    resize: vertical
}

.form .row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: .8rem
}

.form .hint {
    color: #a8bbff;
    font-size: .88rem
}

.form .submit {
    justify-self: start
}

.footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: radial-gradient(800px 300px at 0% 120%, rgba(122, 31, 246, .2), transparent),
    radial-gradient(600px 300px at 100% 120%, rgba(0, 194, 255, .15), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 1rem
}

.footer .logo-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #cfe2ff
}

.footer a {
    color: #cfe2ff
}

.legal {
    color: #aab8e6;
    font-size: .9rem;
    margin-top: 1rem
}

.partners {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap
}

.partner-slot {
    width: auto;
    height: 50px;
    padding: 5px 7px;
    border: 1px dashed rgba(255, 255, 255, .25);
    border-radius: 8px;
    display: block;
    place-items: center;
    color: #cfe2ff;
    font-size: .7rem;
}

.partner-slot img {
    height: 100%;
    filter: brightness(0) invert(1);
}
#offers .partners {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    justify-content: center;
}
#offers .partner-slot {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(5px);
    padding: 6px 10px;
}
.hr {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .08), transparent);
    margin: 1.2rem 0
}
ul {
    padding-left: 20px;
}
.badge-18 {
    background: #f00;
    font-size: 17px;
    padding: 6px 7px;
    font-weight: 700;
    border-radius: 50%;
}
@media (max-width: 960px) {
    .hero .wrap {
        grid-template-columns:1fr
    }

    .cards {
        grid-template-columns:1fr 1fr
    }

    .offer {
        grid-template-columns: 1fr;
        justify-items: start
    }

    .offer .cta {
        justify-items: start
    }

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

    .form .row {
        grid-template-columns:1fr
    }

    .navlinks {
        position: fixed;
        inset: 64px 0 auto 0;
        background: rgba(9, 14, 31, .95);
        padding: 1rem 4vw;
        display: none;
        flex-direction: column
    }

    #nav-toggle:checked ~ .navlinks {
        display: flex
    }

    .burger {
        display: block
    }
}

@media (max-width: 600px) {
    .cards {
        grid-template-columns:1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.legal-page {
    font-family: "Inter", system-ui, sans-serif;
    color: #111;
    margin: 0;
    padding: 40px 0;
    line-height: 1.7;
}
.legal-page .container {
    margin: 0 auto;
    padding: 35px 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
}
.legal-page h1 {
    font-size: 2rem;
    margin-top: 0;
    color: #222;
    text-align: center;
}
.legal-page .updated {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}
.legal-page nav {
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
}
.legal-page nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}
.legal-page nav li {
    margin-bottom: 8px;
}
.legal-page nav a {
    color: #0078f2;
    text-decoration: none;
}
.legal-page nav a:hover {
    text-decoration: underline;
}

.legal-page section {
    margin-bottom: 40px;
    counter-increment: section;
    scroll-margin-top: 80px;
}
.legal-page {
    counter-reset: section 0;
}
.legal-page section h2::before {
    content: counter(section) ". ";
    font-weight: bold;
}
.legal-page section h2 {
    color: #222;
    border-left: 4px solid #0078f2;
    padding-left: 10px;
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.95rem;
}
.legal-page table th,
.legal-page table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
}
.legal-page table th {
    background: #f2f6ff;
    font-weight: 600;
}
.legal-page .note {
    background: #f9f9f9;
    border-left: 4px solid #0078f2;
    padding: 10px 15px;
    font-size: 0.95rem;
    color: #444;
}
.legal-page footer {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    padding: 30px 10px;
}
#age-popup {
    position: fixed;
    inset: 0;
    background: rgba(10,10,15,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: "Inter", system-ui, sans-serif;
    animation: fadeIn 0.3s ease forwards;
}
#age-popup.hidden { display: none; }

.age-popup-content {
    background: #fff;
    max-width: 420px;
    width: 90%;
    padding: 28px 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 35px rgba(0,0,0,0.25);
    animation: slideIn 0.4s ease forwards;
}
.age-popup-content h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #111;
}
.age-popup-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.6;
}
.age-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.age-buttons button, .age-buttons a {
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
    text-decoration: none;
    line-height: 1.2;
}
#age-yes {
    background: #0078f2;
    color: #fff;
}
#age-yes:hover {
    background: #0062c8;
    transform: scale(1.05);
}
#age-no {
    background: #eee;
    color: #111;
}
#age-no:hover {
    background: #ddd;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideIn {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}