@font-face {
  font-family: 'Poppins';
  src: url('/static/fonts/Poppins-Black.ttf');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins-Regular';
  src: url('/static/fonts/Poppins-Regular.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  background: #000e16;
}

/* ---------- Prompt Composer ---------- */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

p {
  font-family: 'Poppins-Regular', sans-serif;
  
}
/* ---------- Live Radio ---------- */
.live-radio {
  padding: 140px 60px;
  background: #0d1a22;
}

.radio-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.radio-header h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.radio-header p {
  margin-top: 6px;
  color: #50c4ff;
  font-size: 15px;
  text-align: center;
}


.audio-card {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  overflow: hidden;
}

.audio-thumb {
  position: relative;
  height: 260px;
  background: linear-gradient(135deg, #092132 0%, #1a1040 40%, #0d1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* ---------- Audio Visualizer ---------- */
.audio-visualizer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0 28px;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.has-cover .audio-visualizer {
  opacity: 0;
}

.bar {
  flex: 1;
  max-width: 7px;
  height: 120px;
  border-radius: 4px;
  background: linear-gradient(to top, #007ebf 0%, #6c3fc5 60%, #c471ed 100%);
  box-shadow: 0 0 8px rgba(100, 60, 200, 0.4);
  transform-origin: center;
  transform: scaleY(0.08);
  opacity: 0.35;
  animation: barWave 1.6s ease-in-out infinite alternate;
  animation-play-state: paused;
}

.audio-thumb.playing .bar {
  animation-play-state: running;
  opacity: 1;
  box-shadow: 0 0 14px rgba(100, 60, 200, 0.7);
}

/* Staggered delays — evenly distributed across one full wave cycle */
.bar:nth-child(1)  { animation-delay:  0s;     }
.bar:nth-child(2)  { animation-delay: -0.08s;  }
.bar:nth-child(3)  { animation-delay: -0.16s;  }
.bar:nth-child(4)  { animation-delay: -0.24s;  }
.bar:nth-child(5)  { animation-delay: -0.32s;  }
.bar:nth-child(6)  { animation-delay: -0.40s;  }
.bar:nth-child(7)  { animation-delay: -0.48s;  }
.bar:nth-child(8)  { animation-delay: -0.56s;  }
.bar:nth-child(9)  { animation-delay: -0.64s;  }
.bar:nth-child(10) { animation-delay: -0.72s;  }
.bar:nth-child(11) { animation-delay: -0.80s;  }
.bar:nth-child(12) { animation-delay: -0.88s;  }
.bar:nth-child(13) { animation-delay: -0.96s;  }
.bar:nth-child(14) { animation-delay: -1.04s;  }
.bar:nth-child(15) { animation-delay: -1.12s;  }
.bar:nth-child(16) { animation-delay: -1.20s;  }
.bar:nth-child(17) { animation-delay: -1.28s;  }
.bar:nth-child(18) { animation-delay: -1.36s;  }
.bar:nth-child(19) { animation-delay: -1.44s;  }
.bar:nth-child(20) { animation-delay: -1.52s;  }

@keyframes barWave {
  0%   { transform: scaleY(0.08); }
  100% { transform: scaleY(1);    }
}

/* ---------- LIVE Badge ---------- */
.audio-meta {
  position: relative;
}

.live-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e74c3c;
  flex-shrink: 0;
  animation: livePulse 1.4s ease-in-out infinite;
}

.live-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #e74c3c;
  letter-spacing: 1.5px;
}

@keyframes livePulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 0 0   rgba(231, 76, 60, 0.7); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 6px rgba(231, 76, 60, 0);   }
}

.play-btn {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: none;
  font-size: 32px;
  color: #000;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.audio-meta {
  padding: 16px 18px;
  text-align: center;
  background: #000e16
}

.audio-meta h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* ---------- Now Playing Title ---------- */
#nowPlaying {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  letter-spacing: 0.3px;
  line-height: 1.25;
  transition: color 0.4s ease;
  color: #fff;
}

