.age-disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.age-disclaimer-popup {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.age-disclaimer-popup h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.age-disclaimer-popup p {
    margin: 15px 0;
    line-height: 1.6;
}

.age-disclaimer-popup ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.age-disclaimer-popup li {
    margin: 10px 0;
}

.age-disclaimer-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.age-disclaimer-buttons button {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.confirm-age {
    background: #28a745;
    color: white;
}

.confirm-age:hover {
    background: #218838;
}

.decline-age {
    background: #dc3545;
    color: white;
}

.decline-age:hover {
    background: #c82333;
}

@media (max-width: 480px) {
    .age-disclaimer-popup {
        width: 95%;
        padding: 20px;
    }
}