/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 24px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.hero-bg-image.loaded {
  opacity: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(18, 18, 20, 0.55) 0%, rgba(18, 18, 20, 0.70) 40%, rgba(18, 18, 20, 0.88) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(200, 120, 128, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(200, 120, 128, 0.06) 0%, transparent 50%);
  animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200, 120, 128, 0.3);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.hero-title-accent {
  color: var(--accent);
}

.hero-description {
  font-size: 0.95rem;
  color: var(--text-s);
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-t);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ===== NOW PLAYING ===== */
.now-playing-section {
  background: var(--bg-s);
}

.now-playing-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--bg-e);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.np-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.np-disc {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-e) 100%);
  border: 2px solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.global-player.playing~.page-content .np-disc {
  animation: spin 4s linear infinite;
}

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

.np-disc-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.np-disc-ring {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.np-disc-ring:nth-child(1) {
  width: 80%;
  height: 80%;
}

.np-disc-ring:nth-child(2) {
  width: 55%;
  height: 55%;
}

.np-disc-ring:nth-child(3) {
  width: 30%;
  height: 30%;
}

.np-disc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.np-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
}

.wave-bar {
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
  animation: wave 1.2s ease-in-out infinite alternate;
  opacity: 0.5;
}

.global-player.playing~.page-content .wave-bar {
  opacity: 1;
}

.wave-bar:nth-child(1) {
  height: 8px;
  animation-delay: 0s;
}

.wave-bar:nth-child(2) {
  height: 16px;
  animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
  height: 24px;
  animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
  height: 12px;
  animation-delay: 0.3s;
}

.wave-bar:nth-child(5) {
  height: 28px;
  animation-delay: 0.15s;
}

.wave-bar:nth-child(6) {
  height: 20px;
  animation-delay: 0.25s;
}

.wave-bar:nth-child(7) {
  height: 10px;
  animation-delay: 0.35s;
}

.wave-bar:nth-child(8) {
  height: 22px;
  animation-delay: 0.05s;
}

.wave-bar:nth-child(9) {
  height: 14px;
  animation-delay: 0.2s;
}

.wave-bar:nth-child(10) {
  height: 26px;
  animation-delay: 0.3s;
}

.wave-bar:nth-child(11) {
  height: 18px;
  animation-delay: 0.1s;
}

.wave-bar:nth-child(12) {
  height: 8px;
  animation-delay: 0.25s;
}

@keyframes wave {
  0% {
    transform: scaleY(0.4);
  }

  100% {
    transform: scaleY(1);
  }
}

.np-info {
  flex: 1;
}

.np-live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.np-show-name {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.np-description {
  color: var(--text-s);
  margin-bottom: 24px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ===== SHOWS ===== */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shows-grid-home {
  max-width: 960px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.show-card {
  background: var(--bg-s);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.show-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 120, 128, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--accent-glow2);
}

.show-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.show-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.show-card:hover .show-card-image img {
  transform: scale(1.05);
}

.show-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.show-card:hover .show-card-overlay {
  opacity: 1;
}

.show-time {
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 500;
}

.show-genre-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(200, 120, 128, 0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
}

.show-card-info {
  padding: 20px;
}

.show-card-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.show-card-host {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.show-card-desc {
  font-size: 0.8rem;
  color: var(--text-s);
  line-height: 1.6;
}

/* ===== LISTEN PAGE (MODERN SPLIT) ===== */
.listen-page-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 40px 40px;
}

.listen-modern-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
  overflow: hidden;
}

.lm-gradient-1, .lm-gradient-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatBg 20s infinite alternate ease-in-out;
}

.lm-gradient-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(226, 85, 85, 0.15) 0%, transparent 70%);
  top: -20%;
  left: -10%;
}

.lm-gradient-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 120, 128, 0.1) 0%, transparent 70%);
  bottom: -10%;
  right: 10%;
  animation-delay: -10s;
}

@keyframes floatBg {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, 50px) scale(1.2); }
}

.listen-modern-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  gap: 80px;
}

.listen-modern-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.lm-disc-wrapper {
  position: relative;
  width: 480px;
  height: 480px;
}

