/* ========================================
   FunAsia Radio - Main Stylesheet
   Fully Responsive Dark Theme
   ======================================== */

/* CSS Variables */
:root {
  --primary: #ff4d4d;
  --primary-dark: #cc3d3d;
  --primary-light: #ff6b6b;
  --primary-glow: rgba(255, 77, 77, 0.3);
  
  --secondary: #00d4ff;
  --secondary-dark: #00a8cc;
  --accent: #ffd700;
  
  --bg-dark: #0a0a0f;
  --bg-darker: #050508;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a25;
  --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6a6a7a;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px var(--primary-glow);
  
  --font-heading: 'Unbounded', 'Poppins', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(1.75rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
h4 { font-size: clamp(1rem, 2vw, 1.5rem); }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-title {
    margin-bottom: 4rem;
  }
}

.section-title span {
  color: var(--primary);
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--primary-glow);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Background Effects */
.bg-gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(255, 77, 77, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    var(--bg-dark);
  z-index: -1;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 1rem 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    height: 50px;
  }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 1.5rem;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Desktop Navigation */
.nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

@media (min-width: 768px) {
  .live-indicator {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: var(--radius-full);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
/*@media (max-width: 1023px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-links.mobile-open {
    display: flex;
    transform: translateX(0);
    background: var(--bg-dark);
  }
  
  .nav-links a {
    font-size: 1.25rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }
}*/

/*my start*/
/* ========================================
   MOBILE NAV (no flash, no old style first)
   ======================================== */
@media (max-width: 1023px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* ALWAYS solid (no animation on background) */
    background: var(--bg-dark);
    background-color: var(--bg-dark);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;

    /* Hidden state */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;

    /* IMPORTANT: only animate what we want */
    transition: transform var(--transition-normal), opacity var(--transition-fast);
    z-index: 2000;
  }

  .nav-links.mobile-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.25rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }

  /* Keep hamburger always clickable above overlay */
  .mobile-menu-btn {
    position: relative;
    z-index: 2001;
  }
}

/*My end*/

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 120px;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 77, 77, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 40%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 992px) {
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.hero-text {
  text-align: center;
}

@media (min-width: 992px) {
  .hero-text {
    text-align: left;
  }
}

.hero-text h1 {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-text h1 {
    margin-bottom: 1.5rem;
  }
}

.hero-text h1 span {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-buttons .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .hero-buttons .btn {
    width: auto;
  }
}

/* ========================================
   PLAYER SECTION
   ======================================== */
.player-section {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .player-section {
    max-width: none;
  }
}

.player-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .player-card {
    border-radius: var(--radius-xl);
    padding: 2rem;
  }
}

.player-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.player-now-playing {
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .player-now-playing {
    margin-bottom: 2rem;
  }
}

.player-show-image {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .player-show-image {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
  }
}

.player-show-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .player-show-name {
    font-size: 1.5rem;
  }
}

.player-host {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.player-time {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .player-controls {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .play-btn {
    width: 80px;
    height: 80px;
  }
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--primary-light);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

@media (min-width: 768px) {
  .play-btn svg {
    width: 32px;
    height: 32px;
  }
}

.play-btn.playing svg.play-icon {
  display: none;
}

.play-btn:not(.playing) svg.pause-icon {
  display: none;
}

.control-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--text-secondary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .control-btn {
    width: 50px;
    height: 50px;
  }
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.control-btn svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .control-btn svg {
    width: 24px;
    height: 24px;
  }
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .volume-control {
    gap: 1rem;
    padding: 1rem;
  }
}

.volume-control svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .volume-control svg {
    width: 20px;
    height: 20px;
  }
}

.volume-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  min-width: 80px;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
}

/* Stream Selector */
.stream-selector {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .stream-selector {
    margin-top: 1.5rem;
  }
}

