/* ============================================
   Age Gate - Popup de verificación de edad
   ============================================ */

#age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#age-gate-overlay.age-gate-closing {
    opacity: 0;
    pointer-events: none;
}

/* Contenedor central */
.age-gate-container {
    width: 100%;
    max-width: 560px;
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
}

/* Título */
.age-gate-title {
    font-family: inherit;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
    color: #ffffff;
}

/* Subtítulo */
.age-gate-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #d4c9a8;
    margin: 0 0 40px 0;
    font-family: serif;
}

/* Botones SÍ / NO */
.age-gate-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.age-gate-btn {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ffffff;
    padding: 14px 48px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-family: inherit;
    min-width: 120px;
}

.age-gate-btn:hover {
    background: #d4c9a8;
    border-color: #d4c9a8;
    transform: scale(1.02);
}

.age-gate-btn-outline {
    background: transparent;
    color: #ffffff;
}

.age-gate-btn-outline:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

/* Textos legales */
.age-gate-legal {
    margin-top: 10px;
}

.age-gate-warning {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.age-gate-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .age-gate-container {
        padding: 30px 20px;
    }
    .age-gate-title {
        font-size: 30px;
        letter-spacing: 4px;
    }
    .age-gate-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .age-gate-btn {
        padding: 12px 32px;
        font-size: 13px;
        min-width: 100px;
    }
}
