/* Common Arcade Overlays & Keyboard Instructions */
.instructions {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  color: #e2e8f0;
}
.wrap-light .instructions { 
  background: rgba(0,0,0,0.04); 
  border-color: rgba(0,0,0,0.1); 
  color: #334155;
}
kbd {
  background: rgba(0,0,0,0.4); 
  border: 1px solid rgba(255,255,255,0.25);
  border-bottom-width: 3px; 
  border-radius: 6px; 
  padding: 4px 8px;
  font-family: 'JetBrains Mono', monospace; 
  font-size: 14px;
  color: #fff;
  margin: 0 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.wrap-light kbd {
  background: #f8fafc; 
  border: 1px solid rgba(0,0,0,0.2);
  border-bottom-width: 3px; 
  color: #0f172a;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.mobile-hint {
  font-size: 12px;
  color: #8892b0;
  margin-top: 4px;
}
.wrap-light .mobile-hint {
  color: #64748b;
}