/* Dynamic (user-created) song — gradient accent */
#nowPlaying.source-dynamic {
  background: linear-gradient(90deg, #50c4ff 0%, #c471ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(80, 196, 255, 0.35));
}

/* ---------- Queue Count ---------- */
.queue-count-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.queue-count-label {
  font-family: 'Poppins-Regular', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.queue-count-value {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #50c4ff;
  background: rgba(80, 196, 255, 0.1);
  border: 1px solid rgba(80, 196, 255, 0.25);
  border-radius: 999px;
  padding: 1px 10px;
  min-width: 20px;
  text-align: center;
}

/* Static / curated track — subdued, distinct from user songs */
#nowPlaying.source-static {
  font-family: 'Poppins-Regular', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.prompt-section {
    max-width: 700px;
    margin-bottom: 30px;
}

.prompt-label {
    font-weight: bold;
    margin: 18px;
    display: block;
}

.prompt-textarea {
    width: 100%;
    min-height: 120px;
    resize: vertical;
    padding: 14px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
    line-height: 1.4;
    box-sizing: border-box;
}

.prompt-textarea:focus {
    border-color: #3498db;
}


/* ---------- Request Button ---------- */
.request-btn {
  font-family: 'Poppins-Regular', sans-serif;
  margin-top: 24px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #007ebf;
  color: #fff;
}

.request-btn:hover {
  opacity: 0.9;
}

/* ---------- How It Works ---------- */
.how-it-works {
  width: 100%;
  margin-bottom: 36px;
}

.how-heading {
  color: #50c4ff;
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.how-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.how-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(80, 196, 255, 0.35);
  color: #50c4ff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.how-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.how-title {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.how-desc {
  font-family: 'Poppins-Regular', sans-serif;
  color: #7a9bb0;
  font-size: 13px;
  line-height: 1.5;
}

/* ---------- Modal ---------- */
.request-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;

  /* NEW */
  padding: 16px;
}

.request-modal.active {
  display: flex;
}

/* ---------- Prompt Box ---------- */
.request-box {
  width: 640px;
  max-width: calc(100% - 40px);
  background: linear-gradient(180deg, #1e2428, #1a1f23);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  box-sizing: border-box;
  box-sizing: border-box;
}

/* ---------- Prompt Input ---------- */
.request-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #eaeaea;
  font-size: 16px;
}

.request-input::placeholder {
  color: #8a8f94;
}

