/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
}

html,
body {
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: "Inter", sans-serif;
}

/* Header */
.sr-header {
  position: fixed;
  top: 0.75rem;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.sr-header .logo {
  pointer-events: auto;
}

/* Mood Bars — FINAL VERSION */
#mood-bars {
  display: flex;
  gap: 6px;
  padding: 18px;
  margin-top: 60px;
}

#mood-bars .bar {
  flex: 1;
  height: 140px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

#mood-bars .bar:hover {
  transform: translateY(-2px);
}

/* Banner */
#np-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 18px;
  backdrop-filter: blur(6px);
  z-index: 999;
}

/* Play Button */
#playPauseBtn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1000;
}
