.keno-board {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 560px;
}

.keno-cell {
  aspect-ratio: 1 / 1;
  background: var(--panel-light);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}

.keno-cell:hover:not(.disabled) {
  border-color: var(--gold);
  color: var(--text);
}

.keno-cell.selected {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  color: #1a1200;
  border-color: var(--gold);
}

.keno-cell.drawn-hit {
  background: linear-gradient(160deg, var(--green-bright), var(--green));
  color: #052b12;
  border-color: var(--green);
  animation: hit-pop 0.35s ease;
}

.keno-cell.drawn-miss {
  background: var(--panel-lighter);
  border-color: var(--blue);
  color: #93c5fd;
}

.keno-cell.disabled { cursor: not-allowed; }

@keyframes hit-pop {
  0% { transform: scale(0.7); }
  60% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.paytable {
  font-size: 12px;
}
.paytable-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: var(--text-dim);
}
.paytable-row.hit {
  color: var(--green-bright);
  font-weight: 700;
}
.paytable-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  font-weight: 700;
  margin-bottom: 6px;
}

@media (max-width: 480px) {
  .keno-board { gap: 5px; }
  .keno-cell { font-size: 11px; border-radius: 6px; }
}
