/*
 * RADIO SUNWAL 90.7 FM - Official Website Style File
 * Pure CSS3 - Responsive, Premium, and Modern
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* Color Variables */
:root {
  --primary: #E30613;
  --primary-hover: #C20510;
  --primary-rgb: 227, 6, 19;
  --secondary: #0F172A;
  --accent: #FFD700;
  --accent-rgb: 255, 215, 0;
  --bg: #050816;
  --card: #111827;
  --card-hover: #1F2937;
  --text: #FFFFFF;
  --text-muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.08);
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 80px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(227, 6, 19, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
  line-height: 1.6;
}

/* Custom Scrollbar - Hidden Visually */
::-webkit-scrollbar {
  display: none;
}
html {
  scrollbar-width: none;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease-out, visibility 0.6s;
}
#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: loadFadeIn 0.8s forwards 0.2s;
}
.loader-logo span {
  color: var(--primary);
}
.loader-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
}
.loader-bar {
  width: 4px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 2px;
  animation: bounce 1.2s ease-in-out infinite;
}
.loader-bar:nth-child(2) { animation-delay: 0.1s; height: 18px; background-color: var(--accent); }
.loader-bar:nth-child(3) { animation-delay: 0.2s; height: 32px; }
.loader-bar:nth-child(4) { animation-delay: 0.3s; height: 20px; }
.loader-bar:nth-child(5) { animation-delay: 0.4s; height: 12px; background-color: var(--accent); }

@keyframes loadFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(2.5); }
}

/* Interactive Autoplay Overlay (Autoplay Blocked) */
#autoplay-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 22, 0.98);
  backdrop-filter: blur(20px);
  z-index: 9500;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}
#autoplay-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.overlay-content {
  text-align: center;
  max-width: 500px;
  padding: 3rem;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.overlay-pulse {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: rgba(227, 6, 19, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.overlay-pulse::before, .overlay-pulse::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px dashed rgba(227, 6, 19, 0.4);
  border-radius: 50%;
  animation: rotateClockwise 12s linear infinite;
}
.overlay-pulse::after {
  inset: -20px;
  border: 1px dotted rgba(255, 215, 0, 0.3);
  animation: rotateCounterClockwise 16s linear infinite;
}
.overlay-pulse svg {
  width: 42px;
  height: 42px;
  fill: var(--primary);
  margin-left: 4px;
  transition: var(--transition-smooth);
}
.overlay-pulse:hover svg {
  transform: scale(1.1);
  fill: var(--accent);
}
.overlay-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.overlay-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.overlay-btn {
  background: var(--primary);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3);
  transition: var(--transition-smooth);
}
.overlay-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(227, 6, 19, 0.4);
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Header Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(5, 8, 22, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 70px;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.logo-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}
.logo-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--text);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.logo-text span {
  color: var(--primary);
}
.logo-freq {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-smooth);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}
.btn-nav-listen {
  background: var(--primary);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.2);
  transition: var(--transition-smooth);
}
.btn-nav-listen:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger svg {
  width: 24px;
  height: 24px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: var(--header-height);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.8) 0%, rgba(5, 8, 22, 1) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?q=80&w=1920&auto=format&fit=crop') center/cover no-referrer;
  opacity: 0.15;
  filter: grayscale(100%) contrast(120%);
  z-index: 0;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* Particle wave backdrop simulation */
.studio-waves {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}
.wave-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(227, 6, 19, 0.2);
  border-radius: 50%;
  animation: expandRing 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.wave-ring:nth-child(2) { animation-delay: 1s; }
.wave-ring:nth-child(3) { animation-delay: 2s; }
.wave-ring:nth-child(4) { animation-delay: 3s; }

@keyframes expandRing {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 6, 19, 0.12);
  border: 1px solid rgba(227, 6, 19, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}
.live-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  position: relative;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse-ring 1.5s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
.live-badge span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.8s forwards 0.2s;
}
.hero-title span {
  background: linear-gradient(135deg, #FFF 60%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.8s forwards 0.4s;
}
.hero-subtitle strong {
  color: var(--accent);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.8s forwards 0.6s;
}
.btn-hero-primary {
  background: var(--primary);
  color: var(--text);
  border: none;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(227, 6, 19, 0.35);
  transition: var(--transition-smooth);
}
.btn-hero-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(227, 6, 19, 0.45);
}
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

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

