/* =========================================
   Age Verification Popup
   ========================================= */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* 深色遮罩 */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-gate-content {
    background-color: #0f172a;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #334155;
    box-shadow: 0 0 50px rgba(195, 233, 79, 0.1);
}

.age-gate-logo {
    width: 120px;
    margin-bottom: 2rem;
}

.age-gate-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif;
}

.age-gate-desc {
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-verify {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-yes {
    background-color: #C3E94F; /* 品牌绿 */
    color: #000;
}

.btn-yes:hover {
    background-color: #fff;
    transform: scale(1.05);
}

.btn-no {
    background-color: transparent;
    border: 1px solid #475569;
    color: #94a3b8;
}

.btn-no:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* 禁止滚动 */
body.no-scroll {
    overflow: hidden;
}