/* =========================================================
   Hotspan Age Gate
   ========================================================= */

.hotspan-age-gate {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hotspan-age-gate[hidden] {
    display: none !important;
}

.hotspan-age-gate__box {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hotspan-age-gate__logo {
    max-width: 180px;
    max-height: 70px;
    margin: 0 auto 25px;
}

.hotspan-age-gate h2 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.2;
}

.hotspan-age-gate p {
    margin: 0 0 25px;
    color: #555;
    line-height: 1.6;
}

.hotspan-age-gate__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.hotspan-age-gate button {
    border: 0;
    border-radius: 6px;
    padding: 13px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.hotspan-age-gate__yes {
    background: #111;
    color: #fff;
}

.hotspan-age-gate__no {
    background: #e8e8e8;
    color: #111;
}

.hotspan-age-gate__field {
    text-align: left;
    margin-bottom: 18px;
}

.hotspan-age-gate__field label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
}

.hotspan-age-gate__field input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.hotspan-age-gate__submit {
    width: 100%;
    background: #111;
    color: #fff;
    margin-top: 5px;
}

.hotspan-age-gate__back {
    background: transparent !important;
    color: #555 !important;
    padding: 8px !important;
    margin-top: 10px;
}

.hotspan-age-gate__message {
    margin-top: 15px;
    font-size: 14px;
}

.hotspan-age-gate__message.error {
    color: #c62828;
}

.hotspan-age-gate__message.success {
    color: #2e7d32;
}

.hotspan-age-gate__otp {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.hotspan-age-gate__otp input {
    width: 45px;
    height: 50px;
    padding: 0;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.hotspan-age-gate__resend {
    background: transparent !important;
    color: #111 !important;
    padding: 8px !important;
}

.hotspan-age-gate__loading {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 480px) {

    .hotspan-age-gate {
        padding: 15px;
    }

    .hotspan-age-gate__box {
        padding: 25px 20px;
    }

    .hotspan-age-gate h2 {
        font-size: 24px;
    }

    .hotspan-age-gate__buttons {
        flex-direction: column;
    }

    .hotspan-age-gate__otp {
        gap: 5px;
    }

    .hotspan-age-gate__otp input {
        width: 40px;
        height: 46px;
    }
}