.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    animation: fadeIn 0.5s ease-in-out;
}

.age-modal-content {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #00FF55;
    box-shadow: 0 0 30px rgba(0, 255, 85, 0.3);
    animation: slideIn 0.6s ease-out;
}

.age-modal h2 {
    color: #00FF55;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 85, 0.5);
}

.age-modal p {
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.age-modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.age-btn-yes {
    background: linear-gradient(145deg, #00D11D, #1C8300);
    color: white;
    border: 2px solid #00FF48;
}

.age-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 85, 0.4);
}

.age-btn-no {
    background: linear-gradient(145deg, #ff4444, #cc0000);
    color: white;
    border: 2px solid #ff6666;
}

.age-btn-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fade-out {
    animation: fadeOut 0.5s ease-in-out;
}

@media only screen and (max-width: 768px) {
    .age-modal-content {
        padding: 30px 20px;
    }
    
    .age-modal-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .age-btn {
        width: 100%;
        max-width: 250px;
    }
}