/* Radio Pulse - Dynamic Grey Theme */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #4a5568 50%, #2d3748 75%, #1a202c 100%);
  color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Glassmorphism Base Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Glass Buttons */
.glass-btn {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
}

.glass-btn.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Button Ripple Effect */
.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.glass-btn:active .btn-ripple {
  width: 300px;
  height: 300px;
}

/* Glass Inputs */
.glass-input {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  color: #ffffff;
  padding: 12px 18px;
  outline: none;
  transition: all 0.3s ease;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Dynamic Background */
.dynamic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    #2c3e50 0%, 
    #34495e 20%, 
    #4a5568 40%, 
    #2d3748 60%, 
    #1a202c 80%, 
    #2c3e50 100%);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: particleFloat 25s infinite linear;
}

.particle-1 {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 80%;
  animation-delay: -5s;
}

.particle-3 {
  width: 3px;
  height: 3px;
  top: 80%;
  left: 20%;
  animation-delay: -10s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  top: 30%;
  left: 70%;
  animation-delay: -15s;
}

.particle-5 {
  width: 2px;
  height: 2px;
  top: 10%;
  left: 50%;
  animation-delay: -7s;
}

.particle-6 {
  width: 4px;
  height: 4px;
  top: 70%;
  left: 30%;
  animation-delay: -12s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-50px) translateX(25px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-100px) translateX(-25px) rotate(180deg);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-50px) translateX(25px) rotate(270deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0px) translateX(0px) rotate(360deg);
    opacity: 0.7;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Dynamic Header */
.dynamic-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 2rem;
}

.header-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.header-top {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.date-weather {
  display: flex;
  align-items: center;
  gap: 20px;
}

.current-date {
  font-weight: 500;
  font-size: 0.9rem;
  font-family: 'JetBrains Mono', monospace;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #e74c3c;
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

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

.header-main {
  position: relative;
  padding: 20px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-section img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.header-social-main .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.header-social-main .social-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Navigation */
.main-navigation {
  position: relative;
}

.nav-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-menu {
  position: relative;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 15px;
  margin: 0 5px;
  overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #95a5a6, #bdc3c7);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-link.active .nav-indicator {
  transform: translateX(-50%) scaleX(1);
}

.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  padding: 12px;
  transition: all 0.3s ease;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Fixed Audio Player */
.fixed-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.3s ease;
  margin: 20px;
  border-radius: 20px;
}

.fixed-player.collapsed {
  transform: translateY(calc(100% - 70px));
}

.player-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.now-playing {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.track-artwork {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.track-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.default-artwork {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}

.artwork-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  animation: artworkShine 3s infinite;
}

@keyframes artworkShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.track-info {
  flex: 1;
}

.track-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-family: 'JetBrains Mono', monospace;
}

.track-artist {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 25px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.control-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.volume-control i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.glass-slider {
  width: 120px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.glass-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.glass-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.player-stats {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'JetBrains Mono', monospace;
}

.player-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.player-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.player-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* Main Content */
.dynamic-main {
  margin-bottom: 120px; /* Space for fixed player */
}

.dynamic-section {
  display: none;
  padding: 40px 0;
}

.dynamic-section.active {
  display: block;
}

/* Hero Section */
.hero-section {
  padding: 40px 0;
  margin-bottom: 3rem;
}

.hero-carousel-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.hero-swiper {
  border-radius: 25px;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 50px;
}

.hero-category {
  display: inline-block;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: 'JetBrains Mono', monospace;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}

.hero-excerpt {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.9rem;
  opacity: 0.8;
  font-family: 'JetBrains Mono', monospace;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: 600;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
}

/* Content Grid */
.content-grid {
  padding: 0 0 40px;
}

.grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.main-content {
  min-width: 0;
}

/* Breaking News Ticker */
.breaking-news {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.breaking-label {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  padding: 15px 25px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
}

.breaking-ticker {
  flex: 1;
  overflow: hidden;
  padding: 15px 0;
}

.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  padding-left: 20px;
  font-family: 'JetBrains Mono', monospace;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Section Titles */
.section-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  position: relative;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  align-items: center;
  gap: 20px;
}

.title-text {
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line {
  flex: 1;
  height: 4px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  border-radius: 2px;
}

/* News Cards */
.news-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  width: 100%;
}

.news-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.news-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.25);
}

.news-card.featured {
  grid-column: span 2;
}

.news-card.featured .news-image {
  height: 300px;
}

.news-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.news-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

.news-content {
  padding: 25px;
}

.news-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.news-excerpt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'JetBrains Mono', monospace;
  gap: 15px;
  flex-wrap: wrap;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  overflow: hidden;
}

.read-more:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(149, 165, 166, 0.4);
}

