#age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: none; /* Algselt peidetud */
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.age-verification-modal {
    background: rgba(120, 22, 15, 0.95);
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid white;
}

.age-verification-question {
    font-size: 28px;
    font-weight: bold;
    margin: 30px 0 20px;
    color: #fff;
}

.age-verification-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.9;
}

.age-verification-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-verification-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.age-verification-btn:hover {
    background: #fff;
    color: #000;
}

.age-verification-btn.yes {
    background: #fff;
    color: #000;
}

.age-verification-btn.yes:hover {
    background: transparent;
    color: #fff;
}

@media (max-width: 768px) {
    .age-verification-modal {
        padding: 40px 20px;
    }
    
    .age-verification-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .age-verification-question {
        font-size: 24px;
    }
}