.stream-btn {
  flex: 1;
  padding: 0.6rem 0.75rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

@media (min-width: 768px) {
  .stream-btn {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

.stream-btn.active {
  background: var(--primary);
  color: white;
}

.stream-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

/* ========================================
   SCHEDULE SECTION
   ======================================== */
.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

@media (min-width: 768px) {
  .schedule-item {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
  }
}

.schedule-item:hover {
  border-color: var(--primary);
}

@media (min-width: 768px) {
  .schedule-item:hover {
    transform: translateX(10px);
  }
}

.schedule-item.on-air {
  border-color: var(--primary);
  background: linear-gradient(90deg, rgba(255, 77, 77, 0.1) 0%, var(--bg-card) 100%);
}

.schedule-time {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .schedule-time {
    font-size: 1.1rem;
    min-width: 140px;
  }
}

.schedule-info {
  flex: 1;
}

.schedule-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .schedule-info h4 {
    font-size: 1.1rem;
  }
}

.schedule-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.schedule-badge {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .schedule-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

.schedule-badge.live {
  background: var(--primary);
  color: white;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
}

.schedule-badge.upcoming {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

/* ========================================
   DJ / TEAM SECTION
   ======================================== */
.dj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .dj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .dj-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.dj-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  position: relative;
}

@media (min-width: 768px) {
  .dj-card {
    border-radius: var(--radius-xl);
  }
}

.dj-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
  .dj-card:hover {
    transform: translateY(-10px);
  }
}

.dj-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .dj-image-container {
    height: 320px;
  }
}

.dj-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.dj-card:hover .dj-image {
  transform: scale(1.1);
}

.dj-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.dj-info {
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .dj-info {
    padding: 1.5rem;
  }
}

.dj-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .dj-name {
    font-size: 1.5rem;
  }
}

.dj-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.dj-show {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.dj-social {
  display: flex;
  gap: 0.75rem;
}

.dj-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

@media (min-width: 768px) {
  .dj-social a {
    width: 40px;
    height: 40px;
  }
}

.dj-social a:hover {
  background: var(--primary);
}

.dj-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
}

@media (min-width: 768px) {
  .dj-social svg {
    width: 20px;
    height: 20px;
  }
}

.dj-social a:hover svg {
  fill: white;
}

/* ========================================
   CHARTS SECTION
   ======================================== */
.charts-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .charts-list {
    gap: 1rem;
  }
}

