:root {
  --primary-red: #ff2200;
  --primary-orange: #ff5500;
  --accent-yellow: #ffcc00;
  --accent-cyan: #00f2fe;

  --bg-dark-base: #0a0b10;
  --bg-dark-card: rgba(18, 20, 30, 0.75);
  --bg-card-border: rgba(255, 255, 255, 0.12);
  --bg-card-hover: rgba(255, 255, 255, 0.18);

  --text-main: #ffffff;
  --text-muted: #9ea4b5;
  --text-highlight: #ffcc00;

  --glow-primary: 0 0 25px rgba(255, 34, 0, 0.6);
  --glow-orange: 0 0 25px rgba(255, 85, 0, 0.5);
  --glow-yellow: 0 0 20px rgba(255, 204, 0, 0.6);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


body.theme-cyberpunk {
  --primary-red: #d900ff;
  --primary-orange: #00f2fe;
  --accent-yellow: #00ffaa;
  --bg-dark-base: #060512;
  --glow-primary: 0 0 25px rgba(217, 0, 255, 0.6);
}


body.theme-sunset {
  --primary-red: #ff0055;
  --primary-orange: #ff9900;
  --accent-yellow: #ffe600;
  --bg-dark-base: #14080e;
  --glow-primary: 0 0 25px rgba(255, 0, 85, 0.6);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-base);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-orange);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}


.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: floatOrb 18s infinite alternate ease-in-out;
}

.orb-1 {
  top: -10%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: var(--primary-red);
}

.orb-2 {
  top: 40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary-orange);
  animation-delay: -6s;
}

.orb-3 {
  bottom: -15%;
  left: 30%;
  width: 450px;
  height: 450px;
  background: var(--accent-yellow);
  animation-delay: -12s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(60px, 40px) scale(1.15);
  }

  100% {
    transform: translate(-40px, 80px) scale(0.9);
  }
}


.ticker-wrap {
  width: 100%;
  background: linear-gradient(90deg, #080a12, #121828, #080a12);
  border-bottom: 1px solid rgba(255, 85, 0, 0.35);
  color: #fff;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 100;
  padding: 0 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.ticker-label {
  background: var(--primary-red);
  color: #fff;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.4);
}

.ticker-scroll-area {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  gap: 40px;
  padding-left: 20px;
}

.ticker:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}


.main-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(8, 10, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-card-border);
}

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 85, 0, 0.4));
  transition: transform var(--transition-fast);
}

