.age-verify {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-verify.is-hidden {
    display: none;
}

.age-verify__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.age-verify__card {
    position: relative;
    z-index: 1;
    background-color: #0d1c33;
    border: 1px solid #35f0ec;
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 460px;
    margin: 0 24px;
}

.age-verify__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.age-verify__logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.age-verify__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.age-verify__subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.age-verify__check-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.age-verify__checkbox {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 1px solid #35f0ec;
    border-radius: 5px;
    accent-color: #35f0ec;
    cursor: pointer;
}

.age-verify__check-label span {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    white-space: nowrap;
}

.age-verify__note {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin: 0;
    line-height: 1.6;
    max-width: 360px;
}

.age-verify__btn {
    width: 100%;
    height: 56px;
    background-color: #35f0ec;
    color: #0d1c33;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 22px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
    box-shadow: 0 4px 20px rgba(53, 240, 236, 0.2);
}

.age-verify__btn:hover {
    opacity: 0.9;
}

.age-verify__error {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #ff6b6b;
    margin: -8px 0 0;
    text-align: center;
}

@media (max-width: 480px) {
    .age-verify__card {
        padding: 28px 24px;
        gap: 16px;
    }

    .age-verify__title {
        font-size: 20px;
    }

    .age-verify__check-label span {
        font-size: 15px;
        white-space: normal;
    }

    .age-verify__btn {
        font-size: 18px;
    }
}