.lm-glow {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 120, 128, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  z-index: 0;
}

.lm-disc.spinning ~ .lm-glow {
  opacity: 1;
  transform: scale(1.1);
  animation: lmPulse 3s ease-in-out infinite alternate;
}

@keyframes lmPulse {
  to { transform: scale(1.2); opacity: 0.7; }
}

.lm-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #18181b 0%, #09090b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 2px 20px rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lm-disc.spinning {
  animation: spin 5s linear infinite;
}

.lm-disc::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.lm-disc::after {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.lm-disc-inner {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
  position: relative;
  z-index: 2;
}

.lm-disc-inner::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--bg-e);
  border-radius: 50%;
  border: 4px solid var(--accent);
  z-index: 3;
}

.lm-disc-logo {
  width: 100px;
  height: auto;
  opacity: 0.8;
}

.lm-waveform {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  z-index: 2;
}

.lm-bar {
  width: 6px;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.lm-disc.spinning ~ .lm-waveform .lm-bar {
  opacity: 0.7;
  animation: lmWave 1.2s ease-in-out infinite alternate;
}

.lm-bar:nth-child(1) { height: 12px; animation-delay: 0.1s; }
.lm-bar:nth-child(2) { height: 24px; animation-delay: 0.3s; }
.lm-bar:nth-child(3) { height: 36px; animation-delay: 0.0s; }
.lm-bar:nth-child(4) { height: 18px; animation-delay: 0.2s; }
.lm-bar:nth-child(5) { height: 40px; animation-delay: 0.4s; }
.lm-bar:nth-child(6) { height: 28px; animation-delay: 0.15s; }
.lm-bar:nth-child(7) { height: 20px; animation-delay: 0.35s; }
.lm-bar:nth-child(8) { height: 32px; animation-delay: 0.05s; }
.lm-bar:nth-child(9) { height: 16px; animation-delay: 0.25s; }

@keyframes lmWave {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.listen-modern-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.listen-modern-header {
  margin-bottom: 48px;
}

.lm-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: rgba(226, 85, 85, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  border: 1px solid rgba(226, 85, 85, 0.2);
}

.lm-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(226, 85, 85, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(226, 85, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 85, 85, 0); }
}

.lm-title {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.lm-title-accent {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  background: linear-gradient(to right, var(--accent), #f19292);
  -webkit-background-clip: text;
  background-clip: text;
}

.lm-subtitle {
  font-size: 1rem;
  color: var(--text-s);
  line-height: 1.75;
  letter-spacing: 0.04em;
  max-width: 480px;
}

.lm-player-controls {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-l);
  padding: 40px;
  margin-bottom: 40px;
}

.lm-status {
  font-size: 0.85rem;
  color: var(--text-t);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
}

.lm-play-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.lm-play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 40px rgba(226, 85, 85, 0.4);
}

.lm-play-btn:hover {
  transform: scale(1.08) translateY(-4px);
  background: var(--accent-l);
  box-shadow: 0 15px 50px rgba(226, 85, 85, 0.6);
}

.lm-icon-play, .lm-icon-pause {
  width: 36px;
  height: 36px;
}

.lm-volume {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-s);
  flex: 1;
}

.lm-volume-slider {
  width: 100%;
  max-width: 200px;
}

.lm-details {
  display: flex;
  gap: 48px;
  padding-left: 12px;
}

