:root {
    --bg: #f7f8fb;
    --surface: #ffffff;
    --text: #0b111e;
    --muted: #6b7280;
    --neon: #2af0ff;
    --neon-glow: 0 0 8px rgba(42, 240, 255, .65), 0 0 22px rgba(42, 240, 255, .35);
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.top-age-banner {
    background: linear-gradient(90deg, rgba(42, 240, 255, .15), rgba(42, 240, 255, .05));
    color: #06222a;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.neon-pill {
    background: #061c22;
    color: var(--neon);
    border: 1px solid rgba(42, 240, 255, .35);
    border-radius: 999px;
    padding: .35rem .6rem;
    box-shadow: var(--neon-glow);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.brand .logo-spot {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: radial-gradient(circle at 30% 30%, var(--neon), #9cf7ff 40%, #eaffff 60%);
    box-shadow: var(--neon-glow);
}

.brand-text {
    font-weight: 700;
    color: var(--text)
}

.text-neon {
    color: var(--neon);
    text-shadow: var(--neon-glow)
}

.nav-link {
    color: var(--text);
    opacity: .8
}

.nav-link:hover {
    opacity: 1
}

.hero-section {
    background: radial-gradient(1200px 400px at 10% -10%, rgba(42, 240, 255, .18), transparent 60%),
    radial-gradient(900px 350px at 90% -10%, rgba(42, 240, 255, .12), transparent 60%);
}

.hero-title {
    letter-spacing: .2px
}

.hero-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.btn-neon {
    background: var(--text);
    color: var(--neon);
    border: 1px solid rgba(42, 240, 255, .35);
    box-shadow: var(--neon-glow);
}

.btn-neon:hover {
    filter: brightness(1.05)
}

.hero-bullets {
    list-style: none;
    padding-left: 0
}

.hero-bullets li {
    margin: .25rem 0
}

.hero-bullets i {
    margin-right: .35rem;
    color: var(--neon)
}

.offers-section .offer-card .offer-logo {
    width: 128px;
    height: 64px;
    background: #eef8fb;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .06);
    position: relative;
    align-content: center;
}

.section-head p {
    color: var(--muted)
}

.why-item {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.why-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08)
}

.why-item i {
    color: var(--neon);
    text-shadow: var(--neon-glow)
}

.responsible-section .border {
    border-color: rgba(0, 0, 0, .08) !important
}

.site-footer {
    background: #252525;
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.footer-links a {
    opacity: .85
}

.footer-links a:hover {
    opacity: 1
}

.age-overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(11, 17, 30, .55);
    backdrop-filter: blur(6px);
    z-index: 2000;
}

.age-overlay.show {
    display: grid
}

.age-modal {
    max-width: 520px;
    width: 92%
}

.age-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 16px 60px rgba(0, 0, 0, .18);
}

.py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important
}

@media (max-width: 767.98px) {
    .display-5 {
        font-size: 2rem
    }
}

#home {
    position: relative;
}

#home .background {
    background: url(../img/bg.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 1;
    filter: brightness(0.3);
}

#home .container {
    position: relative;
}

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

.footer-links a {
    display: inline-block;
}

.logo-footer {
    padding: 5px;
}

.site-footer * {
    color: #fff;
}
.site-footer .text-muted {
    color: #aaa!important;
}
@media (max-width: 768px) {
    .site-footer .list-inline {
        text-align: center;
    }
}