.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(3px);
}

/* Programs Timeline */
.programs-timeline {
  border-radius: 20px;
  padding: 30px;
}

.timeline-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.03);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 15px;
}

.timeline-time {
  width: 100px;
  font-weight: 700;
  color: #bdc3c7;
  font-size: 1rem;
  font-family: 'JetBrains Mono', monospace;
}

.timeline-content {
  flex: 1;
  margin-left: 25px;
}

.timeline-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.1rem;
  font-family: 'JetBrains Mono', monospace;
}

.timeline-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.timeline-host {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
}

.timeline-status {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

.timeline-status.live {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  animation: pulse 2s infinite;
}

.timeline-status.next {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
}

.timeline-status.upcoming {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* Sidebar Widgets */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

.widget {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.widget:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.widget-header {
  background: linear-gradient(135deg, rgba(149, 165, 166, 0.3), rgba(189, 195, 199, 0.3));
  backdrop-filter: blur(15px);
  color: white;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
}

.live-pulse {
  width: 12px;
  height: 12px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

/* Stats Widget */
.stats-content {
  padding: 25px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  position: relative;
  overflow: hidden;
}

.icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: iconGlow 3s infinite;
}

@keyframes iconGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.stat-info {
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: 'JetBrains Mono', monospace;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Tracks Widget */
.tracks-list {
  padding: 25px;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.track-item:last-child {
  border-bottom: none;
}

.track-item:hover {
  background: rgba(255, 255, 255, 0.03);
  margin: 0 -25px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 15px;
}

.track-number {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.track-details {
  flex: 1;
}

.track-name {
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
}

.track-artist {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.track-time {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'JetBrains Mono', monospace;
}

/* Quick News Widget */
.quick-news-list {
  padding: 25px;
}

.quick-news-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.quick-news-item:last-child {
  border-bottom: none;
}

.quick-news-item:hover {
  background: rgba(255, 255, 255, 0.03);
  margin: 0 -25px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 15px;
}

.quick-news-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #ffffff;
  line-height: 1.4;
  font-family: 'JetBrains Mono', monospace;
}

.quick-news-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'JetBrains Mono', monospace;
}

/* Sponsors Carousel */
.sponsors-carousel {
  padding: 25px;
}

.sponsors-swiper .swiper-slide {
  text-align: center;
  padding: 15px;
}

.sponsor-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.sponsor-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.sponsor-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sponsor-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
}
/* Weekl
y Schedule Navigation */
.weekly-schedule-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  padding: 25px;
  border-radius: 25px;
}

.day-btn {
  padding: 15px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  overflow: hidden;
}

.day-btn.active,
.day-btn:hover {
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.programs-by-day {
  margin-bottom: 60px;
}

.day-programs {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

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

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

.day-title {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  width: 100%;
}

.program-card-day {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.program-card-day:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.program-card-day.live {
  border-color: #e74c3c;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.program-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card-day:hover .program-image img {
  transform: scale(1.1);
}

.program-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3.5rem;
  opacity: 0.8;
}

.program-status-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: all 0.3s ease;
  font-family: 'JetBrains Mono', monospace;
}

.program-status-overlay.live {
  background: rgba(231, 76, 60, 0.9);
  color: white;
  opacity: 1;
  animation: pulse 2s infinite;
}

.program-status-overlay.live i {
  margin-right: 6px;
  animation: pulse 1s infinite;
}

.program-header {
  background: linear-gradient(135deg, rgba(149, 165, 166, 0.2), rgba(189, 195, 199, 0.2));
  backdrop-filter: blur(15px);
  color: white;
  padding: 25px;
  position: relative;
}

.program-time {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #bdc3c7;
  font-family: 'JetBrains Mono', monospace;
}

.program-time i {
  color: #e74c3c;
}

.program-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: 'JetBrains Mono', monospace;
}

.program-host {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.program-content {
  padding: 25px;
}

.program-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.program-tag {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}

.program-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.program-status {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

.program-status.live {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.program-status.next {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
}

.program-status.upcoming {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.program-status.finished {
  background: rgba(149, 165, 166, 0.3);
  color: white;
}

.program-listen-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  overflow: hidden;
}

.program-listen-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: white;
}

.program-listen-btn.disabled {
  background: rgba(255, 255, 255, 0.15);
  cursor: not-allowed;
  transform: none;
}

.program-listen-btn.disabled:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: none;
  box-shadow: none;
}

/* Empty State */
.empty-day {
  text-align: center;
  padding: 80px 20px;
  color: rgba(255, 255, 255, 0.6);
}

.empty-day i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 25px;
}

.empty-day h3 {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'JetBrains Mono', monospace;
}

.empty-day p {
  font-size: 0.95rem;
  margin: 0;
}

/* Multimedia Tabs */
.multimedia-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 25px;
  border-radius: 25px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  overflow: hidden;
}

.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Media Grids */
.media-grid,
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
}

/* Simple cards grid adjustment */
.media-grid.simple-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.media-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.media-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.media-thumbnail {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.media-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.media-card:hover .media-thumbnail img {
  transform: scale(1.1);
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.play-btn {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.play-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #bdc3c7, #ecf0f1);
}

.play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.play-btn:hover::before {
  width: 100%;
  height: 100%;
}

.play-btn i {
  position: relative;
  z-index: 1;
  margin-left: 3px;
}

.media-duration {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}

.media-info {
  padding: 25px;
}

.media-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.media-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.media-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'JetBrains Mono', monospace;
  gap: 15px;
  flex-wrap: wrap;
}

.media-meta .read-more {
  font-size: 0.8rem;
  padding: 8px 16px;
}

/* Simple Media Cards */
.media-card.simple-card {
  transition: all 0.3s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.media-card.simple-card:hover {
  transform: translateY(-8px);
}

.media-card.simple-card .media-thumbnail {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 220px;
}

.media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  opacity: 0.8;
}

.simple-info {
  padding: 25px;
  text-align: center;
}

.simple-info .media-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

/* News Grid Container */
.news-grid-container {
  border-radius: 25px;
  padding: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
}

.load-more-container {
  text-align: center;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  overflow: hidden;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Sponsor Cards */
.sponsor-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.sponsor-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sponsor-logo {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 25px;
  overflow: hidden;
}

.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 25px;
  transition: transform 0.4s ease;
}

.sponsor-card:hover .sponsor-logo img {
  transform: scale(1.1);
}

.sponsor-logo-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  opacity: 0.8;
}

.sponsor-info {
  padding: 0 30px 30px;
  text-align: center;
}

.sponsor-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
}

