/**
 * Age Verification Modal Styles
 * Estilos para el modal de verificación de edad
 */

.age-verification-overlay
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    pointer-events: auto;
}

.age-verification-modal
{
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: ageVerificationFadeIn 0.3s ease-out;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

@keyframes ageVerificationFadeIn
{
    from
    {
        opacity: 0;
        transform: scale(0.9);
    }
    to
    {
        opacity: 1;
        transform: scale(1);
    }
}

.age-verification-content
{
    padding: 2.5rem;
    text-align: center;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.age-verification-title
{
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
    line-height: 1.3;
}

.age-verification-icon
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.age-verification-age-icon
{
    display: inline-block;
    font-size: 4rem;
    line-height: 1;
}

.age-verification-message
{
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-verification-buttons
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: auto;
    position: relative;
    z-index: 20;
}

.age-verification-buttons .btn
{
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
    pointer-events: auto !important;
    position: relative;
    z-index: 30;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.age-verification-btn-yes
{
    background-color: #0d6efd;
    color: #ffffff;
}

.age-verification-btn-yes:hover
{
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

.age-verification-btn-no
{
    background-color: #6c757d;
    color: #ffffff;
}

.age-verification-btn-no:hover
{
    background-color: #5c636a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

/* Responsive */
@media (min-width: 576px)
{
    .age-verification-buttons
    {
        flex-direction: row;
        justify-content: center;
    }
    
    .age-verification-buttons .btn
    {
        flex: 0 1 auto;
        min-width: 180px;
    }
}

@media (max-width: 575px)
{
    .age-verification-content
    {
        padding: 2rem 1.5rem;
    }
    
    .age-verification-title
    {
        font-size: 1.5rem;
    }
    
    .age-verification-message
    {
        font-size: 0.95rem;
    }
}

/* Ocultar contenido del sitio mientras se muestra el modal */
body.age-verification-active
{
    overflow: hidden;
}

body.age-verification-active .site
{
    filter: blur(5px);
    pointer-events: none;
}