/* ---------- Generate Button ---------- */
.generate-btn {
  font-family: 'Poppins-Regular', sans-serif;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.generate-btn:hover {
  background: rgba(255,255,255,0.14);
}


/* ---------- Modal Layout Wrapper ---------- */
.request-box-wrapper {
    position: relative;
    background: #000000;
    padding: 18px;
    border-radius: 20px;
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    overflow-x: hidden;
}


.modal-close-btn {
  position: sticky;
  top: 0;
  align-self: flex-end;

  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;

  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: auto;
  margin-bottom: 6px;
}

.modal-close-btn:hover {
  background: rgba(255,255,255,0.16);
}

.submit-btn {
  font-family: 'Poppins-Regular', sans-serif;
  margin-top: 24px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #007ebf;
  color: #fff;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  opacity: 0.9;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.submit-btn.loading {
  background-color: #aaa;
}

.submit-btn.success {
  background-color: #2ecc71;
  color: white;
  font-weight: bold;
}

.error {
  color: #e74c3c;
  font-size: 0.9rem;
}


@media (max-width: 480px) {
  .request-box {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
  }

  .request-input {
    width: 100%;
    font-size: 15px;
  }

  .lyrics-btn {
    width: 100%;
    text-align: center;
  }

  .lyrics-input {
    font-size: 15px;
  }

  .submit-btn {
    width: 100%;
  }
}
/* ---------- Status Timeline ---------- */
.status-timeline {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Individual status item */
.status-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgb(28 34 38);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 18px;
    animation: fadeInUp 0.35s ease;
}

/* Completed state */
.status-item.completed {
  opacity: 0.65;
}


.status-item.failed .status-text {
  color: #d32f2f;
}

.error-mark {
  color: #d32f2f;
  font-weight: bold;
  font-size: 16px;
}

/* Status icon */
.status-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Spinner */
.spinner {
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
}

/* Checkmark */
.checkmark {
  color: #2ecc71;
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
}

/* Text */
.status-text {
  line-height: 1.4;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ---------- Post Submit Actions ---------- */
.post-submit-actions {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.post-submit-actions.hidden {
  display: none;
}

.secondary-btn {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  border: none;
  background: #2ecc71;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.secondary-btn:hover {
  opacity: 0.9;
}

.ghost-btn {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.ghost-btn:hover {
  background: rgba(255,255,255,0.08);
}


/* ---------- Lyrics Button ---------- */
.lyrics-btn {
  font-family: 'Poppins-Regular', sans-serif;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.15s ease,
    border-color 0.25s ease;
}

.lyrics-btn:hover {
  background: rgba(255,255,255,0.14);
}


.lyrics-btn.active {
  background: linear-gradient(
    135deg,
    rgba(0,126,191,0.35),
    rgba(0,126,191,0.15)
  );
  border-color: rgba(0,126,191,0.8);

  box-shadow:
    0 0 0 2px rgba(0,126,191,0.35),
    0 8px 24px rgba(0,126,191,0.35);

  transform: translateY(-1px);
}

/* ---------- Turnstile Widget ---------- */
.cf-turnstile {
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.85;
}

/* ---------- Input Labels ---------- */
.input-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
  margin-top: 16px;
}

.lyrics-label {
  display: none;
}

.request-box-wrapper.show-lyrics .lyrics-label {
  display: block;
}

/* ---------- Lyrics Input ---------- */
.lyrics-input {
  margin-top: 10px;
  width: 94%;
  min-height: 120px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1e2428, #1a1f23);
  border: 1px solid rgba(255,255,255,0.12);
  color: #eaeaea;
  font-size: 15px;
  resize: vertical;
  display: none;
  width: 640px;
  max-width: 100%;
  box-sizing: border-box;
}

.lyrics-input::placeholder {
  color: #8a8f94;
}

/* ---------- Visible State ---------- */
.request-box-wrapper.show-lyrics .lyrics-input {
  display: block;
}






/* ---------- Responsive Medias ---------- */
@media (max-width: 640px) {
  .request-modal {
    align-items: flex-start;
  }

  .request-box-wrapper {
    margin-top: 20px;
    border-radius: 16px;
  }
}



@media (max-width: 480px) {
  .post-submit-actions {
    flex-direction: column;
  }

  .secondary-btn,
  .ghost-btn {
    width: 100%;
  }
}

/* ---------- Queue Status Styles ---------- */
.queue-status {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
}

/* Empty State */
.queue-empty {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0, 126, 191, 0.1) 0%, rgba(0, 126, 191, 0.05) 100%);
  border: 1px solid rgba(0, 126, 191, 0.2);
  border-radius: 16px;
}

.queue-empty-icon {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.queue-empty-text {
  flex: 1;
}

.queue-empty-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px 0;
}

.queue-empty-subtitle {
  font-family: 'Poppins-Regular', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Active Queue State */
.queue-active {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0, 126, 191, 0.15) 0%, rgba(0, 126, 191, 0.08) 100%);
  border: 1px solid rgba(0, 126, 191, 0.3);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.queue-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #007ebf 0%, rgba(0, 126, 191, 0.3) 100%);
}

.queue-position-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #007ebf 0%, #005a8a 100%);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 126, 191, 0.3);
}

.queue-number {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.queue-info {
  flex: 1;
}

.queue-info-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px 0;
}

.queue-info-detail {
  font-family: 'Poppins-Regular', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px 0;
}

.queue-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(0, 126, 191, 0.2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.queue-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #007ebf 0%, #00a8ff 100%);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(0, 126, 191, 0.6);
}

