.tod-age {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tod-age.is-open {
    display: flex;
}

.tod-age__backdrop {
    position: absolute;
    inset: 0;
    background: #000;
}

.tod-age__dialog {
    position: relative;
    background: var(--color-card-3);
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.tod-age__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    color: var(--color-white);
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s ease;
}

.tod-age__close:hover {
    background: rgba(255, 255, 255, 0.08);
}

.tod-age__title {
    color: var(--color-white);
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px;
}

.tod-age__subtitle {
    color: var(--color-white);
    font-size: 14px;
    margin: 0 0 28px;
    line-height: 1.5;
}

.tod-age__confirm {
    min-width: 160px;
    justify-content: center;
}