.sponsor-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.sponsor-contact {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  color: #bdc3c7;
  width: 18px;
  text-align: center;
}

.sponsor-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.sponsor-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-family: 'JetBrains Mono', monospace;
}

.sponsor-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: white;
}

.sponsor-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-btn:hover {
  color: white;
  transform: translateY(-3px);
}

.social-btn.facebook:hover {
  background: #1877f2;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.youtube:hover {
  background: #ff0000;
}

.social-btn.tiktok:hover {
  background: #000000;
}

.social-btn.twitter:hover {
  background: #1da1f2;
}

.social-btn.whatsapp:hover {
  background: #25d366;
}

/* Dynamic Footer */
.dynamic-footer {
  margin-top: 80px;
  border-radius: 25px 25px 0 0;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  border-radius: 2px;
}

.footer-brand h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}

.footer-brand img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 25px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  margin-top: 30px;
}

.footer-social .social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social .social-links a {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social .social-links a:hover {
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.footer-links a:hover {
  color: #bdc3c7;
  transform: translateX(10px);
}

.footer-links a:before {
  content: "▶";
  font-size: 0.7rem;
  color: #95a5a6;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover:before {
  opacity: 1;
}

.footer-info p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-info i {
  color: #bdc3c7;
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  color: #ffffff;
  outline: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-submit {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.newsletter-submit:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
}

.footer-meta {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-family: 'JetBrains Mono', monospace;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #4a5568 50%, #2d3748 75%, #1a202c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 30px;
  animation: pulse 2s infinite;
  position: relative;
  overflow: hidden;
}

.loading-logo-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}

.logo-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  animation: logoShine 2s infinite;
}

@keyframes logoShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.loading-content h2 {
  color: white;
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}

.loading-progress {
  width: 350px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto 25px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  width: 0%;
  animation: progress 3s ease-in-out;
}

@keyframes progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.loading-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 1.1rem;
}

/* Modal System */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border-radius: 25px;
  padding: 40px;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  transform: scale(1.1);
  background: rgba(231, 76, 60, 0.8);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2,
.modal-header h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.3;
}

.modal-header p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* News Modal Specific */
.news-modal-content {
  max-width: 800px;
}

.news-modal-category {
  display: inline-block;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
}

.news-modal-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  flex-wrap: wrap;
}

.news-modal-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-modal-image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 30px;
}

.news-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-modal-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.news-modal-content p {
  margin-bottom: 20px;
}

