/* Age verification overlay styles */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.age-verification-overlay.show {
    display: flex;
    opacity: 1;
}

.age-verification-content {
    width: 100%;
    max-width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.age-verification-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.age-verification-title {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.8rem;
}

.age-verification-body {
    margin-bottom: 2rem;
}

.age-verification-body p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.age-verification-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
} 