body {
  font-family: Arial;
  text-align: center;
  background: linear-gradient(135deg, #1e1e1e, #333);
  color: white;
}

.turns {
  margin-top: 10px;
  font-size: 16px;
}

.active {
  font-weight: bold;
  text-decoration: underline;
}

.board {
  display: grid;
  grid-template-columns: repeat(10, 55px);
  gap: 5px;
  justify-content: center;
  margin-top: 20px;
}

.cell {
  width: 55px;
  height: 55px;
  background: #444;
  border-radius: 8px;
  font-size: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  overflow: hidden;
}

/* IMÁGENES PNG */
.ladder {
  background: url('assets/escalera.png') center/contain no-repeat;
}

.snake {
  background: url('assets/serpiente.png') center/contain no-repeat;
}

.player {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 1px;
  border: 1px solid #000;
}

.white { background: white; }
.black { background: black; }
.blue { background: blue; }
.red { background: red; }

.dice {
  font-size: 60px;
  margin-top: 20px;
}

.roll {
  animation: spin 1s ease;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(360deg) scale(1.5); }
  100% { transform: rotate(720deg); }
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.info {
  margin-top: 15px;
  font-size: 18px;
}