/* Age Verification Modal Styles */
.age-verification-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none; /* Hidden by default, toggled by JS */
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.age-verification-modal {
    background-color: #0f1821;
    border: 2px solid #d4a574; /* Gold Border */
    padding: 3rem 2rem; /* Increased padding */
    max-width: 32rem; /* Slightly wider */
    width: 100%;
    margin: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.age-verification-logo-wrapper {
    margin-bottom: 2rem;
}

.age-verification-logo {
    width: 100%;
    max-width: 280px; /* Larger logo */
    height: auto;
    display: inline-block;
}

.age-verification-logo-text {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
}

.age-verification-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
}

.age-verification-message {
    color: #E0E0E0;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.age-verification-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.age-verify-btn {
    flex: 1;
    font-weight: 800;
    padding: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    font-family: 'Chakra Petch', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80px; /* Taller buttons matching design */
}

/* YES BUTTON: Gold BG, Black Text */
.age-verify-yes {
    background-color: #d4a574;
    color: #000000;
}

.age-verify-yes:hover {
    background-color: #c49564;
    transform: translateY(-2px);
}

/* NO BUTTON: Dark Slate BG, White Text */
.age-verify-no {
    background-color: #2A3C4D;
    color: #FFFFFF;
}

.age-verify-no:hover {
    background-color: #374b5e;
    transform: translateY(-2px);
}


.age-verification-disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Mobile responsive */
@media screen and (max-width: 640px) {
    .age-verification-modal {
        padding: 1.5rem;
    }

    .age-verification-heading {
        font-size: 1.25rem;
    }

    .age-verification-buttons {
        flex-direction: column;
    }

    .age-verify-btn {
        font-size: 0.75rem;
        padding: 0.625rem 1rem;
    }
}
