
:root {
    --bg: #0b0f16;
    --card: #111827;
    --text: #e6ebf4;
    --muted: #9aa3b2;
    --primary: #1a73e8; /* blue glow */
    --accent: #e63946; /* red glow */
    --ring: 0 0 25px rgba(26, 115, 232, 0.5);
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: linear-gradient(180deg, #0b0f16 0%, #0f1522 100%);
    color: var(--text)
}

a {
    color: #b8d4ff;
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(12, 17, 26, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .2px
}

.logo-mark {
    font-size: 1.35rem
}

.logo-text {
    font-size: 1.05rem
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--text);
    padding: 6px 10px;
    border-radius: 8px
}

.nav-list {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-list a {
    padding: 8px 10px;
    border-radius: 10px
}

.nav-list a:hover {
    background: rgba(255, 255, 255, 0.06)
}

.age-banner {
    padding: 8px 0;
    text-align: center;
    color: #f5f7ff;
    background: linear-gradient(90deg, rgba(26, 115, 232, .15), rgba(230, 57, 70, .15));
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.hero {
    padding: 80px 0 80px;
    background: radial-gradient(600px 200px at 10% -10%, rgba(26, 115, 232, .25), transparent),
    radial-gradient(600px 200px at 90% -10%, rgba(230, 57, 70, .25), transparent);
}

.hero-wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 28px;
    align-items: center
}

.hero-text {
    width: 60%;
}

.hero-text h1 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin: 0 0 8px
}

.hero-text p {
    color: var(--muted);
    margin: 0 0 16px
}

.hero-art {
    position: relative;
    width: 40%;
    filter: drop-shadow(0 0 15px #0008);
}
.hero-art img {
}

.img-fluid {
    max-width: 100%;
}

.chip {
    position: absolute;
    inset: auto;
    top: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a73e8, #6ea8ff);
    box-shadow: var(--ring);
    transform: rotate(12deg)
}

.chip:nth-child(2) {
    top: 50%;
    left: 55%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e63946, #ff8b94);
    box-shadow: 0 0 25px rgba(230, 57, 70, .5);
    transform: rotate(-8deg)
}

.chip:nth-child(3) {
    top: 10%;
    left: 70%;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1a73e8, #41c0ff);
    opacity: .9
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--text);
    background: rgba(255, 255, 255, .02);
    box-shadow: none;
    transition: .2s ease;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .06)
}

.btn.primary {
    background: linear-gradient(90deg, #1a73e8, #41c0ff);
    box-shadow: var(--ring);
    border: 0;
    color: white
}

.btn.glow {
    background: linear-gradient(90deg, #e63946, #ff8b94);
    box-shadow: 0 0 25px rgba(230, 57, 70, .5);
    border: 0;
    color: white;
    width: fit-content;
}

.offers {
    padding: 24px 0 40px
}

.offers h2 {
    margin: 0 0 16px
}

.offer-card {
    display: grid;
    grid-template-columns:1.2fr 1fr .9fr;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .2);
    border-radius: 16px
}

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 700;
    background: linear-gradient(135deg, #1a73e8, #41c0ff);
    box-shadow: var(--ring)
}

.offer-brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.offer-features ul {
    margin: 0;
    padding-left: 16px
}

.offer-features li {
    margin: 6px 0
}

.offer-cta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: end
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end
}

.stars {
    font-size: 20px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ffd166, #ffe29a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.score {
    font-weight: 700
}

.tiny {
    font-size: 12px
}

.small {
    font-size: 14px
}

.reviews {
    margin-top: 18px
}

.review-list {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.review {
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .02);
    border-radius: 14px;
    padding: 12px
}

.review-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e63946, #ff8b94);
    font-weight: 700
}

.why {
    padding: 28px 0
}

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

.adv {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    background: rgba(0, 0, 0, .2);
}

.adv h3 {
    margin: 2px 0 6px
}

.safety {
    padding: 24px 0 46px
}

.safety-card {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 18px;
    background: rgba(0, 0, 0, .2);
}

.checklist {
    padding-left: 18px
}

.checklist li {
    margin: 8px 0
}

.page-hero {
    padding: 24px 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.content {
    padding: 20px 0 40px
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 22px 0 28px;
    background: rgba(12, 17, 26, .8);
    backdrop-filter: blur(6px);
    margin-top: 24px
}

.footer-grid {
    display: grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap: 20px
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    margin: 8px 0 0;
    padding: 0
}

.footer-links li, .footer-legal li {
    margin: 8px 0
}

.age18 {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    font-weight: 700
}

.muted {
    color: var(--muted)
}

.small {
    font-size: 14px
}

.logos-placeholder {
    margin-top: 10px;
    padding: 10px;
    border: 1px dashed rgba(255, 255, 255, .2);
    border-radius: 10px;
    color: var(--muted);
    font-size: 13px
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 13, .7);
    backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
    z-index: 50;
}

.age-box {
    width: min(520px, 92%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--ring)
}

.age-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.stars-inline {
    color: #ffd166;
    letter-spacing: 1px
}

@media (max-width: 900px) {
    .hero-text {
        width: 100%;
    }
    .hero-art {
        width: 100%;
    }
    .hero-wrap {
       flex-wrap: wrap;
    }

    .offer-card {
        grid-template-columns:1fr
    }

    .review-list {
        grid-template-columns:1fr
    }

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

    .offer-cta {
        text-align: left;
        align-items: flex-start
    }

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

    .nav-toggle {
        display: block
    }

    .nav-list {
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        background: rgba(0, 0, 0, 1);
        border-radius: 12px;
        position: absolute;
        right: 4%;
        top: 52px;
        border: 1px solid rgba(255, 255, 255, .08)
    }

    .nav-list.open {
        display: flex
    }
}

.faq {
    padding: 40px 0 40px;
}

.faq-title {
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text, #222);
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, .2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    position: relative;
    padding-right: 20px;
}

.faq-item summary::after {
    content: "➕";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: "➖";
}

.faq-item p {
    margin-top: 15px;
    margin-bottom: 0;
    color: var(--text);
    line-height: 1.5;
}

body {
    background: url(../img/bg.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-wrap {

}

.footer-responsible {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
    flex-wrap: wrap;
}
.footer-responsible img {
    height: 60px;
}

.logo-mark img {
    height: 40px;
}

.resp-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, .08)
}

.resp-section h1 {
    font-size: 2.2rem;
    color: #d4a017;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.resp-section h2 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #fff;
    border-left: 4px solid #d4a017;
    padding-left: 10px;
    font-weight: 600;
}

.resp-section p {
    margin-bottom: 0.9rem;
    color: #fff;
}

.resp-section ul {
    list-style: none;
    padding: 0;
}

.resp-section ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.resp-section ul li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.resp-highlight {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #ffd966;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-weight: 500;
}

.resp-contact {
    background: rgba(0, 0, 0, 0.2);
    border-left: 4px solid #41c0ff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.resp-contact a {
    color: #0077cc;
    font-weight: bold;
}

@media (max-width: 768px) {
    .resp-section {
        padding: 20px;
    }
    .resp-section h1 {
        font-size: 1.7rem;
    }
    .resp-section h2 {
        font-size: 1.2rem;
    }
}