body {
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: center;
    background: #F29C85; /* Fondo oscuro para que resalten las banderas */
    color:white;
    padding: 20px;
  }
 h1{
	color:#E3DC74;
 }
 p{
	color:#E3DC74;
 }
 
  
  #timer, #score {
    font-size: 1.2rem;
    margin: 10px;
    font-weight: bold;
	color:#E3DC74;
  }
  
  input {
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    width: 250px;
  }
  
  #grille {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 30px auto;
  }
  
  .case {
    border: 2px solid #444;
    border-radius: 8px;
    padding: 5px;
    background: #2a2a40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: transform 0.2s;
  }
  
  /* Imagen de la bandera */
  .case img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  
  .case.found {
    border-color: #2ecc71;
    background: #1b3d2a;
  }
  
  .country-name {
    margin-top: 5px;
    font-size: 0.8rem;
    display: none; /* Oculto hasta que se adivine */
  }
  
  .case.found .country-name {
    display: block;
  }
  
  button {
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    background: #E3DC74;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
  }

  .btn-retour {
    display: inline-block;
    padding: 10px 20px;
    background-color: #444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-retour:hover {
    background-color: #666;
}