.news-modal-content h3,
.news-modal-content h4 {
  color: #ffffff;
  margin: 30px 0 15px;
  font-family: 'JetBrains Mono', monospace;
}

/* Media Modal Specific */
.media-modal-content {
  max-width: 900px;
}

.media-modal-category {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
}

.media-modal-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  font-family: 'JetBrains Mono', monospace;
  flex-wrap: wrap;
}

.media-modal-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.media-modal-player {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.media-player-artwork {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 25px;
  border-radius: 20px;
  overflow: hidden;
}

.media-player-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-player-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-player-artwork:hover .media-player-controls {
  opacity: 1;
}

.media-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.media-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.media-progress-container {
  margin-top: 20px;
}

.media-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
  cursor: pointer;
}

.media-progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 4px;
}

.media-time-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'JetBrains Mono', monospace;
}

.video-player {
  padding: 0;
  background: transparent;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 450px;
}

.video-player video,
.video-player iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
}

.media-modal-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 30px;
}

.media-modal-description p {
  margin-bottom: 15px;
}

/* Modal Actions */
.news-modal-actions,
.media-modal-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.share-btn,
.download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  overflow: hidden;
}

.share-btn:hover,
.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.download-btn {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}

/* Newsletter Modal */
.newsletter-form-modal {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newsletter-form-modal input {
  padding: 18px 25px;
  font-size: 1rem;
  border-radius: 25px;
}

.newsletter-form-modal button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #95a5a6, #bdc3c7);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  overflow: hidden;
}

.newsletter-form-modal button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Loading Skeletons */
.loading-slide {
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-skeleton {
  width: 80%;
  height: 250px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.08) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 15px;
}

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

