
:root {
    --bg: #0f1114;
    --paper: #101419;
    --gold: #d6b25e;
    --gold-2: #f1d38a;
    --text: #e8edf2;
    --muted: #b9c2cc;
    --neon: #bfffef;
    --accent: #3ad6c9;
    --card: #141a21;
    --glass: rgba(255, 255, 255, .06);
    --border: rgba(255, 255, 255, .12);
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0;
    background: #0c0f13;
    color: var(--text);
    font: 16px/1.65 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
}

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

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

a:hover {
    text-decoration: underline
}

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

.age-top-banner {
    background: linear-gradient(90deg, rgba(214, 178, 94, .15), rgba(255, 255, 255, 0));
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(6px);
    position: relative;
    top: 0;
    z-index: 50
}

.age-top-banner .container {
    display: flex;
    gap: .75rem;
    align-items: center;
    padding: .6rem 0
}

.age-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold-2);
    font-weight: 700;
    box-shadow: 0 0 12px rgba(241, 211, 138, .35) inset, 0 0 6px rgba(241, 211, 138, .25)
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(16, 20, 25, .6);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 40
}

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

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    letter-spacing: .2px
}

.logo-mark, .logo-mark.small {
    width: 32px;
    height: 32px;
}

.logo-mark.small {
    width: 22px;
    height: 22px
}

.logo-text {
    font-weight: 700
}

.tld {
    color: var(--gold-2)
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer
}

.nav-toggle .burger, .nav-toggle .burger::before, .nav-toggle .burger::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: relative;
    transition: .25s;
}

.nav-toggle .burger::before {
    position: absolute;
    top: -7px
}

.nav-toggle .burger::after {
    position: absolute;
    top: 7px
}

.nav-menu {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-menu a {
    display: inline-block;
    padding: .4rem .7rem;
    border-radius: .6rem
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, .06)
}

.hero {
    padding: clamp(40px, 6vw, 100px) 0;
    background: url(../img/hero.jpg);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border)
}

.grid-2 {
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: 40px;
    align-items: center
}

.kicker {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin: .25em 0 .4em;
    color: var(--gold-2);
    text-shadow: 0 0 18px rgba(241, 211, 138, .2)
}

.hero p {
    color: var(--muted);
    max-width: 62ch
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: .9rem;
    padding: .75rem 1.1rem;
    font-weight: 600;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: .2s;
    cursor: pointer;
    background: var(--card);
    color: #fff
}

.btn:hover {
    transform: translateY(-1px)
}

.btn-primary {
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    color: #111;
    border: 1px solid rgba(0, 0, 0, .3);
    text-shadow: 0 1px 0 rgba(255, 255, 255, .35);
    box-shadow: 0 6px 22px rgba(241, 211, 138, .25)
}

.btn-outline {
    background: transparent;
    color: var(--gold-2);
    border: 1px solid var(--gold)
}

.glass-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    overflow: hidden
}

.neon-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(241, 211, 138, .35), 0 0 60px rgba(58, 214, 201, .25) inset;
    border: 2px solid var(--gold)
}

.neon-chip {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    box-shadow: 0 0 24px rgba(58, 214, 201, .6);
    transform: translate(90px, -40px)
}

.neon-card {
    position: absolute;
    width: 160px;
    height: 100px;
    border-radius: 12px;
    border: 2px solid var(--gold-2);
    box-shadow: 0 0 28px rgba(241, 211, 138, .35);
    transform: translate(-90px, 40px) rotate(-8deg)
}

.hero-note {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: .85rem;
    color: var(--muted)
}

.offers {
    padding: 70px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #0f141a, #0c0f13)
}

.offers h2 {
    font-size: clamp(22px, 2.6vw, 32px);
    margin: 0 0 .25em;
    color: #fff
}

.offers .sub {
    color: var(--muted);
    margin: 0 0 24px
}

.offer-list {
    display: grid;
    grid-template-columns:1fr;
    gap: 18px
}

.offer-card {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

.offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: #111;
    padding: .35rem .6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .8rem
}

.offer-content {
    padding: 18px
}

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

.offer-logo {
    padding: 5px;
    width: 128px;
    height: 56px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    box-shadow: 0 0 12px rgba(241, 211, 138, .45)
}

.logo-placeholder {
    font-weight: 800;
    color: #111
}

.offer-title h3 {
    margin: .15rem 0
}

.offer-link {
    font-size: .9rem;
    color: var(--neon)
}

.offer-perks {
    list-style: none;
    margin: 10px 0 16px;
    padding: 0;
    display: grid;
    gap: 8px
}

.li-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-right: 8px;
    box-shadow: 0 0 10px rgba(241, 211, 138, .45)
}

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

.disclaimer {
    color: var(--muted);
    font-size: .9rem
}

.why {
    padding: 70px 0
}

.why h2 {
    margin-top: 0
}

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

.feature {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border-radius: 14px;
    padding: 16px;
    min-height: 160px
}

.feature h3 {
    margin: .2rem 0 .3rem
}

.feature p {
    margin: 0;
    color: var(--muted)
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold));
    box-shadow: 0 0 12px rgba(241, 211, 138, .45);
    margin-bottom: 8px
}