.header-logo-img:hover {
  transform: scale(1.06) rotate(-1deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.nav-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-tab.active {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: #fff;
  box-shadow: var(--glow-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
  flex-shrink: 0;
  margin-left: 24px;
  padding-right: 8px;
}


.live-badge-wrapper {
  background: rgba(255, 85, 0, 0.22);
  border: 1px solid rgba(255, 85, 0, 0.5);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  color: #ffaa00;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--primary-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-red);
  animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(255, 34, 0, 0.8);
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(255, 34, 0, 0);
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(255, 34, 0, 0);
  }
}

.live-text {
  color: #ffaa00;
  letter-spacing: 0.5px;
}

.listeners-count {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 8px;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-left: 4px;
}

.icon-btn:hover {
  background: var(--primary-orange);
  box-shadow: 0 0 12px rgba(255, 85, 0, 0.6);
  transform: translateY(-2px);
}


.app-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 32px;
}


.hero-player-card {
  background: linear-gradient(145deg, rgba(16, 22, 34, 0.96), rgba(10, 13, 22, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 85, 0, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 85, 0, 0.15);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.hero-player-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.player-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}


.player-main-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.player-upper-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-hero-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-brand-logo {
  max-height: 165px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 20px rgba(255, 85, 0, 0.4));
}

.player-center-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.show-status-box {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.status-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.air-badge {
  background: #fff;
  color: #d90000;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.72rem;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}


.equalizer-icon-anim {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.equalizer-icon-anim span {
  width: 3px;
  background-color: var(--accent-yellow);
  border-radius: 2px;
  height: 20%;
}

.equalizer-icon-anim.playing span:nth-child(1) {
  animation: soundBar 1.2s infinite ease-in-out;
}

.equalizer-icon-anim.playing span:nth-child(2) {
  animation: soundBar 0.8s infinite ease-in-out 0.2s;
}

.equalizer-icon-anim.playing span:nth-child(3) {
  animation: soundBar 1.4s infinite ease-in-out 0.4s;
}

.equalizer-icon-anim.playing span:nth-child(4) {
  animation: soundBar 1.0s infinite ease-in-out 0.1s;
}

@keyframes soundBar {

  0%,
  100% {
    height: 20%;
  }

  50% {
    height: 100%;
  }
}

.show-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.show-schedule {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-top: 4px;

}

.dj-name {
  color: var(--accent-yellow);
  font-weight: 700;
}


.visualizer-container {
  background: rgba(0, 0, 0, 0.45);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

#visualizerCanvas {
  width: 100%;
  height: 70px;
  display: block;
}

.visualizer-overlay-info {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-weight: 700;
}

.quality-tag {
  color: var(--accent-yellow);
}

.latency-tag {
  color: #00ffaa;
}


.control-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  color: #d90000;
  border: none;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.main-play-btn:hover {
  transform: scale(1.08);
  background: var(--accent-yellow);
  color: #000;
}

.main-play-btn.playing {
  background: var(--accent-yellow);
  color: #000;
}

.main-play-btn.playing .btn-pulse-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent-yellow);
  animation: playPulse 2s infinite ease-out;
}

@keyframes playPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.playback-details {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

.stream-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}

.stream-status {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}


.volume-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.volume-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  width: 24px;
}

.slider-wrapper {
  position: relative;
  width: 90px;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.custom-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.slider-progress {
  height: 100%;
  background: var(--accent-yellow);
  border-radius: 3px;
  pointer-events: none;
}

.volume-val {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  min-width: 32px;
}


.custom-select {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
}


.now-playing-card {
  display: flex;
  justify-content: center;
}

.album-frame {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.music-platform-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.album-art-wrapper {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 10px 0 18px;
}

.album-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
  transition: transform var(--transition-normal);
}


.vinyl-disc {
  position: absolute;
  top: 5px;
  right: -25px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #222 20%, #050505 80%);
  border-radius: 50%;
  z-index: 1;
  transition: right var(--transition-normal);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-art-wrapper.playing .vinyl-disc {
  right: -55px;
  animation: spinVinyl 6s linear infinite;
}

@keyframes spinVinyl {
  100% {
    transform: rotate(360deg);
  }
}

.vinyl-center {
  width: 60px;
  height: 60px;
  background: var(--primary-red);
  border-radius: 50%;
  border: 4px solid #fff;
}

.song-meta {
  margin-bottom: 16px;
  width: 100%;
}

.song-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-artist {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.card-action-bar {
  display: flex;
  gap: 8px;
  width: 100%;
}

.action-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.heart-btn:hover {
  color: #ff3366;
  border-color: #ff3366;
}

.heart-btn.liked {
  background: rgba(255, 34, 0, 0.25);
  border-color: #ff3366;
  color: #ff3366;
  box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
}



.section-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.channel-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.channel-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.channel-card.active {
  border-color: var(--primary-red);
  background: linear-gradient(135deg, rgba(255, 34, 0, 0.25), rgba(0, 0, 0, 0.4));
  box-shadow: var(--glow-primary);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.channel-info h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.channel-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.channel-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent-yellow);
}


.main-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.content-block {
  background: var(--bg-dark-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.block-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-link {
  font-size: 0.75rem;
  color: var(--text-muted);
}


.recent-tracks-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.track-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.track-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.track-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.track-info-titles h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.track-info-titles p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.track-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.like-track-icon {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  transition: color var(--transition-fast);
}

.like-track-icon:hover,
.like-track-icon.active {
  color: #ff3366;
}


.schedule-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.3);
  padding: 3px;
  border-radius: var(--radius-full);
}

.sched-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.sched-tab.active {
  background: var(--primary-orange);
  color: #fff;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--text-muted);
}

.schedule-card.on-air {
  border-left-color: var(--primary-red);
  background: linear-gradient(90deg, rgba(255, 34, 0, 0.15), rgba(255, 255, 255, 0.02));
}

.sched-time {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent-yellow);
}

.sched-info h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.sched-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}


.chat-block {
  display: flex;
  flex-direction: column;
  height: 480px;
}

.chat-online-tag {
  font-size: 0.75rem;
  color: #00ffaa;
  font-weight: 700;
}

.chat-messages-container {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.chat-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  animation: fadeInMsg 0.3s ease-out;
}

@keyframes fadeInMsg {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-bubble-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.chat-author {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent-yellow);
}

.chat-city {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.chat-time {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
}

.chat-text {
  font-size: 0.88rem;
  color: #fff;
}


.chat-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form-msg-row {
  display: flex;
  gap: 8px;
}

.chat-input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.chat-input:focus {
  border-color: var(--primary-orange);
}

.send-btn {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  border: none;
  color: #fff;
  padding: 0 18px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.send-btn:hover {
  transform: scale(1.05);
}

.quick-emojis {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  overflow-x: auto;
}

.emoji-chip {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  cursor: pointer;
  white-space: nowrap;
}

.emoji-chip:hover {
  background: var(--primary-orange);
}


.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ranking-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rank-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  width: 28px;
  color: var(--text-muted);
}

.ranking-item:nth-child(1) .rank-number {
  color: #ffd700;
}

.ranking-item:nth-child(2) .rank-number {
  color: #c0c0c0;
}

.ranking-item:nth-child(3) .rank-number {
  color: #cd7f32;
}

.rank-details {
  flex: 1;
  margin: 0 12px;
}

.rank-details h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}

.rank-details p {
  font-size: 0.75rem;
  color: var(--text-muted);
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.modal-card {
  background: var(--bg-dark-base);
  border: 1px solid var(--primary-orange);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 90%;
  max-width: 520px;
  box-shadow: var(--glow-orange);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent-yellow);
}

.close-modal-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.eq-sliders-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  height: 220px;
  margin-bottom: 24px;
}

