body {
    background: linear-gradient(135deg, #f7faff, #e3f2fd);
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background: #ffffffd9;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 20px;
    overflow: hidden;
    position: relative;
}

.hero .container {
    z-index: 1;
    position: relative;
}

.hero .background {
    background: url(../img/hero.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0.5;
    filter: blur(2px);
}

.hero h1 {
    font-weight: 700;
    font-size: 2.8rem;
    color: #0d47a1;
    text-shadow: 0 0 25px #fff;
}

.hero p {
    color: #555;
    margin: 20px 0;
    font-size: 1.2rem;
    text-shadow: 0 0 25px #fff;
}

.btn-main {
    background: #1976d2;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-main:hover {
    background: #1565c0;
    color: #fff;
}

.gateway-section {
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.fw-700 {
    font-weight: 700;
}

.highlight-chip {
    display: inline-block;
    background: #ffc400;
    color: #111;
    padding: .25rem .6rem;
    border-radius: .35rem;
    box-shadow: 0 4px 14px rgba(255, 196, 0, .25);
}

.feature-card {
    background: radial-gradient(120% 120% at 10% 10%, #e7f7ff 0%, #dff2ff 45%, #eaefff 100%);
    border: 1px solid rgba(13, 71, 161, .08);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 10px 24px rgba(13, 71, 161, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(13, 71, 161, .12);
}

.feature-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0d47a1;
    background: #e3f2fd;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
}

@media (max-width: 991.98px) {
    .display-6 {
        font-size: 1.9rem;
    }
}

.py-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.intro-split {
    background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
}

.chip {
    display: inline-block;
    background: #ffc107;
    color: #111;
    padding: .35rem .6rem;
    border-radius: .4rem;
    box-shadow: 0 6px 18px rgba(255, 193, 7, .28);
}

.btn-sky {
    background: #8bd1ff;
    color: #0d47a1;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 18px rgba(139, 209, 255, .35);
}

.btn-sky:hover {
    filter: brightness(.95);
}

.illu-wrap {
    max-width: 590px;
    margin-inline: auto;
}

.rings {
    position: absolute;
    inset: 0;
    background: radial-gradient(closest-side, rgba(13, 71, 161, .12), transparent 60%) 0 0/100% 100% no-repeat,
    radial-gradient(circle at 35% 55%, rgba(13, 71, 161, .10) 2px, transparent 3px) 0 0/100% 100% no-repeat;
    mask: radial-gradient(circle at 40% 55%, #000 0 26%, transparent 27%),
    radial-gradient(circle at 40% 55%, #0000 0 38%, #000 39% 39.6%, #0000 40%),
    radial-gradient(circle at 40% 55%, #0000 0 52%, #000 53% 53.6%, #0000 54%),
    radial-gradient(circle at 40% 55%, #0000 0 66%, #000 67% 67.6%, #0000 68%);
    opacity: .6;
}

.intro-split.theme-dark {
    background: #0f1218;
    color: #e7eef9;
}

.intro-split.theme-dark .text-secondary {
    color: #b9c6dd !important;
}

.intro-split.theme-dark .chip {
    background: #ffb300;
    color: #121212;
}

.intro-split.theme-dark .btn-sky {
    background: #8bd1ff;
    color: #0b2a6a;
}

@media (max-width: 991.98px) {
    .content {
        text-align: center;
    }
}

.py-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem
}

.posts-section.theme-dark {
    background: #15181f;
    color: #e7eef9
}

.posts-section .text-secondary {
    color: #aeb8cc !important
}

.eyebrow {
    display: inline-block;
    background: #ffc107;
    color: #121212;
    padding: .35rem .6rem;
    border-radius: .4rem
}

.eyebrow-alt {
    background: transparent;
    color: #ffcd45;
    border: 1px solid rgba(255, 205, 69, .35)
}

.post-card {
    background: #232833;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    transition: transform .25s ease, box-shadow .25s ease
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .25)
}

.thumb {
    display: block;
    overflow: hidden
}

.img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.post-sep {
    border-color: rgba(255, 255, 255, .08);
    opacity: 1
}

.read-more {
    font-weight: 600;
    color: #9bd3ff;
    text-decoration: none
}

.read-more .arrow {
    display: inline-block;
    transition: transform .2s ease
}

.read-more:hover .arrow {
    transform: translateX(4px)
}

.posts-section:not(.theme-dark) {
    background: linear-gradient(180deg, #f7fbff 0%, #f1f6ff 100%);
    color: #0d1b2a
}

.posts-section:not(.theme-dark) .post-card {
    background: #ffffff;
    border-color: rgba(13, 71, 161, .08);
    box-shadow: 0 10px 24px rgba(13, 71, 161, .08)
}

.posts-section:not(.theme-dark) .post-sep {
    border-color: rgba(13, 71, 161, .12)
}

.posts-section:not(.theme-dark) .text-secondary {
    color: #546a86 !important
}

.posts-section:not(.theme-dark) .read-more {
    color: #1976d2
}

.btn-outline-sky {
    border: 1px solid #8bd1ff;
    color: #8bd1ff
}

.btn-outline-sky:hover {
    background: #8bd1ff;
    color: #0b2a6a
}

.pt-6 {
    padding-top: 4.5rem
}

.pb-5 {
    padding-bottom: 3rem
}

.site-footer {
    position: relative;
    color: #cfd8ea;
    background: #0f1218;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: -40% -10% auto -10%;
    height: 120%;
    background: radial-gradient(60% 60% at 20% 20%, rgba(155, 0, 255, .18), transparent 60%),
    radial-gradient(60% 60% at 80% 0%, rgba(0, 188, 255, .12), transparent 60%);
    transform: translateY(-10%);
    pointer-events: none;
}

.footer-list li {
    margin: .4rem 0
}

.footer-list a {
    color: #cfd8ea;
    text-decoration: none
}

.footer-list a:hover {
    color: #9bd3ff
}

.circle-ico {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 209, 255, .08);
    color: #8bd1ff;
    border: 1px solid rgba(139, 209, 255, .25)
}

.link-sky {
    color: #9bd3ff;
    text-decoration: none
}

.link-sky:hover {
    text-decoration: underline
}

.badges-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
}

.badges-wrap img {
    height: 34px;
    width: auto;
    object-fit: contain
}

@media (max-width: 991.98px) {
    .badges-wrap {
        border-radius: 12px
    }
}

.age-bar {
    position: sticky;
    top: 0;
    z-index: 1100;
    padding: .65rem 0;
    color: #eaf4ff;
    background: radial-gradient(120% 100% at 0% 0%, rgba(139, 209, 255, .25), transparent 60%),
    linear-gradient(90deg, #15181f, #10131a 40%, #15181f);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.age-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 24px;
    border-radius: 999px;
    background: #ff4d4f;
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    padding: 0 .25rem;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(255, 77, 79, .35);
}

.age-text {
    color: #c9d5ea
}

.age-close {
    position: absolute;
    right: .5rem;
    top: .35rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #eaf4ff;
    border: 1px solid rgba(255, 255, 255, .15);
    line-height: 26px;
    text-align: center;
    cursor: pointer;
}

.age-close:hover {
    background: rgba(255, 255, 255, .12)
}

.age-bar.hide {
    opacity: 0;
    transform: translateY(-6px);
    transition: all .28s ease
}

.py-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem
}

.contact-section.theme-dark {
    background: #15181f;
    color: #e7eef9;
}

.contact-section .text-secondary {
    color: #aeb8cc !important
}

.fw-800 {
    font-weight: 800
}

.eyebrow {
    display: inline-block;
    background: #ffbf00;
    color: #121212;
    padding: .35rem .6rem;
    border-radius: .4rem
}

.contact-card {
    max-width: 880px;
    background: #222730;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22)
}

.form-label {
    color: #cfd8ea;
    font-weight: 600
}

.form-control {
    background: #1d222a;
    border: 1px solid rgba(255, 255, 255, .08);
    color: #e7eef9;
    padding: 12px 14px;
    border-radius: 10px;
}

.form-control:focus {
    background: #1e2430;
    border-color: #86c8ff;
    box-shadow: 0 0 0 .2rem rgba(134, 200, 255, .15);
    color: #fff;
}

.btn-sky {
    background: #8bd1ff;
    color: #0b2a6a;
    font-weight: 700;
    border: none
}

.btn-sky:hover {
    filter: brightness(.95)
}

.age-gate[hidden] {
    display: none
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
}

.age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 20% 10%, rgba(139, 209, 255, .22), transparent 60%),
    radial-gradient(140% 120% at 80% 90%, rgba(255, 132, 0, .18), transparent 60%),
    #0f1218cc;
    backdrop-filter: blur(10px);
}

.age-gate__card {
    position: relative;
    width: min(680px, 92vw);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
    color: #eaf2ff;
    border-radius: 20px;
    padding: 28px 24px 22px;
    text-align: center;
}

.age-gate__badge {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(-50%);
    width: 84px;
    height: 84px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 30px;
    letter-spacing: .5px;
    color: #fff;
    background: linear-gradient(135deg, #ff4d4f, #ff7a45);
    box-shadow: 0 18px 36px rgba(255, 77, 79, .35);
    border: 2px solid rgba(255, 255, 255, .65);
}

.age-gate__title {
    margin-top: 34px;
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 800;
}

.age-gate__desc {
    margin: 12px auto 0;
    color: #c4d1ea;
    max-width: 560px;
    line-height: 1.65;
}

.age-gate__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 22px 0 10px;
}

.btn-yes, .btn-no {
    appearance: none;
    border: none;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-yes {
    background: #8bd1ff;
    color: #0b2a6a;
    box-shadow: 0 10px 24px rgba(139, 209, 255, .35);
}

.btn-yes:hover {
    filter: brightness(.96);
    transform: translateY(-1px)
}

.btn-no {
    background: transparent;
    color: #ffd27a;
    border: 1px solid rgba(255, 210, 122, .45);
    box-shadow: 0 6px 16px rgba(255, 210, 122, .15) inset;
}

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

.age-gate__note {
    display: block;
    color: #9fb0cc;
    opacity: .9;
}

@media (max-width: 420px) {
    .btn-yes, .btn-no {
        width: 100%
    }

    .age-gate__badge {
        width: 74px;
        height: 74px;
        font-size: 26px
    }
}

@keyframes ageFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.age-gate__card {
    animation: ageFadeIn .35s ease both
}