/* ==========================================================================
   HızlıYaz - Kelime Yağmuru (Arcade Modu) Stilleri
   ========================================================================== */

.arcade-wrapper {
  max-width: 940px;
  margin: 1rem auto;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.arcade-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.5rem;
  margin-bottom: 1rem;
}

.hud-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hud-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hud-val {
  font-size: 1.4rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--text-primary);
}

.arcade-hearts {
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.arcade-canvas-box {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #08090e;
}

#arcadeCanvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: crosshair;
}

.arcade-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.arcade-input-preview {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.typed-buffer-txt {
  font-family: var(--font-mono);
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.txt-cyan { color: #06b6d4; }
