#age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px; /* 小屏防贴边 */
}

.age-modal {
    width: 100%;
    max-width: 420px;
    background: #0e0e0e;
    color: #e1e3e5
    padding: 32px 28px;
    text-align: center;
    border: 1px solid #2a2a2a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.age-modal h2 {
    margin-top: 12px;
    font-size: 22px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    color: #e0e0e0;
    text-transform: uppercase;
}

.age-modal p {
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.7;
}

.age-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-actions button {
    min-width: 160px;
    padding: 12px 18px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

#age-yes {
    background: #bd0070;
    color: #e1e3e5;
    font-weight: 600;
    line-height: 0;
}

#age-yes:hover {
    background: #ec008c;
}

#age-no {
    background: transparent;
    color: #aaa;
    border: 1px solid #333;
    line-height: 0;
}

#age-no:hover {
    color: #e1e3e5
    border-color: #555;
}

/* 📱 小屏优化 */
@media (max-width: 480px) {
    .age-modal {
        padding: 28px 20px;
    }

    .age-modal h2 {
        font-size: 20px;
    }

    .age-modal p {
        font-size: 13px;
    }

    .age-actions button {
        width: 100%;
        min-width: unset;
    }
}