/* Hide scrollbar but keep scroll functionality */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Optional: keep it barely visible on hover for usability */
::-webkit-scrollbar-thumb:hover {
  background: rgba(87, 160, 255, 0.1); /* super subtle blue hint */
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.wave-text span {
  display: inline-block;
  animation: wave 1.6s infinite ease-in-out;
  font-weight: bold;
}

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


.wave-name span {
  display: inline-block;
  animation: wave 1.6s infinite ease-in-out;
}

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Staggered delay to create the wave */
.wave-name span:nth-child(1) { animation-delay: 0s; }
.wave-name span:nth-child(2) { animation-delay: 0.05s; }
.wave-name span:nth-child(3) { animation-delay: 0.1s; }
.wave-name span:nth-child(4) { animation-delay: 0.15s; }
.wave-name span:nth-child(5) { animation-delay: 0.2s; }
.wave-name span:nth-child(6) { animation-delay: 0.25s; }
.wave-name span:nth-child(7) { animation-delay: 0.3s; }
.wave-name span:nth-child(8) { animation-delay: 0.35s; }
.wave-name span:nth-child(9) { animation-delay: 0.4s; }
.wave-name span:nth-child(10) { animation-delay: 0.45s; }
.wave-name span:nth-child(11) { animation-delay: 0.5s; }
.wave-name span:nth-child(12) { animation-delay: 0.55s; }




.wave-name span.gap-fix {
  display: inline-block;
  width: -5px;         /* 🔥 controls space between words */
  animation: none;
}




/* EXISTING STYLES */
.comment-section {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #15151f;
  border-left: 1px solid #2c2c3c;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
  padding: 16px 12px;
  border-radius: 0;
}

.comment-feed {
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 4px;
}

.comment {
  background-color: #1e1e2e;
  border: 1px solid #2a2a3a;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  font-size: 0.9rem;
  word-wrap: break-word;
}

.comment strong {
  color: #57a0ff;
  font-size: 0.85rem;
}

.comment-input input {
  background-color: #1c1c2a;
  border: 1px solid #333;
  color: #e0e0f0;
  border-radius: 8px;
  padding: 6px;
  font-size: 0.85rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
}

.comment-input input,
.comment-input textarea {
  background-color: #1c1c2a;
  border: 1px solid #333;
  color: #e0e0f0;
  border-radius: 15px;
  padding: 6px;
  font-size: 0.85rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.comment-input textarea {
  resize: none;
  height: 50px;
}

.comment-input button {
  background-color: #2c2c55;
  color: white;
  border: none;
  padding: 6px;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
}

.spotify-widget-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.spotify-widget {
  transform: scale(0.5); /* adjust to fit your 200px bar */
  transform-origin: center;
  border-radius: 12px;
  width: 300px;
  height: 140px;
  border: none;
}

.user-logs {
  margin-top: 3rem;
}

.log-terminal {
  background-color: #0a0a14;
  color: #57a0ff;
  padding: 15px;
  font-family: monospace;
  font-size: 0.85rem;
  height: 200px;
  overflow-y: auto;
  border: 1px solid #2c2c3c;
  border-radius: 12px;
  white-space: pre-line;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
