/* 万物电台 web fallback v3.5.7 */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #0F0E1A;
  color: #FFFFFF;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  padding: 24px 20px 60px;
}

.player {
  max-width: 560px;
  margin: 0 auto;
}

header {
  margin-top: 24px;
  margin-bottom: 36px;
}

header h1 {
  font-size: 22px;
  color: #FFC58A;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.wave {
  display: inline-block;
  background: linear-gradient(90deg, #FFC58A 0%, #FF8E5A 25%, #FFD9B0 50%, #FF8E5A 75%, #FFC58A 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wave-shimmer 2.4s linear infinite, wave-pulse 1.8s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 197, 138, 0.4);
}

@keyframes wave-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes wave-pulse {
  0%, 100% { letter-spacing: 0.04em; transform: translateY(0); }
  50% { letter-spacing: 0.10em; transform: translateY(-1px); }
}

.tagline {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
}

.label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.now-playing {
  margin-bottom: 28px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 197, 138, 0.15);
  border-radius: 12px;
}

.title {
  margin-top: 8px;
  font-size: 19px;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.35;
}

.chip {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: rgba(255, 197, 138, 0.12);
  color: #FFC58A;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.subtitle {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.progress {
  margin-bottom: 18px;
}

.bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FFC58A, #FF8E5A);
  transition: width 0.4s ease;
}

.progress-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11.5px;
}

audio {
  width: 100%;
  margin-bottom: 28px;
  filter: invert(0.85) hue-rotate(180deg);
}

.next {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  margin-bottom: 24px;
}

.next-hint {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.schedule {
  margin-bottom: 32px;
}

.schedule-list {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.schedule-item {
  display: flex;
  align-items: baseline;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.schedule-item.now {
  background: rgba(255, 197, 138, 0.10);
  border-left: 2px solid #FFC58A;
  color: #FFC58A;
}

.schedule-time {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  width: 56px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
}
.schedule-item.now .schedule-time {
  color: #FFC58A;
}

.schedule-theme {
  flex: 1;
  line-height: 1.5;
}

.footer {
  margin-top: 40px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

.footer a {
  color: #FFC58A;
  text-decoration: none;
}

.footer a:hover { color: #FFD9B0; }
.sep { margin: 0 8px; opacity: 0.5; }

@media (max-width: 480px) {
  body { padding: 16px 14px 40px; }
  header h1 { font-size: 22px; }
  .title { font-size: 17px; }
}