.eq-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.band-freq {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--accent-yellow);
}

.band-label {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.eq-slider {
  writing-mode: bt-lr;
  -webkit-appearance: slider-vertical;
  width: 8px;
  height: 130px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  cursor: pointer;
}

.band-val {
  font-size: 0.72rem;
  font-weight: 700;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: #fff;
  box-shadow: var(--glow-primary);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}


.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(18, 20, 30, 0.95);
  border: 1px solid var(--primary-orange);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  box-shadow: var(--shadow-card);
  animation: toastIn 0.3s ease-out;
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.main-footer {
  background: rgba(5, 6, 10, 0.9);
  border-top: 1px solid var(--bg-card-border);
  padding: 32px 24px;
  margin-top: 40px;
}

.footer-content {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--primary-orange);
  transform: translateY(-2px);
}


@media (max-width: 992px) {
  .player-grid {
    grid-template-columns: 1fr;
  }

  .player-upper-row {
    flex-direction: column;
    text-align: center;
  }

  .main-content-grid {
    grid-template-columns: 1fr;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .nav-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .hero-player-card {
    padding: 20px;
  }

  .show-title {
    font-size: 1.8rem;
  }

  .control-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .playback-details {
    text-align: center;
  }

  .volume-container {
    justify-content: center;
  }

  .ticker-wrap {
    font-size: 0.75rem;
  }
}