/* Age Verification Modal Styles */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.age-verification-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.age-verification-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.age-verification-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.age-verification-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.age-verification-description {
    font-size: 1.125rem;
    color: #e5e5e5;
    margin: 0;
    line-height: 1.6;
}

.age-verification-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.age-verification-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ffffff;
    min-width: 140px;
}

.age-verification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.age-verification-btn:active {
    transform: translateY(0);
}

.age-verification-btn-yes {
    background-color: #10b981;
}

.age-verification-btn-yes:hover {
    background-color: #059669;
}

.age-verification-btn-no {
    background-color: #ef4444;
}

.age-verification-btn-no:hover {
    background-color: #dc2626;
}

/* Light theme */
.age-verification-modal.theme-light .age-verification-content {
    background-color: #ffffff;
}

.age-verification-modal.theme-light .age-verification-title {
    color: #1a1a1a;
}

.age-verification-modal.theme-light .age-verification-description {
    color: #4b5563;
}

.age-verification-modal.theme-light .age-verification-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Responsive design */
@media (max-width: 640px) {
    .age-verification-content {
        padding: 2rem;
        width: 95%;
    }
    
    .age-verification-title {
        font-size: 1.75rem;
    }
    
    .age-verification-description {
        font-size: 1rem;
    }
    
    .age-verification-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .age-verification-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.age-verification-modal {
    animation: fadeIn 0.3s ease;
}

.age-verification-content {
    animation: slideUp 0.4s ease;
}

/* Accessibility */
.age-verification-btn:focus {
    outline: 3px solid #60a5fa;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .age-verification-modal {
        display: none !important;
    }
}