body {
    overflow: hidden;
    position: relative;
    background-color: pink;
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Gatti volanti */
.floater {
    position: absolute;
    width: 100px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

/* Contenitore centrale (Il box bianco sfocato) */
.main-content {
    z-index: 10;
    position: relative;
    text-align: center;
    max-width: 700px;
    width: 90%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Stile comune per tutti i bottoni */
#start-btn,
.btn-custom {
    background-color: white;
    color: #ff6b6b;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 10px;
    /* Spazio tra i bottoni */
}

/* Effetto hover */
#start-btn:hover,
.btn-custom:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #ff4757;
    background-color: #fff0f5;
}

/* Pulsante disabilitato */
.btn-custom:disabled,
.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

h1 {
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.btn-img-answer {
    background: none;
    /* Nessuno sfondo colorato */
    border: none;
    /* Nessun bordo */
    padding: 5px;
    /* Un po' di spazio attorno */
    cursor: pointer;
    /* Manina quando passi sopra */
    transition: transform 0.3s ease;
    /* Animazione fluida */
    border-radius: 20px;
    /* Angoli arrotondati */
}

/* L'effetto hover: si ingrandisce leggermente */
.btn-img-answer:hover {
    transform: scale(1.08);
    /* Opzionale: aggiunge un'ombra colorata quando passi sopra */
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

/* Stile per l'immagine DENTRO il bottone */
.btn-img-answer img {
    /* Dimensione massima delle immagini, aggiustala se serve */
    max-width: 250px;
    height: 200px;
    /* Forza un'altezza fissa per averle uguali */
    object-fit: cover;
    /* Ritaglia l'immagine per riempire il quadrato senza deformarla */
    border-radius: 15px;
    /* Arrotonda l'immagine stessa */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Ombra di base dell'immagine */
}

/* Stile per l'immagine che scappa */
#gatto-che-scappa {
    transition: top 0.3s ease, left 0.3s ease, transform 0.3s ease;
    z-index: 100;
    cursor: pointer;
}