
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
    padding: 2rem;
    box-sizing: border-box;
}

.age-content {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.age-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #49d8c8;
    font-weight: bold;
}

.age-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color:#4a4a4a;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.age-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
}

.age-confirm {
    background-color: #49d8c8;
    color: white;
}

.age-deny {
    background-color: #f0f0f0;
    color: #666;
}

.age-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}


@media (max-width: 768px) {
    .age-content {
        padding: 1.5rem;
    }
    
    .age-title {
        font-size: 1.5rem;
    }
}

