/* Age Verification Popup */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
#age-check-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#age-check-overlay.hidden {
    display: none;
}

.age-check-card {
    background: #1A1A1A;
    border: 2px solid #FF0000;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.25);
}

.age-check-logo {
    max-width: 160px;
    margin-bottom: 1.5rem;
}

.age-check-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #FFFFFF;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.age-check-card p {
    color: #ADB5BD;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.age-check-card .age-check-denied p {
    color: #ADB5BD;
    margin-bottom: 0;
}

.age-check-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.age-check-btn {
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.age-check-btn-yes {
    background: #FF0000;
    color: #FFFFFF;
    border-color: #FF0000;
}

.age-check-btn-yes:hover {
    background: #CC0000;
    border-color: #CC0000;
}

.age-check-btn-no {
    background: transparent;
    color: #ADB5BD;
    border-color: #495057;
}

.age-check-btn-no:hover {
    border-color: #ADB5BD;
    color: #FFFFFF;
}

.age-check-denied {
    display: none;
}

.age-check-denied-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.age-check-denied h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.age-check-legal {
    margin-top: 1.5rem;
    font-size: 0.78rem !important;
    color: #495057 !important;
    margin-bottom: 0 !important;
}