/* Audio Visualizer Hero side */
.hero-visualizer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.95);
  animation: loadFadeIn 1s forwards 0.5s;
}
.visualizer-disk {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #1e293b 0%, #020617 100%);
  border: 8px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 0 40px rgba(227, 6, 19, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.visualizer-disk::after {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: rotateClockwise 20s linear infinite;
}
.disk-cover {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: url('img/rikon.png') center/cover;
  border: 4px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}
.disk-center {
  width: 30px;
  height: 30px;
  background-color: var(--bg);
  border-radius: 50%;
  border: 3px solid var(--accent);
}

.visualizer-eq {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-top: 3rem;
}
.eq-bar {
  width: 6px;
  height: 15px;
  background: linear-gradient(to top, var(--primary), var(--accent));
  border-radius: 3px;
  transform-origin: bottom;
  transition: height 0.1s ease;
}
.playing .eq-bar {
  animation: eqAnimation 1.4s ease-in-out infinite alternate;
}
.playing .eq-bar:nth-child(1) { animation-delay: 0.1s; animation-duration: 1.2s; }
.playing .eq-bar:nth-child(2) { animation-delay: 0.3s; animation-duration: 1.6s; }
.playing .eq-bar:nth-child(3) { animation-delay: 0.5s; animation-duration: 1.1s; }
.playing .eq-bar:nth-child(4) { animation-delay: 0.2s; animation-duration: 1.5s; }
.playing .eq-bar:nth-child(5) { animation-delay: 0.6s; animation-duration: 1.3s; }
.playing .eq-bar:nth-child(6) { animation-delay: 0.4s; animation-duration: 1.7s; }
.playing .eq-bar:nth-child(7) { animation-delay: 0.7s; animation-duration: 1.4s; }
.playing .eq-bar:nth-child(8) { animation-delay: 0.2s; animation-duration: 1.2s; }

@keyframes eqAnimation {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(2.2); }
}

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

/* Premium Player Component (Middle section) */
.section-player {
  padding: 6rem 2rem;
  position: relative;
  z-index: 5;
}
.player-container {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}
.player-art-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  aspect-ratio: 1;
}
.player-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}
.player-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.player-badge-live {
  align-self: flex-start;
  background: var(--primary);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 1px;
}

.player-main-info {
  display: flex;
  flex-direction: column;
}
.player-meta-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.player-station-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.player-show-name {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Audio Player Controls */
.player-controls-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.btn-play-toggle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 25px rgba(227,6,19,0.4);
  transition: var(--transition-smooth);
}
.btn-play-toggle:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(227,6,19,0.5);
}
.btn-play-toggle svg {
  width: 32px;
  height: 32px;
  fill: var(--text);
  color: var(--text);
  transition: transform 0.3s ease;
}
.btn-play-toggle .icon-pause {
  display: none;
}
.playing .btn-play-toggle .icon-play {
  display: none;
}
.playing .btn-play-toggle .icon-pause {
  display: block;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  max-width: 250px;
}
.btn-mute {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.btn-mute:hover {
  color: var(--text);
}
.btn-mute svg {
  width: 20px;
  height: 20px;
}
.volume-slider-wrap {
  position: relative;
  flex-grow: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
}
.volume-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 80%;
  background-color: var(--primary);
  border-radius: 2px;
}
.volume-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.player-secondary-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.info-block {
  display: flex;
  flex-direction: column;
}
.info-block-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}
.info-block-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}
.info-block-val.status-connected {
  color: #10B981; /* Green */
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-block-val.status-connected::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
}

/* Sections Base Styling */
section {
  padding: 8rem 2rem;
  position: relative;
}
.section-title-wrap {
  text-align: center;
  margin-bottom: 5rem;
}
.section-subtitle {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
}

