body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 10px; /* Reducimos el padding */
}
.game-container {
    width: 90%;
    max-width: 350px; /* Ancho máximo más pequeño */
    height: 450px; /* Altura más corta */
    background-color: #ffffff;
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
    touch-action: none;
}
#catcher {
    width: 60px; /* Carrito más pequeño */
    height: 30px;
    background-color: #4CAF50;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.snack {
    width: 25px; /* Snacks más pequeños */
    height: 25px;
    background-color: #ffc107;
    position: absolute;
    top: -25px;
    border-radius: 50%;
    transition: top linear;
}
#score, #timer {
    position: absolute;
    top: 5px;
    font-size: 1.2rem; /* Fuente más pequeña */
    font-weight: bold;
}
#score {
    left: 5px;
}
#timer {
    right: 5px;
}
#message-container {
    margin-top: 15px;
    text-align: center;
}
#message {
    font-size: 1.2rem;
    font-weight: bold;
}
#restart-button {
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
}