/* ========================================
   CARDS
======================================== */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: visible;
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--rounded) + 1px);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(61,224,255,0.06), rgba(255,107,203,0.05), rgba(255,209,102,0.04));
  filter: blur(12px);
  z-index: -1;
  opacity: 0.9;
}

/* Stage Card */
.stage { 
  width: 100%; 
  padding: 20px 28px; 
  display: flex; 
  flex-direction: column; 
  gap: 14px; 
}

.stage-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 12px; 
}

.brand { 
  display: flex; 
  gap: 12px; 
  align-items: center; 
}

.brand-img { 
  width: 56px; 
  height: 56px; 
  border-radius: 12px; 
  object-fit: cover; 
  box-shadow: 0 6px 18px rgba(61,224,255,0.06), inset 0 -4px 8px rgba(0,0,0,0.25); 
}

/* HUD Display */
.hud { 
  display: flex; 
  gap: 12px; 
  align-items: center; 
}

.hud-item { 
  display: flex; 
  gap: 8px; 
  align-items: center; 
}

.coin-icon { 
  width: 46px; 
  height: 46px; 
  filter: drop-shadow(0 6px 12px rgba(255,209,102,0.12)); 
}

.big-num { 
  font-weight: 900; 
  font-size: 22px; 
  color: var(--accent1); 
  text-shadow: 0 6px 22px rgba(255,209,102,0.06); 
}

.combo-box { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 6px; 
}

.combo-num { 
  font-weight: 900; 
  font-size: 18px; 
  padding: 6px 10px; 
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: 0 8px 20px rgba(61,224,255,0.06);
  color: var(--accent-blu);
}

.multiplier { 
  font-weight: 800; 
  color: var(--accent1); 
  font-size: 14px; 
  margin-top: 4px; 
}

.hud-controls {
  display: flex;
  gap: 8px;
}

/* Controls Hint */
.controls {
  text-align: center;
}

.hint {
  color: var(--muted);
  font-size: 14px;
}