/* Estilos para el juego Adivina la Bandera */

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark-grey);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.game-container h2 {
    color: var(--electric-blue);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.game-info-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 600px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.2em;
}

#game-modes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

#game-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 600px;
}

#flag-container {
    width: 100%;
    height: auto;
    max-width: 400px;
    border: 3px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

#flag-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 150px;
    background-color: #f0f0f0;
}

#guess-input {
    width: 80%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 1.1em;
}

#message {
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    height: 1.5em;
}

.game-btn {
    background-color: var(--electric-blue);
    color: var(--white);
    padding: 12px 25px;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.game-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}