/**
 * Age Verification Gate Styles
 */

.age-verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.age-verification-overlay.active {
    display: flex;
}

.age-verification-modal {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.age-verification-content h2 {
    margin: 0 0 20px 0;
    font-size: 28px;
    color: #333;
    font-weight: 700;
}

.age-verification-content p {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.age-verification-buttons {
    margin: 30px 0 20px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-verify-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.age-verify-yes {
    background-color: #28a745;
    color: #ffffff;
}

.age-verify-yes:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.age-verify-no {
    background-color: #dc3545;
    color: #ffffff;
}

.age-verify-no:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.age-verification-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

/* Responsive styles */
@media (max-width: 600px) {
    .age-verification-modal {
        padding: 30px 20px;
    }

    .age-verification-content h2 {
        font-size: 24px;
    }

    .age-verification-buttons {
        flex-direction: column;
    }

    .age-verify-btn {
        width: 100%;
    }
}

/* Prevent body scroll when overlay is active */
body.age-verification-active {
    overflow: hidden;
}
