body { background: linear-gradient(120deg, #f7971e 0%, #ffd200 100%); font-family: 'Segoe UI', Arial, sans-serif; margin: 0; }
h1 { text-align: center; color: #f7971e; margin-top: 28px; }
#game-container { display: flex; flex-direction: column; align-items: center; margin-top: 18px; }
#morris-board { background: #fffbe7; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.13); margin-bottom: 18px; }
.piece { border-radius: 50%; width: 28px; height: 28px; margin: -14px 0 0 -14px; box-shadow: 0 2px 6px rgba(0,0,0,0.10); border: 2.5px solid #fffbe7; position: absolute; }
.piece.black { background: #222; }
.piece.white { background: #fff; border: 2.5px solid #b8884b; }
.piece.selected { outline: 3px solid #f7971e; z-index: 2; }
#info { margin: 8px 0 8px 0; font-size: 1.1em; color: #333; min-height: 24px; }
@media (max-width: 600px) { #morris-board { width: 90vw; height: 90vw; } .piece { width: 6vw; height: 6vw; min-width: 18px; min-height: 18px; } }
