/* 棋盘样式 */
#game-board {
  display: block;
  cursor: default;
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* Canvas会通过JavaScript绘制，这里只定义容器样式 */
.board-section {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 骰子动画容器 */
.dice-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  animation: diceRoll 0.5s ease-in-out;
  pointer-events: none;
  z-index: 10;
}

@keyframes diceRoll {
  0% {
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
    opacity: 1;
  }
}

/* 玩家棋子样式（通过Canvas绘制） */
.player-piece {
  /* 这些样式会在Canvas中实现 */
}