.lm-detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lmd-label {
  font-size: 0.75rem;
  color: var(--text-t);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.lmd-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

/* ===== MOBILE OVERRIDES FOR MODERN LISTEN ===== */
@media (max-width: 1024px) {
  .listen-modern-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .lm-waveform { display: none; }
  .listen-modern-content { align-items: center; }
  .lm-details { justify-content: center; padding-left: 0; flex-wrap: wrap; }
  .lm-play-row { flex-direction: column; gap: 32px; }
  .lm-volume { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  .lm-disc-wrapper { width: 280px; height: 280px; }
  .lm-disc-inner { width: 100px; height: 100px; }
  .lm-disc-logo { width: 60px; }
  .lm-title { font-size: 3.5rem; }
  .lm-player-controls { padding: 32px 24px; width: 100%; }
}

/* ===== SCHEDULE ===== */
.schedule-page {
  padding-top: 0;
  padding-bottom: 100px;
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.schedule-tab {
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-s);
  border-radius: var(--radius-s);
  transition: var(--transition);
  letter-spacing: 0.04em;
}

.schedule-tab:hover {
  color: var(--text);
}

.schedule-tab.active {
  background: var(--accent);
  color: #fff;
}

.schedule-day {
  display: none;
}

.schedule-day.active {
  display: block;
}

.schedule-slot {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.schedule-slot:hover {
  background: var(--bg-s);
}

.schedule-slot:last-child {
  border-bottom: none;
}

.slot-time {
  width: 180px;
  font-size: 0.8rem;
  color: var(--text-s);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.slot-info {
  flex: 1;
}

.slot-show {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.slot-host {
  font-size: 0.8rem;
  color: var(--accent);
}

.slot-genre {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-t);
  background: var(--bg-e);
  padding: 4px 12px;
  border-radius: 50px;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact-page {
  padding-top: 0;
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-s);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-s);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder {
  color: var(--text-t);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  margin-top: 16px;
  font-size: 0.85rem;
  text-align: center;
}

.form-feedback.success {
  color: #6fcf97;
}

.form-feedback.error {
  color: #eb5757;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-s);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-info-icon {
  color: var(--accent);
  margin-bottom: 12px;
}

.contact-info-card h3 {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.contact-link {
  color: var(--accent);
  font-size: 0.85rem;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--accent-l);
}

.contact-detail {
  font-size: 0.85rem;
  color: var(--text-s);
}

.contact-social {
  background: var(--bg-s);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-social h3 {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

/* ===== YOUTUBE ===== */
.youtube-section {
  background: var(--bg-s);
  overflow: hidden;
}

.youtube-subtitle {
  color: var(--text-s);
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Split Layout: Featured (left) + Grid (right) */
.yt-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* === Featured / Latest Video (Left Column) === */
.yt-featured-col {
  position: sticky;
  top: 100px;
}

.yt-featured-card {
  background: var(--bg-e);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.yt-featured-card:hover {
  border-color: rgba(255, 0, 0, 0.25);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.45), 0 0 48px rgba(255, 0, 0, 0.06);
  transform: translateY(-4px);
}

.yt-featured-thumb-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #111;
}

.yt-featured-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0.85;
}

.yt-featured-card:hover .yt-featured-thumb {
  transform: scale(1.04);
  opacity: 1;
}

.yt-featured-play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.yt-featured-card:hover .yt-featured-play-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.3) 100%);
}

.yt-featured-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255, 0, 0, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
}

.yt-featured-play-btn svg {
  width: 28px;
  height: 28px;
  color: #fff;
  margin-left: 3px;
}

.yt-featured-card:hover .yt-featured-play-btn {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(255, 0, 0, 0.45);
}

.yt-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 0, 0, 0.85);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.yt-featured-meta {
  padding: 20px 24px;
}

.yt-featured-title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  line-height: 1.3;
}

.yt-featured-desc {
  color: var(--text-s);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* === Right Column: Grid + Subscribe === */
.yt-grid-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Mini Grid: 3 columns */
.yt-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Mini Cards */
.yt-mini-card {
  background: var(--bg-e);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.yt-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 0, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 16px rgba(255, 0, 0, 0.04);
}

.yt-mini-thumb-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #111;
}

.yt-mini-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.yt-mini-card:hover .yt-mini-thumb {
  transform: scale(1.08);
  opacity: 1;
}

.yt-mini-play {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.yt-mini-card:hover .yt-mini-play {
  opacity: 1;
}

.yt-mini-play svg {
  width: 28px;
  height: 28px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.yt-mini-title {
  display: block;
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-s);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.yt-mini-card:hover .yt-mini-title {
  color: var(--text);
}

/* === Subscribe Bar (under grid) === */
.yt-subscribe-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.06) 0%, rgba(200, 120, 128, 0.04) 100%);
  border: 1px solid rgba(255, 0, 0, 0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  gap: 16px;
  transition: var(--transition);
}