/* Upcoming Programs (Grid of beautiful Cards) */
.programs-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
}
.program-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 6, 19, 0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.program-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.program-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}
.program-card:hover .program-img {
  transform: scale(1.06);
}
.card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.badge-live {
  background-color: var(--primary);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(227,6,19,0.4);
}
.badge-upcoming {
  background-color: var(--secondary);
  color: var(--accent);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.program-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.program-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.program-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.program-card:hover .program-name {
  color: var(--accent);
}
.program-host {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.program-host svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}
.program-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.program-footer {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.program-footer-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.program-footer-item svg {
  width: 14px;
  height: 14px;
}

/* Program Schedule (Tabbed Timetable) */
.schedule-container {
  max-width: 1000px;
  margin: 0 auto;
}
.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  background-color: rgba(17, 24, 39, 0.4);
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.tab-btn:hover {
  color: var(--text);
}
.tab-btn.active {
  background-color: var(--primary);
  color: var(--text);
  box-shadow: 0 4px 15px rgba(227,6,19,0.3);
}

.schedule-panel {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
}
.schedule-panel.active {
  display: flex;
  animation: panelFadeIn 0.5s ease-out;
}

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

.schedule-row {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 200px 1.5fr 1fr 150px;
  align-items: center;
  gap: 2rem;
  transition: var(--transition-smooth);
}
.schedule-row:hover {
  border-color: rgba(255,255,255,0.15);
  background-color: var(--card-hover);
}
.schedule-row.live {
  border-color: var(--primary);
  background-image: linear-gradient(90deg, rgba(227,6,19,0.03) 0%, transparent 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.row-time {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.row-time svg {
  width: 16px;
  height: 16px;
}
.row-program {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}
.row-host {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.row-host svg {
  width: 14px;
  height: 14px;
}
.row-status {
  text-align: right;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
}
.status-live {
  background-color: rgba(227,6,19,0.1);
  color: var(--primary);
  border: 1px solid rgba(227,6,19,0.3);
}
.status-upcoming {
  background-color: rgba(255,255,255,0.03);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.status-done {
  background-color: rgba(255,255,255,0.01);
  color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.03);
  text-decoration: line-through;
}

/* About Radio Section (Premium Grid of Cards) */
.about-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}
.about-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  transition: var(--transition-smooth);
}
.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.2);
}
.about-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: rgba(227,6,19,0.1);
  border: 1px solid rgba(227,6,19,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}
.about-card:hover .about-icon-wrap {
  background-color: var(--primary);
  box-shadow: 0 4px 15px rgba(227,6,19,0.3);
}
.about-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: var(--transition-smooth);
}
.about-card:hover .about-icon-wrap svg {
  color: var(--text);
  transform: scale(1.1);
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Sync Hero Section circular artwork (visualizer-disk) rotation with audio playing state */
.playing .visualizer-disk {
  animation: spin-vinyl 15s linear infinite;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 40px rgba(227, 6, 19, 0.45), inset 0 0 45px rgba(227, 6, 19, 0.25);
  border-color: rgba(227, 6, 19, 0.35);
}
@keyframes spin-vinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Volume Percentage Labels */
.vol-percentage {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  min-width: 40px;
  text-align: right;
}

/* Elapsed Timer Badge Display */
.player-time-container {
  margin: 1.2rem 0;
}
.player-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.live-separator {
  color: var(--text-muted);
}
.live-tag {
  color: var(--primary);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse-live-dot 1.5s infinite alternate;
}
@keyframes pulse-live-dot {
  from { opacity: 0.4; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1.2); }
}

/* Smart Dynamic Schedule Highlights */
.schedule-row.live {
  background: linear-gradient(135deg, rgba(227,6,19,0.08) 0%, rgba(5,8,22,0.4) 100%);
  border: 1px solid rgba(227,6,19,0.3);
  box-shadow: 0 8px 30px rgba(227,6,19,0.15), inset 0 0 15px rgba(227,6,19,0.05);
  transform: translateY(-2px);
}
.schedule-row.live .row-time span,
.schedule-row.live .row-program span,
.schedule-row.live .row-host span {
  color: var(--text);
  font-weight: 600;
}
.schedule-row.live::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--primary);
}