.feature-icon.shield {
    background: radial-gradient(circle at 30% 30%, var(--accent), #5ef0e4)
}

.feature-icon.star {
    background: radial-gradient(circle at 30% 30%, #fff3b0, #ffd56a)
}

.responsible {
    padding: 70px 0;
    border-top: 1px solid var(--border)
}

.responsible .grid-2 {
    align-items: start
}

.faq details {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    padding: 12px;
    margin-bottom: 10px
}

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

.faq p {
    margin: .6rem 0 0;
    color: var(--muted)
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #0b0e12;
    padding: 40px 0
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px
}

.footer-18 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted)
}

.footer-grid {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 10px;
    margin-top: 10px
}

.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px dashed var(--border);
    border-radius: 10px;
    min-height: 90px
}

.logo-ph {
    font-size: .8rem;
    color: var(--muted);
    padding: 5px;
}

.footer-bottom {
    margin-top: 14px;
    color: var(--muted);
    font-size: .95rem
}

.age-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
    backdrop-filter: blur(2px)
}

.age-card {
    width: min(560px, 96%);
    background: linear-gradient(180deg, #10151b, #0e1217);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  text-align: center;
}

.age-card-body {
    padding: 20px
}

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

.age-only {
    display: grid;
    min-height: 100dvh;
    place-items: center;
    background: linear-gradient(180deg, #0c0f13, #0f141a)
}

.age-only-card {
    background: linear-gradient(180deg, #10151b, #0e1217);
    border: 1px solid var(--border);
    padding: 26px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center
}

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

    .hero-media {
        order: -1
    }

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

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

    .site-header {
        top: 40px
    }
}

@media (max-width: 640px) {
    .nav-toggle {
        display: block
    }

    .nav-menu {
        position: absolute;
        right: 4%;
        top: 100%;
        background: linear-gradient(180deg, #10151b, #0e1217);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 8px;
        display: none;
        flex-direction: column;
        min-width: 220px
    }

    .nav-menu.open {
        display: flex
    }

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

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


/* Age popup redesign */
.age-icon {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-2);
    text-align: center;
    margin-bottom: 14px;
    text-shadow: 0 0 14px rgba(241, 211, 138, .55);
}

.age-note {
    font-size: .9rem;
    color: var(--muted);
    margin-top: 10px;
    text-align: center
}

/* Offer reviews */
.offer-reviews {
    margin: 10px 0 14px;
    color: var(--muted)
}

.stars {
    color: var(--gold-2);
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(241, 211, 138, .4)
}

.rating-text {
    font-size: .9rem;
    color: var(--muted)
}

/* Footer links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 10px 0
}

.footer-links a {
    color: var(--muted);
    font-size: .9rem
}

.footer-links a:hover {
    color: var(--gold-2)
}


/* Fancy Age Popup redesign */
.age-popup {
    background: radial-gradient(120% 100% at 50% 10%, rgba(58, 214, 201, .12), rgba(0, 0, 0, .7));
    animation: fadeIn .25s ease both
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.age-card {
    position: relative;
    overflow: hidden
}

.age-card::before, .age-card::after {
    pointer-events: none;
    content: "";
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 0deg, var(--accent), transparent 30%, var(--gold-2), transparent 60%, var(--accent));
    filter: blur(24px);
    opacity: .15;
    animation: spin 14s linear infinite;
}

.age-card::after {
    animation-direction: reverse;
    opacity: .1
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.age-card-body h2 {
    margin: .2rem 0 .5rem;
    font-size: clamp(22px, 2.6vw, 28px);
    color: var(--gold-2);
    text-shadow: 0 0 18px rgba(241, 211, 138, .25)
}

.age-card-body p {
    color: var(--muted)
}

.btn.btn-ghost {
    background: transparent;
    border: 1px dashed var(--gold);
    color: var(--gold-2)
}

/* Star rating */
.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px
}

.stars {
    --value: 4.6;
    --size: 20px;
    --color: #ffce4a;
    --bg: #2a2f37;
    position: relative;
    display: inline-block;
    font-size: 0;
    line-height: 1
}

.stars::before {
    content: "★★★★★";
    letter-spacing: 3px;
    font-size: var(--size);
    background: linear-gradient(90deg, var(--color) calc(var(--value) / 5 * 100%), var(--bg) calc(var(--value) / 5 * 100%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 206, 74, .3)
}

.rating .score {
    font-weight: 700;
    color: #fff
}

.rating .count {
    color: var(--muted);
    font-size: .95rem
}

/* Offer review list */
.reviews {
    margin-top: 12px;
    display: grid;
    gap: 10px
}

.review {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, .03)
}

.review .author {
    font-weight: 600
}

.review .text {
    color: var(--muted);
    margin: .25rem 0 0
}

/* Footer legal links */
.footer-legal {
    margin-top: 18px;
    border-top: 1px solid var(--border);
    padding-top: 12px
}

.footer-legal .link-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 10px
}

.footer-legal a {
    display: block;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015))
}

@media (max-width: 980px) {
    .footer-legal .link-grid {
        grid-template-columns:1fr 1fr
    }
}
.footer-brand {
    display: flex;
    gap: 5px;
    align-items: center;
}