.g421-status { font-size: 11.5px; color: var(--muted); text-align: center; margin-bottom: 10px; }
.g421-hint { font-size: 10.5px; color: var(--muted); text-align: center; margin: 8px 0; }

.g421-dice-row { display: flex; gap: 12px; justify-content: center; margin: 14px 0; }
.g421-dice-row.small { gap: 6px; margin: 6px 0 14px; }

.g421-die {
  width: 54px; height: 54px; background: var(--panel-2); border: 2px solid var(--border); border-radius: 10px;
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
  padding: 8px; box-sizing: border-box; gap: 2px; transition: transform 0.1s;
}
.g421-dice-row.small .g421-die { width: 34px; height: 34px; padding: 5px; border-radius: 6px; }
.g421-die.held { border-color: var(--magenta); box-shadow: 0 0 8px rgba(255,46,154,0.35); }
.g421-die.locked { cursor: default; }
.g421-pip { border-radius: 50%; background: var(--cyan); align-self: center; justify-self: center; width: 8px; height: 8px; }
.g421-dice-row.small .g421-pip { width: 5px; height: 5px; }
.g421-die.held .g421-pip { background: var(--magenta); }
.g421-pip.empty, .g421-die.held .g421-pip.empty { background: transparent; }

.g421-compare { display: flex; justify-content: space-around; text-align: center; margin-top: 10px; }
.g421-compare-label { font-size: 11px; color: var(--muted); margin-bottom: 4px; }

.g421-grid-title { font-family: "Orbitron", sans-serif; font-size: 11px; color: var(--cyan); margin: 16px 0 6px; text-align: center; }
.g421-grid { border: 1px solid var(--border); font-size: 10.5px; }
.g421-grid-row { display: flex; justify-content: space-between; padding: 4px 8px; border-bottom: 1px solid var(--border); color: var(--muted); }
.g421-grid-row:last-child { border-bottom: none; }