/* Status Badge Themes */
.status-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}
.status-live {
  background-color: rgba(227,6,19,0.15);
  color: var(--primary);
  border: 1px solid rgba(227,6,19,0.3);
  animation: pulse-badge 2s infinite alternate;
}
.status-done {
  background-color: rgba(255,255,255,0.03);
  color: var(--text-muted);
  border: 1px solid var(--border);
  opacity: 0.6;
}
.status-upcoming {
  background-color: rgba(16,185,129,0.1);
  color: #10B981;
  border: 1px solid rgba(16,185,129,0.2);
}
@keyframes pulse-badge {
  from { box-shadow: 0 0 5px rgba(227,6,19,0.2); }
  to { box-shadow: 0 0 15px rgba(227,6,19,0.5); }
}

/* Statistics counters */
.section-stats {
  background-color: rgba(17, 24, 39, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.stat-title {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Team Section */
.team-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.team-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227,6,19,0.2);
}
.team-img-wrap {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}
.team-card:hover .team-img {
  transform: scale(1.05);
}
.team-socials {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(5,8,22,0.9), transparent);
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}
.team-card:hover .team-socials {
  opacity: 1;
  transform: translateY(0);
}
.team-social-link {
  width: 38px;
  height: 38px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.team-social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}
.team-social-link svg {
  width: 16px;
  height: 16px;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.team-role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.team-dept {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

/* Contact Section */
.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contact-info-desc {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.channel-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(227,6,19,0.08);
  border: 1px solid rgba(227,6,19,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  flex-shrink: 0;
}
.channel-icon svg {
  width: 20px;
  height: 20px;
}
.channel-details h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.channel-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.channel-details a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}
.channel-details a:hover {
  color: var(--accent);
}

.contact-form-panel {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 3.5rem;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1);
}
textarea.form-control {
  resize: none;
  height: 150px;
}
.btn-submit {
  width: 100%;
  background-color: var(--primary);
  color: var(--text);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(227,6,19,0.3);
  transition: var(--transition-smooth);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.btn-submit:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(227,6,19,0.4);
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--text);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  margin-bottom: 70px;
  
}
#back-to-top:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
}
#back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Floating Bottom Sticky Player - Spotify Style */
#sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 900;
  padding: 1rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
#sticky-player.show {
  transform: translateY(0);
}
.sticky-player-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  align-items: center;
  gap: 2rem;
}
.sticky-station {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-art {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}
.sticky-meta h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}
.sticky-meta p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.sticky-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.btn-sticky-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(227,6,19,0.3);
  transition: var(--transition-smooth);
}
.btn-sticky-play:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}
.btn-sticky-play svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
  color: var(--text);
}
.btn-sticky-play .icon-pause {
  display: none;
}
.playing .btn-sticky-play .icon-play {
  display: none;
}
.playing .btn-sticky-play .icon-pause {
  display: block;
}

.sticky-status-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}
.sticky-eq-bar {
  width: 3px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 1px;
}
.playing .sticky-eq-bar {
  animation: eqAnimation 1.2s ease-in-out infinite alternate;
}
.playing .sticky-eq-bar:nth-child(1) { animation-delay: 0.1s; animation-duration: 0.9s; }
.playing .sticky-eq-bar:nth-child(2) { animation-delay: 0.3s; animation-duration: 1.2s; background-color: var(--accent); }
.playing .sticky-eq-bar:nth-child(3) { animation-delay: 0.5s; animation-duration: 0.8s; }
.playing .sticky-eq-bar:nth-child(4) { animation-delay: 0.2s; animation-duration: 1.1s; background-color: var(--accent); }

.sticky-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
.sticky-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 150px;
}

/* Premium Footer */
footer {
  background-color: #02040d;
  border-top: 1px solid var(--border);
  padding: 6rem 2rem 2rem;
  position: relative;
  z-index: 2;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.footer-info h3 span {
  color: var(--primary);
}
.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social-link {
  width: 44px;
  height: 44px;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.footer-social-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text);
  transform: translateY(-3px);
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--text);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 80px;
}
.footer-credit a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.footer-credit a:hover {
  color: var(--accent);
}