.yt-subscribe-bar:hover {
  border-color: rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.05);
}

.yt-subscribe-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.yt-subscribe-bar-icon {
  color: #ff0000;
  flex-shrink: 0;
  opacity: 0.85;
}

.yt-subscribe-bar-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.yt-subscribe-bar-name {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.yt-subscribe-bar-tagline {
  font-size: 0.72rem;
  color: var(--text-s);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-yt-subscribe-compact {
  flex-shrink: 0;
  padding: 10px 24px;
  background: #ff0000;
  color: #fff;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.02em;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.15);
  white-space: nowrap;
}

.btn-yt-subscribe-compact:hover {
  background: #e60000;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 0, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive: Split Layout */
@media (max-width: 1024px) {
  .yt-split-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .yt-featured-col {
    position: static;
  }
  .yt-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .yt-mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .yt-featured-play-btn {
    width: 56px;
    height: 56px;
  }
  .yt-featured-play-btn svg {
    width: 22px;
    height: 22px;
  }
  .yt-featured-meta {
    padding: 16px 18px;
  }
  .yt-featured-title {
    font-size: 1.15rem;
  }
  .yt-subscribe-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }
  .yt-subscribe-bar-left {
    flex-direction: column;
    gap: 8px;
  }
  .yt-subscribe-bar-text {
    align-items: center;
  }
}

/* Keep old styles for backward compatibility */
.yt-card.yt-modal-trigger {
  cursor: pointer;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding: 24px;
  z-index: 1;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-modal.active .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  padding: 0;
}

.video-modal-close:hover {
  opacity: 1;
}

.video-modal-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .video-modal-content {
    padding: 16px;
  }
  .video-modal-close {
    top: -36px;
    right: 16px;
  }
}

/* ===== ABOUT ===== */
.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  color: var(--text-s);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 1rem;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-s);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== ABOUT PAGE ===== */
.about-page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  text-align: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.about-hero-gradient-1,
.about-hero-gradient-2,
.about-hero-gradient-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
}

.about-hero-gradient-1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(200, 120, 128, 0.25) 0%, transparent 70%);
  top: -30%;
  left: -15%;
  animation: aboutFloat1 18s ease-in-out infinite alternate;
}

.about-hero-gradient-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 85, 85, 0.15) 0%, transparent 70%);
  bottom: -20%;
  right: -10%;
  animation: aboutFloat2 22s ease-in-out infinite alternate;
}

.about-hero-gradient-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(180, 90, 100, 0.12) 0%, transparent 70%);
  top: 20%;
  right: 25%;
  animation: aboutFloat3 15s ease-in-out infinite alternate;
}

@keyframes aboutFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 60px) scale(1.15); }
}

@keyframes aboutFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, -40px) scale(1.1); }
}

@keyframes aboutFloat3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.2); }
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.about-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.about-hero-line {
  display: block;
}

.about-hero-accent {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  background: linear-gradient(to right, var(--accent), #f19292);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-hero-desc {
  font-size: 1.15rem;
  color: var(--text-s);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Founder Section */
.about-founder-section {
  background: var(--bg-s);
  overflow: hidden;
}

.about-founder-layout {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

/* -- Single Portrait with Orbit -- */
.about-founder-portrait {
  position: relative;
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-portrait-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 120, 128, 0.3) 0%, transparent 65%);
  z-index: 0;
  animation: portraitGlow 5s ease-in-out infinite alternate;
}

@keyframes portraitGlow {
  0%   { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(1.12); opacity: 0.7; }
}

.about-portrait-circle {
  position: relative;
  z-index: 3;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(200, 120, 128, 0.45);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(200, 120, 128, 0.12),
    inset 0 0 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.6s ease,
              box-shadow 0.6s ease;
}

.about-portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%) brightness(0.97);
  transition: filter 0.6s ease;
}

.about-founder-portrait:hover .about-portrait-circle {
  transform: scale(1.04);
  border-color: rgba(200, 120, 128, 0.75);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(200, 120, 128, 0.2);
}

