/* Othello-specific styles */

/* Flip animation */
.disc.flip {
  animation: discFlip 0.4s ease-in-out;
}

@keyframes discFlip {
  0%   { transform: scale(1); }
  50%  { transform: scale(0, 1); }
  100% { transform: scale(1); }
}

/* Last-placed disc indicator */
.board-cell.last-placed {
  box-shadow: inset 0 0 0 2px var(--accent-gold);
}

/* Score indicator disc icons in the info panel */
.score-disc {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 6px;
}

.score-disc.black {
  background: radial-gradient(circle at 35% 35%, #555, #111);
}

.score-disc.white {
  background: radial-gradient(circle at 35% 35%, #fff, #ccc);
}
