/* BLINDTEST INGAME MODERN - Animations & Styles */
.ingame-panel {
  max-width: 480px;
  margin: 32px auto;
  background: rgba(30,30,40,0.85);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInGlass 0.7s cubic-bezier(.4,0,.2,1);
}
.ingame-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.timer {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 18px #1DB954, 0 0 32px #23234a;
  letter-spacing: 2px;
  transition: color 0.3s, text-shadow 0.3s;
}
.neon-glow {
  animation: neonPulse 1.2s infinite alternate;
}
@keyframes neonPulse {
  from { text-shadow: 0 0 18px #1DB954, 0 0 32px #23234a; }
  to { text-shadow: 0 0 32px #1DB954, 0 0 48px #23234a; }
}
.progress-bar-outer {
  width: 100%;
  height: 18px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(29,185,84,0.12);
}
.progress-bar-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1DB954 0%, #ff6b6b 100%);
  border-radius: 12px;
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
}
.ingame-main {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.song-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 14px;
  border: none;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 1.1rem;
  outline: none;
  box-shadow: 0 2px 8px rgba(29,185,84,0.08);
  transition: background 0.2s;
}
.song-input:focus {
  background: rgba(255,255,255,0.18);
}
.round-btn {
  background: #1DB954;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(29,185,84,0.18);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.round-btn:active {
  background: #17a74a;
  transform: scale(0.95);
}
.ingame-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.score-block, .bonus-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.score-label, .bonus-label {
  font-size: 1rem;
  color: #b3b3b3;
  font-weight: 500;
}
.score-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1DB954;
  text-shadow: 0 0 12px #1DB954;
  transition: color 0.3s, text-shadow 0.3s;
}
.bonus-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff6b6b;
  text-shadow: 0 0 8px #ff6b6b;
}
@media (max-width: 600px) {
  .ingame-panel {
    padding: 18px 6px;
    max-width: 98vw;
  }
  .timer {
    font-size: 2.1rem;
  }
  .score-value, .bonus-value {
    font-size: 1.1rem;
  }
}
