@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&family=Roboto:wght@400;700&display=swap');

body {
  background-color: #1a1a1a;
  color: #f0f0f0;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

h1 {
  font-family: 'Rock Salt', cursive;
  color: #e74c3c;
  font-size: 1.8rem;
  margin: 10px 0;
}

.container {
  background: #2c2c2c;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  max-width: 500px;
  width: 90%;
  border: 1px solid #444;
}

/* Marcador */
.scoreboard {
  display: flex;
  justify-content: space-around;
  background: #222;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.2rem;
  border: 1px solid #444;
}
.score-item.green { color: #2ecc71; }
.score-item.red { color: #e74c3c; }

/* Botones Generales */
.btn {
  border: none;
  padding: 12px 20px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  margin: 10px 0;
  width: 100%;
  font-weight: bold;
  transition: transform 0.1s;
  color: white;
}
.btn:active { transform: scale(0.95); }

.btn-primary { background-color: #e74c3c; box-shadow: 0 4px 0 #c0392b; }
.btn-secondary { background-color: #34495e; }
.btn-blue { background-color: #3498db; }
.btn-orange { background-color: #f39c12; }

.btn-small {
  width: 48%;
  font-size: 0.9rem;
  padding: 10px;
  margin: 5px 1%;
  display: inline-block;
}

/* NUEVOS BOTONES DE VOTACIÓN (Lado a Lado) */
.vote-buttons {
  display: flex;
  gap: 10px; /* Espacio entre ellos */
  justify-content: center;
  margin-top: 10px;
}

.btn-vote {
  margin: 0; /* Quitar margen default */
  font-size: 1rem;
}

.btn-green { 
  background-color: #2ecc71; 
  box-shadow: 0 4px 0 #27ae60;
}

.btn-red { 
  background-color: #555; /* Gris oscuro para "No la saqué" (menos agresivo) */
  box-shadow: 0 4px 0 #333;
}
.btn-red:hover { background-color: #e74c3c; } /* Se pone rojo al pasar el mouse */

.hidden { display: none; }
#status-text { font-style: italic; color: #aaa; margin: 10px 0; min-height: 24px; }
#song-title { color: #f1c40f; font-size: 1.4rem; margin: 10px 0; text-transform: uppercase; border-bottom: 1px solid #444; padding-bottom: 10px;}

footer { margin-top: 20px; font-size: 0.8rem; color: #666; }