/* Notification Toast */
#toast {
  position: fixed;
  bottom: 120px;
  right: 30px;
  background-color: var(--card);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1050;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#toast.show {
  transform: translateX(0);
}
#toast svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}
#toast-text {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Animations for scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .player-container {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2.5rem;
  }
  .player-art-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .sticky-player-container {
    grid-template-columns: 1fr auto;
  }
  .sticky-actions {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Redesigned Mobile Experience below 768px */
@media (max-width: 768px) {
  /* Remove horizontal overflow and enforce 100% width */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }
  
  section, header, footer {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  img {
    max-width: 100% !important;
  }

  /* Navbar styling */
  header {
    height: 70px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .logo {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .logo-icon-wrap {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
  }

  .logo-icon-wrap svg {
    width: 16px !important;
    height: 16px !important;
  }

  .logo-text {
    font-size: 1.1rem !important;
  }

  .logo-freq {
    font-size: 0.65rem !important;
    letter-spacing: 1px !important;
  }

  .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .lang-btn {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
    border-radius: 50px !important;
    height: auto !important;
    min-width: unset !important;
  }

  .btn-nav-listen {
    display: none !important;
  }

  .hamburger {
    display: block !important;
    padding: 4px !important;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg);
    flex-direction: column;
    padding: 3rem 20px !important;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  /* Hero Section */
  .hero {
    height: auto !important;
    min-height: 100vh !important;
    padding-top: 100px !important;
    padding-bottom: 50px !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
    gap: 2rem !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 4rem) !important;
    text-align: center !important;
    line-height: 1.15 !important;
    letter-spacing: -1px !important;
    margin-bottom: 1rem !important;
  }

  .hero-subtitle {
    font-size: 1.05rem !important;
    max-width: 90% !important;
    width: 90% !important;
    margin: 0 auto 2rem auto !important;
    text-align: center !important;
    line-height: 1.5 !important;
  }

  /* Mobile Button Fix */
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .btn-hero-primary, 
  .btn-hero-secondary {
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    padding: 15px 20px !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-visualizer {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .visualizer-disk {
    width: 260px !important;
    height: 260px !important;
  }

  .disk-cover {
    width: 110px !important;
    height: 110px !important;
  }

  .visualizer-eq {
    margin-top: 2rem !important;
  }

  /* Player Mobile Design */
  .player-container {
    width: calc(100% - 40px) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 24px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: center !important;
    text-align: center !important;
  }

  .player-art-wrap {
    max-width: 240px !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 auto !important;
  }

  .player-main-info {
    width: 100% !important;
    text-align: center !important;
  }

  .player-controls-row {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.25rem !important;
  }

  .btn-play-toggle {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
  }

  .volume-container {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    max-width: 320px !important;
  }

  .volume-slider-wrap {
    flex-grow: 1 !important;
  }

  /* Avoid elements touching screen edges */
  .player-secondary-info {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .info-block {
    padding: 12px !important;
  }

  /* Schedule mobile */
  .schedule-row {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
    padding: 1.5rem !important;
  }

  .row-status {
    text-align: left !important;
    margin-top: 0.5rem !important;
  }

  .tab-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
  }

  .section-title {
    font-size: 2.2rem !important;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center !important;
  }

  /* Compact Mobile Statistics Section */
  .section-stats {
    padding: 2.5rem 15px !important;
  }
  .stats-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: flex-start !important;
    gap: 10px !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .stat-item {
    flex: 1 !important;
    padding: 0 !important;
    text-align: center !important;
    min-width: 0 !important;
  }
  .stat-number {
    font-size: clamp(1.4rem, 5.5vw, 2.2rem) !important;
    margin-bottom: 4px !important;
  }
  .stat-title {
    font-size: clamp(0.6rem, 2.3vw, 0.75rem) !important;
    line-height: 1.25 !important;
    display: block !important;
    white-space: normal !important;
  }

  /* Single Column Team Section on Mobile */
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
  }
  .team-card {
    width: 100% !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .team-img-wrap {
    width: 100% !important;
    height: 300px !important;
    border-radius: 16px !important;
  }
  .team-info {
    padding: 1.5rem 0 0 0 !important;
    text-align: center !important;
  }
}

/* Extra small devices check */
@media (max-width: 425px) {
  section, header, footer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .player-container {
    width: calc(100% - 30px) !important;
  }

  .volume-container {
    width: 100% !important;
  }

  .hero-subtitle {
    max-width: 100% !important;
    width: 100% !important;
  }
}