.about-founder-portrait:hover .about-portrait-circle img {
  filter: grayscale(0%) brightness(1.05);
}

/* ─── Orbit Rings ─── */
.about-orbit-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(200, 120, 128, 0.12);
  z-index: 2;
  animation: orbitSpin 12s linear infinite;
}

.about-orbit-ring-2 {
  inset: -28px;
  border-color: rgba(200, 120, 128, 0.07);
  animation: orbitSpin 20s linear infinite reverse;
}

/* Glowing dot on the orbit */
.about-orbit-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, #c87880);
  box-shadow: 0 0 12px rgba(200, 120, 128, 0.8), 0 0 28px rgba(200, 120, 128, 0.4);
  animation: dotPulse 2.5s ease-in-out infinite alternate;
}

.about-orbit-ring-2 .about-orbit-dot {
  width: 6px;
  height: 6px;
  top: -3px;
  background: rgba(241, 146, 146, 0.9);
  box-shadow: 0 0 10px rgba(241, 146, 146, 0.7), 0 0 22px rgba(241, 146, 146, 0.3);
  animation-duration: 3.5s;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes dotPulse {
  0%   { opacity: 0.6; transform: translateX(-50%) scale(0.85); }
  100% { opacity: 1;   transform: translateX(-50%) scale(1.2); }
}

.about-founder-info {
  flex: 1;
}

.about-founder-name {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 28px;
}

.about-founder-bio {
  font-size: 1.05rem;
  color: var(--text-s);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-founder-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--accent);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.about-founder-signature svg {
  opacity: 0.7;
  animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.15); }
  28% { transform: scale(1); }
  42% { transform: scale(1.15); }
  70% { transform: scale(1); }
}

/* What We Do — Features Grid */
.about-what-section {
  overflow: hidden;
}

.about-what-subtitle {
  color: var(--text-s);
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.6;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.about-feature-card {
  background: var(--bg-s);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 120, 128, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 30px rgba(200, 120, 128, 0.06);
}

.about-feature-card:hover::before {
  opacity: 1;
}

.about-feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 120, 128, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-feature-card:hover .about-feature-icon {
  background: rgba(200, 120, 128, 0.15);
  transform: scale(1.05);
}

.about-feature-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.about-feature-desc {
  font-size: 0.88rem;
  color: var(--text-s);
  line-height: 1.7;
}

/* Stats & CTA */
.about-stats-section {
  background: var(--bg-s);
}

.about-stats-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 56px;
}

.about-stat-item {
  text-align: center;
}

.about-stat-number {
  display: block;
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-s);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.about-cta-block {
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-cta-text {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 500;
}

.about-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Page Mobile */
@media (max-width: 1024px) {
  .about-founder-layout {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .about-founder-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-founder-signature {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-page-hero {
    min-height: 45vh;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 60px;
  }

  .about-hero-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }

  .about-founder-portrait {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .about-portrait-circle {
    width: 200px;
    height: 200px;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-stats-grid {
    gap: 40px;
    flex-wrap: wrap;
  }

  .about-stat-number {
    font-size: 2.4rem;
  }

  .about-founder-name {
    font-size: 1.8rem;
  }
}

.shop-page {
  padding-top: 0;
  padding-bottom: 120px;
  overflow: hidden;
}

.shop-showcase {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 40px;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 80px;
}

.showcase-item.reverse {
  flex-direction: row-reverse;
}

.showcase-image-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 340px;
  perspective: 1000px;
}

.book-glow {
  position: absolute;
  inset: -15px;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(40px);
  opacity: 0.4;
  transition: var(--transition);
  border-radius: 20px;
}

.showcase-item:hover .book-glow {
  opacity: 0.6;
  filter: blur(50px);
  transform: scale(1.05);
}

.book-cover {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 4px 12px 12px 4px;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.5), inset 4px 0 10px rgba(255, 255, 255, 0.2);
  transform: rotateY(-15deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-item:hover .book-cover {
  transform: rotateY(-5deg) translateY(-10px);
}

.showcase-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.book-author {
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.author-label {
  color: var(--text-t);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-right: 8px;
}

.author-name {
  color: var(--accent);
  font-weight: 600;
}

.book-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.book-desc {
  font-size: 1rem;
  color: var(--text-s);
  line-height: 1.8;
  margin-bottom: 40px;
}

.book-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.book-buy-btn:hover {
  gap: 16px;
}

/* ===== NOW PLAYING CARD (Listen Page) ===== */
.lm-now-playing-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-l);
  padding: 24px;
  margin-bottom: 24px;
  transition: border-color var(--transition);
}

.lm-now-playing-card:hover {
  border-color: rgba(200,120,128,0.2);
}

.lm-np-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.lm-np-icon {
  color: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.lm-np-label {
  flex: 1;
}

.lm-np-listeners {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-s);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.lm-np-body {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.lm-np-art {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-s);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-l);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.lm-np-art:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

.lm-np-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.lm-np-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lm-np-artist {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lm-np-album {
  font-size: 0.75rem;
  color: var(--text-t);
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Progress Bar */
.lm-np-progress {
  margin-top: 4px;
}

.lm-np-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}

.lm-np-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-l));
  border-radius: 2px;
  width: 0%;
  transition: width 1s linear;
}

.lm-np-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-t);
  font-variant-numeric: tabular-nums;
}