.loading-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.news-card-skeleton {
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  animation: loading 1.5s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  .grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .news-card.featured {
    grid-column: span 1;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .news-masonry,
  .news-grid,
  .media-grid,
  .sponsors-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .media-grid.simple-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  
  .programs-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  
  .header-main .container {
    flex-direction: column;
    gap: 15px;
  }
  
  .header-actions {
    display: none !important;
  }
  
  .header-social-main {
    display: none !important;
  }
  
  .header-social-main .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 1001;
    border-radius: 0 0 20px 20px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .player-content {
    flex-direction: row;
    gap: 15px;
    padding: 12px 15px;
    align-items: center;
  }
  
  .now-playing {
    flex: 1;
    min-width: 0;
  }
  
  .player-controls {
    flex-shrink: 0;
  }
  
  /* Ocultar elementos innecesarios en móvil */
  .volume-control,
  .player-stats,
  .player-toggle {
    display: none !important;
  }
  
  /* Asegurar que el player siempre esté visible y no colapsado en móvil */
  .fixed-player {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .fixed-player.collapsed {
    transform: translateY(0) !important;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: 30px 20px;
  }
  
  .content-grid {
    padding: 20px 0;
  }
  
  .grid-layout {
    gap: 20px;
  }
  
  .news-masonry,
  .news-grid,
  .media-grid,
  .sponsors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .media-grid.simple-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-meta,
  .media-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .read-more {
    align-self: flex-end;
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  
  .multimedia-tabs {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .weekly-schedule-nav {
    gap: 10px;
    padding: 20px;
  }
  
  .day-btn {
    padding: 12px 18px;
    font-size: 0.85rem;
  }
  
  .day-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 15px;
  }
  
  .program-image {
    height: 180px;
  }
  
  .program-image-placeholder {
    font-size: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-content {
    gap: 40px;
  }
  
  .footer-section h4 {
    font-size: 1.2rem;
  }
  
  .breaking-news {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .breaking-ticker {
    padding: 10px 0;
  }
  
  .section-title {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .title-line {
    width: 100px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 5px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .header-top {
    padding: 8px 0;
  }
  
  .header-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .date-weather {
    gap: 15px;
  }
  
  .hero-content {
    padding: 20px 15px;
  }
  
  .hero-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .content-grid {
    padding: 15px 0;
  }
  
  .widget {
    margin-bottom: 20px;
  }
  
  .modal-content {
    padding: 25px 15px;
    margin: 10px;
    max-height: 95vh;
  }
  
  .news-modal-content,
  .media-modal-content {
    max-width: 100%;
  }
  
  .modal-header h2,
  .modal-header h3 {
    font-size: 1.4rem;
  }
  
  .news-modal-meta,
  .media-modal-meta {
    flex-direction: column;
    gap: 15px;
  }
  
  .media-player-artwork {
    width: 250px;
    height: 250px;
  }
  
  .media-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .media-grid.simple-grid {
    grid-template-columns: 1fr;
  }
  
  .simple-info .media-title {
    font-size: 1rem;
  }
  
  .news-modal-actions,
  .media-modal-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .video-player {
    min-height: 250px;
  }
  
  .video-player video,
  .video-player iframe {
    min-height: 250px;
  }
  
  .share-btn,
  .download-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .tab-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  /* Mejorar navegación móvil */
  .nav-menu {
    animation: slideUp 0.3s ease-out forwards;
  }
  
  .nav-menu.active {
    padding: 15px 0;
    animation: slideDown 0.3s ease-out forwards;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideUp {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-30px);
    }
  }
  
  .nav-menu.active .nav-link {
    padding: 18px 25px;
    margin: 8px 15px;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
  }
  
  .nav-menu.active .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .nav-menu.active .nav-link:hover::before {
    left: 100%;
  }
  
  .nav-menu.active .nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .nav-menu.active .nav-link:active {
    transform: translateX(8px) scale(0.98);
  }
  
  .nav-menu.active .nav-link.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu.active .nav-link i {
    font-size: 1.2rem;
    margin-right: 12px;
    transition: transform 0.3s ease;
  }
  
  .nav-menu.active .nav-link:hover i {
    transform: scale(1.2) rotate(5deg);
  }
  
  .nav-menu.active .nav-link span {
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  
  .nav-menu.active .nav-indicator {
    display: none;
  }
  
  /* Mejorar botón de menú móvil */
  .mobile-menu-toggle {
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
  }
  
  .mobile-menu-toggle:hover::before {
    width: 100%;
    height: 100%;
  }
  
  .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .mobile-menu-toggle:active {
    transform: scale(0.95);
  }
  
  .mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1px;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Mejorar sidebar en móviles */
  .sidebar .widget {
    margin-bottom: 15px;
  }
  
  .widget-header h3 {
    font-size: 1.1rem;
  }
  
  /* Mejorar reproductor fijo en móviles */
  .fixed-player {
    margin: 10px;
    border-radius: 15px;
  }
  
  .player-content {
    gap: 15px;
  }
  
  /* Mejorar hero carousel en móviles */
  .hero-carousel-container {
    margin-bottom: 20px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px;
  }
  
  .glass-slider {
    width: 100px;
  }
  
  .program-image {
    height: 150px;
  }
  
  .program-image-placeholder {
    font-size: 2rem;
  }
  
  .program-status-overlay {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  
  .weekly-schedule-nav {
    gap: 8px;
    padding: 15px;
  }
  
  .day-btn {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .day-title {
    font-size: 1.8rem;
  }
  
  .fixed-player {
    margin: 10px;
  }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
  .glass-effect {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.08);
  }
  
  .glass-btn {
    background: rgba(0, 0, 0, 0.15);
  }
  
  .glass-input {
    background: rgba(0, 0, 0, 0.15);
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .glass-effect {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  .glass-btn {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .floating-particles {
    display: none;
  }
  
  .bg-gradient {
    animation: none;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  }
  
  .grid-pattern {
    animation: none;
  }
}


/* Store Section */
.store-section {
  padding: 80px 0;
  margin-top: 60px;
}

.store-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px;
  align-items: center;
}

.store-images {
  position: relative;
}

.store-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}

.store-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.store-image:hover img {
  transform: scale(1.1);
}

.store-image-1 {
  grid-column: 1 / 3;
}

.store-image-2 {
  grid-column: 1 / 2;
}

.store-image-3 {
  grid-column: 2 / 3;
}

.image-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(139, 92, 246, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.store-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.store-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.store-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.store-btn i {
  transition: transform 0.3s ease;
}

.store-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Store Section */
@media (max-width: 968px) {
  .store-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  
  .store-title {
    font-size: 36px;
  }
  
  .store-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .store-section {
    padding: 60px 0;
    margin-top: 40px;
  }
  
  .store-content {
    padding: 30px;
  }
  
  .store-image-grid {
    gap: 15px;
  }
  
  .store-title {
    font-size: 32px;
  }
  
  .store-description {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .store-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .image-label {
    font-size: 11px;
    padding: 6px 12px;
    top: 15px;
    left: 15px;
  }
}

@media (max-width: 480px) {
  .store-section {
    padding: 40px 0;
  }
  
  .store-content {
    padding: 20px;
    gap: 30px;
  }
  
  .store-image-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .store-image-1,
  .store-image-2,
  .store-image-3 {
    grid-column: 1 / 2;
  }
  
  .store-title {
    font-size: 28px;
  }
  
  .store-description {
    font-size: 14px;
  }
  
  .store-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}
