/* Age Verification Modal Styles */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-verification-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.age-verification-content {
    position: relative;
    z-index: 10000;
    animation: ageVerificationFadeIn 0.3s ease-out;
}

.age-verification-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.age-verification-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.age-verification-header p {
    color: #666;
    margin-bottom: 2rem;
}

.age-verification-body h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.age-verification-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 576px) {
    .age-verification-footer {
        flex-direction: row;
        justify-content: center;
    }
}

.age-verification-footer .btn {
    flex: 1;
    max-width: 200px;
}

@keyframes ageVerificationFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-section.blurred {
    filter: blur(5px);
    pointer-events: none;
}

/* Dark theme support */
[data-bs-theme="dark"] .age-verification-card {
    background: var(--bs-dark);
    color: var(--bs-light);
}

[data-bs-theme="dark"] .age-verification-header h2,
[data-bs-theme="dark"] .age-verification-body h3 {
    color: var(--bs-light);
}

[data-bs-theme="dark"] .age-verification-header p {
    color: var(--bs-secondary);
}

/* Hover effects for buttons */
.age-verification-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

/* Focus styles for accessibility */
.age-verification-footer .btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Mobile responsive adjustments */
@media (max-width: 575px) {
    .age-verification-card {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .age-verification-header h2 {
        font-size: 1.5rem;
    }
    
    .age-verification-body h3 {
        font-size: 1.1rem;
    }
    
    .age-verification-footer .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}