/* awale.css */
.aw-box { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.aw-name { font-size: 14px; color: var(--text-soft); }
.aw-name strong { color: var(--accent-2); }
.aw-row { display: flex; gap: 8px; background: #5a3f24; padding: 10px; border-radius: 40px; border: 2px solid #3e2b18; }
.aw-pit {
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid #3e2b18;
  background: #c9a86b; color: #2a1c0c; font-weight: 800; font-size: 18px;
  display: grid; place-items: center; cursor: default;
}
.aw-pit.playable { cursor: pointer; background: #e3c389; box-shadow: 0 0 0 2px var(--accent-2); }
.aw-pit.playable:hover { background: #f0d29a; }
@media (max-width: 380px) {
  .aw-pit { width: 40px; height: 40px; font-size: 16px; }
  .aw-row { gap: 5px; padding: 8px; }
}
