.game-area {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  align-items: center;
}

.order-strip {
  font-size: 12px;
  color: #555;
  text-align: center;
}

.symbols-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.symbol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
}
.symbol .icon { font-size: 20px; }
.symbol .motif { width: 30px; height: 30px; }
.symbol .check {
  position: absolute;
  top: -4px; right: 6px;
  font-size: 11px;
  color: #1a7a1a;
  display: none;
}
.symbol.discovered .check { display: block; }

.digit-readout {
  width: 60px;
  height: 100px;
}
.seven-seg { width: 100%; height: 100%; }
.seven-seg .seg {
  fill: #ddd;
  transition: fill 0.15s ease;
}
.seven-seg .seg.on {
  fill: #111;
}

.grid {
  position: relative;
  width: 260px;
  height: 260px;
}

.node {
  position: absolute;
  width: 46px;
  height: 46px;
  margin-left: -23px;
  margin-top: -23px;
  border-radius: 50%;
  border: 2px solid #333;
  background: #fafafa;
  touch-action: none;
  user-select: none;
  cursor: pointer;
}
.node.pressed {
  background: #333;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.12);
}
.node .label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #999;
  pointer-events: none;
}
