body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #e9f4ff;
  margin: 0;
  padding: 20px;
}
h1 {
  margin-bottom: 10px;
}
#juego {
  margin: 20px auto;
  max-width: 700px;
  padding: 20px;
  border-radius: 15px;
  background: white;
}
#resultado {
  font-size: 22px;
  margin: 20px 0;
  font-weight: bold;
}
#botonJugar {
  padding: 15px 30px;
  font-size: 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #333;
  color: white;
}
#botonJugar:hover {
  background: #555;
}
.pizarra {
  margin-top: 30px;
  border: 2px solid black;
  border-radius: 10px;
  padding: 15px;
  background: #183114;
  color: white;
}
table {
  margin: 10px auto;
  border-collapse: collapse;
  color: white;
}
th, td {
  border: 1px solid white;
  padding: 10px;
  text-align: center;
  min-width: 40px;
}

/* ---- CAMPO ---- */
.campo {
  position: relative;
  margin: 30px auto;
  width: 300px;
  height: 300px;
  background: #3fa34d; /* Césped verde */
  border-radius: 50%;
  overflow: hidden;
}
.arena {
  position: absolute;
  width: 180px;
  height: 180px;
  background: #d9a066; /* Arena marrón */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 10px;
}
.base {
  width: 30px;
  height: 30px;
  background: white;
  border: 2px solid black;
  position: absolute;
}
.home {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
#primera {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
#segunda {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
#tercera {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.base.ocupada {
  background: orange;
}

/* ---- HISTORIAL ---- */
.historial {
  margin-top: 40px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 10px;
  padding: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.historial ul {
  list-style: none;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}
.historial li {
  padding: 5px;
  border-bottom: 1px solid #ccc;
}
.indicador {
  color: red;
  font-size: 1.2em;
}

.base {
  background: white;
  border: 2px solid black;
}
