/* Age Verification Modal */
#age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.age-gate-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/El-Plomo.jpg') no-repeat center center/cover;
    animation: zoomPulse 20s infinite alternate ease-in-out;
    z-index: -1;
}

@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.age-gate-content {
    text-align: center;
    color: white;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 90%;
    width: 500px;
    animation: fadeIn 0.8s ease-out;
}

.age-question {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

@media (min-width: 480px) {
    .age-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.age-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
    flex: 1;
}

.age-btn.yes {
    background-color: var(--primary-color);
    color: white;
}

.age-btn.yes:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.age-btn.no {
    background-color: transparent;
    border: 2px solid #ccc;
    color: #ccc;
}

.age-btn.no:hover {
    border-color: #fff;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.age-brand-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}