.chart-item {
  display: grid;
  grid-template-columns: 40px 60px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

@media (min-width: 768px) {
  .chart-item {
    grid-template-columns: 60px 80px 1fr auto;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
  }
}

.chart-item:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

.chart-position {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .chart-position {
    font-size: 2rem;
  }
}

.chart-item:nth-child(1) .chart-position { color: var(--accent); }
.chart-item:nth-child(2) .chart-position { color: #c0c0c0; }
.chart-item:nth-child(3) .chart-position { color: #cd7f32; }

.chart-artwork {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

@media (min-width: 768px) {
  .chart-artwork {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
  }
}

.chart-info h4 {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .chart-info h4 {
    font-size: 1.1rem;
  }
}

.chart-artist {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .chart-artist {
    font-size: 0.95rem;
  }
}

.chart-meta {
  display: none;
  text-align: right;
}

@media (min-width: 768px) {
  .chart-meta {
    display: block;
  }
}

.chart-movement {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.chart-movement.up { color: #4ade80; }
.chart-movement.down { color: #f87171; }
.chart-movement.same { color: var(--text-muted); }

.chart-weeks {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========================================
   EVENTS SECTION
   ======================================== */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1200px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

@media (min-width: 768px) {
  .event-card {
    border-radius: var(--radius-xl);
  }
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.event-card.featured {
  grid-column: 1;
}

@media (min-width: 768px) {
  .event-card.featured {
    grid-column: span 2;
  }
}

.event-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .event-image {
    height: 200px;
  }
}

.event-card.featured .event-image {
  height: 220px;
}

@media (min-width: 768px) {
  .event-card.featured .event-image {
    height: 300px;
  }
}

.event-content {
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .event-content {
    padding: 1.5rem;
  }
}

.event-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .event-date {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

.event-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .event-title {
    font-size: 1.5rem;
  }
}

.event-venue {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.event-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .event-description {
    -webkit-line-clamp: 3;
  }
}

/* ========================================
   PODCASTS SECTION
   ======================================== */
.podcasts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .podcasts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .podcasts-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.podcast-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

@media (min-width: 768px) {
  .podcast-card {
    border-radius: var(--radius-xl);
  }
}

.podcast-card:hover {
  border-color: var(--primary);
}

.podcast-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .podcast-image {
    height: 200px;
  }
}

.podcast-content {
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .podcast-content {
    padding: 1.5rem;
  }
}

.podcast-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 77, 77, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .podcast-category {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
}

.podcast-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .podcast-title {
    font-size: 1.25rem;
  }
}

.podcast-host {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .podcast-host {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

.podcast-episodes {
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .podcast-episodes {
    font-size: 0.85rem;
  }
}

/* ========================================
   FORMS (Request & Contact)
   ======================================== */
.form-section {
  max-width: 700px;
  margin: 0 auto;
}

.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .form-card {
    border-radius: var(--radius-xl);
    padding: 2.5rem;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .form-group {
    margin-bottom: 1.5rem;
  }
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

@media (min-width: 768px) {
  .form-input,
  .form-textarea,
  .form-select {
    padding: 1rem 1.25rem;
  }
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 77, 77, 0.05);
}

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

@media (min-width: 768px) {
  .form-textarea {
    min-height: 150px;
  }
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23a0a0b0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-select option {
  background: var(--bg-card);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-brand {
    align-items: flex-start;
  }
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .footer-title {
    margin-bottom: 1.5rem;
  }
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .footer-links li {
    margin-bottom: 0.75rem;
  }
}

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-start;
    gap: 1rem;
  }
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

@media (min-width: 768px) {
  .footer-social a {
    width: 44px;
    height: 44px;
  }
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
}

@media (min-width: 768px) {
  .footer-social svg {
    width: 20px;
    height: 20px;
  }
}

.footer-social a:hover svg {
  fill: white;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    padding-top: 2rem;
    font-size: 0.9rem;
  }
}

/* ========================================
   STICKY PLAYER BAR
   ======================================== */
.sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 18, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  z-index: 999;
  transform: translateY(100%);
  transition: var(--transition-normal);
}

@media (min-width: 768px) {
  .sticky-player {
    padding: 1rem 2rem;
  }
}

.sticky-player.visible {
  transform: translateY(0);
}

.sticky-player-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

.sticky-now-playing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

@media (min-width: 768px) {
  .sticky-now-playing {
    gap: 1rem;
  }
}

.sticky-thumb {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sticky-thumb {
    width: 50px;
    height: 50px;
  }
}

.sticky-info {
  min-width: 0;
  overflow: hidden;
}

.sticky-info h4 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .sticky-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
}

.sticky-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .sticky-info p {
    font-size: 0.85rem;
  }
}

.sticky-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sticky-controls {
    gap: 1rem;
  }
}

.sticky-play-btn {
  width: 40px;
  height: 40px;
}

@media (min-width: 768px) {
  .sticky-play-btn {
    width: 50px;
    height: 50px;
  }
}

.sticky-controls .volume-slider {
  display: none;
  width: 80px;
}

@media (min-width: 768px) {
  .sticky-controls .volume-slider {
    display: block;
    width: 100px;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ========================================
   PLACEHOLDER IMAGES
   ======================================== */
.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2rem;
}

@media (min-width: 768px) {
  .placeholder-img {
    font-size: 3rem;
  }
}

/* Hide footer columns on mobile except brand */
@media (max-width: 767px) {
  .footer-col {
    display: none;
  }
}

@media (min-width: 768px) {
  .footer-col {
    display: block;
  }
}



/* ================================
   MOBILE NAV FIX (put at the VERY END of css/style.css)
================================ */
@media (max-width: 1023px) {
  /* Make the full-screen menu overlay solid */
  .nav-links,
  .nav-links.mobile-open {
    background: var(--bg-dark);
    background-color: var(--bg-dark);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Keep hamburger button visible/clickable above the overlay */
  .nav-links { z-index: 2000; }

  .mobile-menu-btn {
    position: relative;
    z-index: 2001;
  }
}
@media (max-width: 1023px) {
  .header:has(.nav-links.mobile-open) {
    background: var(--bg-dark);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
