.game {
    text-align: center;
    font-family: Arial, sans-serif;
    background-image: url('https://www.domenc.com/wp-content/uploads/2025/01/fondo-juegos-02-scaled.webp'); /* Cambia por la ruta de tu imagen */
    background-size: cover; /* Ajusta la imagen para cubrir todo el fondo */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    padding-bottom: 30px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}

.timer {
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
}

.score {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
}

.letter-container {
    background-color: #fff;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid #333;
    border-radius: 8px;
    display: inline-block;
}

.letters {
    font-size: 150px;
    font-weight: bold;
    color: #333;
}

.button-options {
    margin-top: 20px;
}

.button-options button {
    margin: 5px;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
}

.status {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

.celebration {
    position: relative;
    margin-top: 20px;
    font-size: 36px;
    display: none;
}

.celebration.show {
    display: block;
    animation: confetti 2.5s ease-out;
}

@keyframes confetti {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Dashboard styles */

.dashboard-title h1 {
    font-size: 24px; /* Reducir tamaño del texto "Seleccionar juego" */
}

.dashboard-title h2 {
    font-size: 20px; /* Reducir tamaño del texto "Seleccionar juego" */
}

.dashboard-title h3 {
    font-size: 16px; /* Reducir tamaño del texto "Seleccionar juego" */
}

.dashboard-title h4 {
    font-size: 12px; /* Reducir tamaño del texto "Seleccionar juego" */
}

.dashboard-title h5 {
    font-size: 8px; /* Reducir tamaño del texto "Seleccionar juego" */
}

.dashboard h1 {
    font-size: 24px; /* Reducir tamaño del texto "Seleccionar juego" */
}

.dashboard h2 {
    font-size: 20px; /* Reducir tamaño del texto "Seleccionar juego" */
}

.dashboard h3 {
    font-size: 16px; /* Reducir tamaño del texto "Seleccionar juego" */
}

.dashboard h4 {
    font-size: 12px; /* Reducir tamaño del texto "Seleccionar juego" */
}

.dashboard h5 {
    font-size: 8px; /* Reducir tamaño del texto "Seleccionar juego" */
}

.dashboard .game-options {
    margin-top: 30px;
}

.dashboard .game-options button {
    padding: 20px 20px;
    font-size: 16px;
    cursor: pointer;
}

.return-button {
    margin-top: 20px;
    display: none;
    padding: 10px 15px;
    font-size: 16px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}



