:root {
    --bg: #0f1115;
    --card: #161920;
    --muted: #9aa3af;
    --text: #e5e7eb;
    --accent: #22d3ee;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

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

body {
    font-family: Inter, system-ui;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: #93c5fd;
    text-decoration: none
}

header {
    background: rgba(15, 17, 21, .85);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px);
}
.logo-block {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
}
.logo-help {
    height: 60px;
    display: inline-block;
}
.logo-help img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.logo-help img.invert {
    filter: invert(1);
}
.plus18 {
    border-radius: 50%;
    justify-content: center;
    width: 60px;
    display: flex;
    background: #f33;
    align-items: center;
    font-weight: 700;
    font-size: 18px
}

.wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px
}

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

.logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: radial-gradient(circle at 30% 30%, #1f2937, #0b0e13);
}

.ttl {
    font-weight: 600;
    font-size: 16px
}

.age {
    font-size: 12px;
    color: var(--muted)
}

/* Баннер 18+ */
.age-banner {
    background: #b91c1c;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
}

.hero {
    margin: 25px 0
}

.hero h1 {
    font-size: 26px;
    margin-bottom: 8px
}

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

.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .06)
}

.offer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px
}

.offer img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #0d1320;
    padding: 10px
}

.offer-info {
    flex: 1
}

.rating {
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted)
}

.stars {
    color: #facc15;
    font-size: 14px;
    margin-right: 6px
}

.bar-line {
    height: 6px;
    background: #1f2937;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4px
}

.bar-fill {
    height: 6px;
    background: var(--accent)
}

.btn {
    background: #0f141c;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #e5e7eb;
    padding: 10px 18px;
    border-radius: 10px
}

.card h2 {
    margin-bottom: 10px
}

.card h3 {
    margin: 16px 0 8px;
    font-size: 16px
}

.card p {
    color: var(--muted);
    margin: 8px 0
}

.card ul {
    margin: 8px 0 8px 18px;
    color: var(--muted)
}

footer {
    padding: 30px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

footer a {
    color: var(--muted);
    margin: 0 6px;
    text-decoration: underline;
    font-size: 12px
}

.footer-bottom {
    background: #b91c1c;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
    margin-top: 20px;
}

@media (max-width: 700px) {
    .offer {
        flex-direction: column;
        align-items: flex-start
    }

    .btn {
        width: 100%;
        text-align: center
    }
}

section {
    padding: 15px 0;
}
.hero ul {
    padding-left: 25px
}