body.axiom-lock-scroll {
    overflow: hidden !important;
}

#axiomAgeGate {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    background: #f7fbfb;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.axiom-age-gate {
    display: flex;
    align-items: center;
    justify-content: center;
}

.axiom-bg-bottles {
    position: absolute;
    inset: 0;
    background-image: url("../images/Age Gate Background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
}

.axiom-age-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 530px;
    padding: 20px;
    text-align: center;
}

.axiom-logo-wrap {
    margin-bottom: 20px;
}

.axiom-logo {
    max-width: 170px;
    height: auto;
}

.axiom-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dce6ef;
    border-radius: 16px;
    padding: 32px 34px;
    text-align: left;
    box-shadow: 0 24px 60px rgba(14, 35, 56, 0.12);
}

.axiom-card h2 {
    margin: 0 0 14px;
    color: #112033;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.axiom-intro {
    margin: 0 0 20px;
    color: #5e6d80;
    font-size: 14px;
    line-height: 1.6;
}

.axiom-check-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
    background: #ffffff;
    color: #17263a;
    font-size: 14px;
    line-height: 1.45;
    cursor: pointer;
    transition: all 0.2s ease;
}

.axiom-check-box:hover {
    border-color: #9fb6c9;
    box-shadow: 0 8px 24px rgba(20, 40, 70, 0.07);
}

.axiom-check-box input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #102238;
    flex-shrink: 0;
}

.axiom-check-box strong {
    color: #0f1d31;
    font-weight: 800;
}

.axiom-enter-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 50px;
    background: #c8d4e2;
    color: #6f7f91;
    font-size: 15px;
    font-weight: 700;
    cursor: not-allowed;
    transition: all 0.25s ease;
    margin: 10px 0 22px;
}

.axiom-enter-btn span {
    margin-left: 8px;
    font-size: 18px;
}

.axiom-enter-btn.active {
    background: #102238;
    color: #ffffff;
    cursor: pointer;
}

.axiom-enter-btn.active:hover {
    background: #0092af;
    transform: translateY(-1px);
}

.axiom-disclaimer {
    margin: 0;
    color: #6c7b8d;
    font-size: 11px;
    line-height: 1.7;
}

.axiom-disclaimer a {
    color: #102238;
    font-weight: 700;
    text-decoration: none;
}

.axiom-exit-link {
    display: inline-block;
    margin-top: 28px;
    color: #6c7b8d;
    font-size: 12px;
    text-decoration: none;
}

.axiom-exit-link:hover {
    color: #102238;
}

#axiomAgeGate.axiom-hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .axiom-age-content {
        max-width: 460px;
        padding: 18px;
    }

    .axiom-logo {
        max-width: 145px;
    }

    .axiom-card {
        padding: 26px 22px;
    }

    .axiom-card h2 {
        font-size: 25px;
    }

    .axiom-intro,
    .axiom-check-box {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #axiomAgeGate {
        overflow-y: auto;
    }

    .axiom-age-gate {
        align-items: flex-start;
        padding-top: 35px;
    }

    .axiom-card {
        border-radius: 14px;
        padding: 24px 18px;
    }

    .axiom-card h2 {
        font-size: 23px;
    }

    .axiom-enter-btn {
        height: 46px;
        font-size: 14px;
    }
}