/* Live DJ Indicator */
.lm-np-live-dj {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(200,120,128,0.1);
  border: 1px solid rgba(200,120,128,0.2);
  border-radius: var(--radius-s);
  font-size: 0.78rem;
  color: var(--accent);
}

.lm-np-live-dj svg {
  color: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

/* ===== UP NEXT ===== */
.lm-up-next {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  transition: border-color var(--transition);
}

.lm-up-next:hover {
  border-color: rgba(255,255,255,0.08);
}

.lm-up-next-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-t);
  margin-bottom: 12px;
}

.lm-up-next-body {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lm-up-next-art {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.lm-up-next-art:hover {
  opacity: 1;
}

.lm-up-next-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.lm-up-next-title {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lm-up-next-artist {
  font-size: 0.75rem;
  color: var(--text-s);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== RECENTLY PLAYED (Song History) ===== */
.listen-history-section {
  padding: 60px 0 100px;
  background: var(--bg-s);
  border-top: 1px solid var(--border);
}

.listen-history-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  color: var(--text);
}

.listen-history-header svg {
  color: var(--accent);
}

.listen-history-header h2 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.listen-history-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.history-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-s);
  transition: background var(--transition);
}

.history-item:hover {
  background: rgba(255,255,255,0.03);
}

.history-art {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.history-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.history-title {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-artist {
  font-size: 0.78rem;
  color: var(--text-s);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-time {
  font-size: 0.72rem;
  color: var(--text-t);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.history-loading {
  opacity: 0.5;
}

.history-skeleton {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(110deg, var(--bg-e) 30%, var(--bg-s) 50%, var(--bg-e) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  flex-shrink: 0;
}

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

/* Status dot */
.lm-pulse-dot.online {
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
}

.lm-pulse-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
}

/* ===== MOBILE OVERRIDES ===== */
@media (max-width: 768px) {
  .now-playing-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
  }

  .shows-grid {
    grid-template-columns: 1fr;
  }

  .shop-showcase {
    gap: 60px;
  }

  .showcase-item,
  .showcase-item.reverse {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .showcase-info {
    align-items: center;
  }

  .book-title {
    font-size: 2rem;
  }

  .showcase-image-wrapper {
    width: 280px;
  }

  .listen-info {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .schedule-slot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .slot-time {
    width: auto;
  }

  .about-stats {
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 7vw, 4rem);
  }

  .lm-np-body {
    gap: 12px;
  }

  .lm-np-art {
    width: 56px;
    height: 56px;
  }

  .lm-np-title {
    font-size: 1rem;
  }

  .lm-np-listeners {
    display: none;
  }

  .lm-up-next-body {
    gap: 10px;
  }

  .history-item {
    padding: 10px 12px;
    gap: 12px;
  }

  .history-art {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .shows-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}