#age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e3d2f 0%, #0f241b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: "Segoe UI", Arial, sans-serif;
}

#age-box {
    background: #f4f1e8;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    max-width: 360px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 3px solid #6c9a5b;
}

#age-box h2 {
    margin-bottom: 10px;
    color: #2f5d3a;
    font-size: 26px;
}

#age-box p {
    color: #444;
    font-size: 16px;
    margin-bottom: 25px;
}

#age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

/* Bottone positivo (verde agricolo) */
.age-yes {
    background: #6c9a5b;
    color: white;
}

.age-yes:hover {
    background: #5a824c;
    transform: translateY(-2px);
}

/* Bottone negativo (terra/desaturato) */
.age-no {
    background: #a94442;
    color: white;
}

.age-no:hover {
    background: #8a3634;
    transform: translateY(-2px);
}

/* Piccolo badge stile gioco */
#age-badge {
    font-size: 12px;
    color: #6c9a5b;
    margin-bottom: 10px;
    letter-spacing: 1px;
}