/* Now Playing State */
.queue-now-playing {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.18) 0%, rgba(46, 204, 113, 0.06) 100%);
  border: 1px solid rgba(46, 204, 113, 0.5);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  animation: nowPlayingGlow 2.5s ease-in-out infinite;
}

.queue-now-playing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2ecc71 0%, #27ae60 50%, rgba(46, 204, 113, 0.2) 100%);
}

.queue-now-playing-icon {
  font-size: 40px;
  flex-shrink: 0;
  animation: musicBounce 0.5s ease-in-out infinite alternate;
}

.queue-now-playing-text {
  flex: 1;
}

.queue-now-playing-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2ecc71;
  margin: 0 0 4px 0;
}

.queue-now-playing-subtitle {
  font-family: 'Poppins-Regular', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@keyframes nowPlayingGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
  50% { box-shadow: 0 0 24px 4px rgba(46, 204, 113, 0.18); }
}

@keyframes musicBounce {
  from { transform: scale(1) rotate(-8deg); }
  to   { transform: scale(1.2) rotate(8deg); }
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {

  /* Page */
  .live-radio {
    padding: 48px 16px 32px;
  }

  .radio-header h1 {
    font-size: 24px;
  }

  .radio-header p {
    font-size: 13px;
    margin-top: 4px;
  }

  /* --- Horizontal mini-player card --- */
  .audio-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 16px;
  }

  .audio-thumb {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 0;
  }

  .audio-visualizer {
    padding: 0 8px;
    gap: 2px;
  }

  .play-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .audio-meta {
    flex: 1;
    text-align: left;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .audio-meta h1 {
    font-size: 15px;
    margin: 0;
  }

  /* Live badge: pull out of absolute so it flows in the flex column */
  .live-badge {
    position: static;
    justify-content: flex-start;
    margin-bottom: 2px;
  }

  .live-label {
    font-size: 10px;
  }

  .live-dot {
    width: 7px;
    height: 7px;
  }

  #nowPlaying {
    font-size: 13px;
    margin-top: 2px;
  }

  .queue-count-row {
    margin-top: 6px;
    justify-content: flex-start;
  }

  .queue-count-label {
    font-size: 10px;
  }

  .queue-count-value {
    font-size: 10px;
    padding: 1px 8px;
  }

  /* Request button */
  .request-btn {
    width: 100%;
    margin-top: 14px;
    padding: 14px;
    font-size: 15px;
    border-radius: 12px;
    text-align: center;
  }

  /* Queue status */
  .queue-status {
    margin-top: 12px;
  }

  .queue-empty,
  .queue-active,
  .queue-now-playing {
    padding: 14px 16px;
    gap: 12px;
    border-radius: 12px;
  }

  .queue-empty-icon {
    font-size: 24px;
  }

  .queue-empty-title {
    font-size: 13px;
  }

  .queue-empty-subtitle {
    font-size: 12px;
  }

  .queue-position-badge {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .queue-number {
    font-size: 18px;
  }

  .queue-info-title {
    font-size: 13px;
  }

  .queue-info-detail {
    font-size: 12px;
    margin-bottom: 0;
  }

  .queue-now-playing-icon {
    font-size: 28px;
  }

  .queue-now-playing-title {
    font-size: 14px;
  }

  .queue-now-playing-subtitle {
    font-size: 12px;
  }

  /* --- Bottom sheet modal --- */
  .request-modal {
    align-items: flex-end;
    padding: 0;
  }

  .request-box-wrapper {
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 88dvh;
    margin: 0;
    padding: 8px 16px 32px;
  }

  /* Drag handle indicator */
  .request-box-wrapper::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    margin: 8px auto 16px;
  }

  .modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    margin: 0;
  }

  .request-box {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    padding: 14px;
  }

  /* Fix iOS auto-zoom on input focus (requires font-size >= 16px) */
  .request-input,
  .lyrics-input {
    font-size: 16px;
  }

  .lyrics-input {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  .submit-btn {
    width: 100%;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
  }

  .ghost-btn,
  .secondary-btn {
    border-radius: 12px;
  }

  .post-submit-actions {
    flex-direction: column;
  }
}
