/* Radio Nexus - Modern Glassmorphism 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, #667eea 0%, #764ba2 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.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.glass-btn.active {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.glass-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
/* 
Animated Background */
.animated-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, 
    #667eea 0%, 
    #764ba2 25%, 
    #f093fb 50%, 
    #f5576c 75%, 
    #4facfe 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

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

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

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

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

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

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

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

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

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-100px) rotate(180deg);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.7;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  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.9);
}

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

a:hover {
  color: rgba(255, 255, 255, 0.8);
}/* Modern
 Header */
.modern-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.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.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;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #ff6b6b;
  font-size: 0.85rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.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;
  filter: brightness(0) invert(1);
}

.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.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.header-social-main .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

.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.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 15px;
  margin: 0 5px;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}

.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 12px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}/* Fix
ed 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, #ff6b6b, #4ecdc4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.track-info {
  flex: 1;
}

.track-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

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

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

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

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

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

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

.glass-slider {
  width: 120px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  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, #ff6b6b, #4ecdc4);
  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, #ff6b6b, #4ecdc4);
  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.8);
}

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

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

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

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

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

.modern-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, #ff6b6b, #4ecdc4);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
  font-weight: 800;
}

.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;
}

.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.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  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.5);
  opacity: 1;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
}/* Conten
t 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, #ff6b6b, #ff8e53);
  padding: 15px 25px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.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;
}

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

/* Section Titles */
.section-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  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.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.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, #ff6b6b, #4ecdc4);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-content {
  padding: 25px;
}

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

.news-excerpt {
  color: rgba(255, 255, 255, 0.8);
  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.7);
}

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

.read-more {
  color: #4ecdc4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #ff6b6b;
}

/* 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.1);
  transition: all 0.3s ease;
}

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

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

.timeline-time {
  width: 100px;
  font-weight: 700;
  color: #4ecdc4;
  font-size: 1rem;
}

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

.timeline-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.1rem;
}

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

.timeline-host {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

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

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

.timeline-status.upcoming {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}/* Sidebar W
idgets */
.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.15);
}

.widget-header {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3));
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.live-pulse {
  width: 12px;
  height: 12px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* 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.1);
}

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

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.stat-info {
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

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

/* 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.1);
  transition: all 0.3s ease;
}

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

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

.track-number {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.track-details {
  flex: 1;
}

.track-name {
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: #ffffff;
}

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

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

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

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

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

.quick-news-item:hover {
  background: rgba(255, 255, 255, 0.05);
  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;
}

.quick-news-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

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

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

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

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

.sponsor-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  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;
}/* We
ekly 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;
}

.day-btn.active,
.day-btn:hover {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.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;
}

.day-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}

.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.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  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.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.program-card-day.live {
  border-color: #ff6b6b;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

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

.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, #ff6b6b, #4ecdc4);
  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(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: all 0.3s ease;
}

.program-status-overlay.live {
  background: rgba(255, 107, 107, 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(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
  backdrop-filter: blur(10px);
  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: #4ecdc4;
}

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

.program-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.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.8);
  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.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

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

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

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

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

.program-status.finished {
  background: rgba(78, 205, 196, 0.3);
  color: white;
}

.program-listen-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.program-listen-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: white;
}

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

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

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

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

.empty-day h3 {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.empty-day p {
  font-size: 0.95rem;
  margin: 0;
}/* Mult
imedia 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;
}

.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tab-content {
  display: none;
}

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

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

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

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

.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: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.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;
}

.media-info {
  padding: 25px;
}

.media-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
}

.media-description {
  color: rgba(255, 255, 255, 0.8);
  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.7);
}

/* 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, #ff6b6b, #4ecdc4);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

.sponsor-logo {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  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, #ff6b6b, #4ecdc4);
  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;
}

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

.sponsor-contact {
  background: rgba(255, 255, 255, 0.05);
  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.9);
}

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

.contact-item i {
  color: #4ecdc4;
  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, #ff6b6b, #4ecdc4);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.sponsor-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  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.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  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;
}/* Modern 
Footer */
.modern-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;
}

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

.footer-brand h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 800;
}

.footer-brand img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  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.1);
  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(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social .social-links a:hover {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.footer-links a:before {
  content: "▶";
  font-size: 0.7rem;
  color: #ff6b6b;
  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.8);
  font-weight: 500;
}

.footer-info i {
  color: #4ecdc4;
  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.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  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.15);
  border-color: rgba(255, 255, 255, 0.4);
}

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

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

.newsletter-submit:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

.footer-meta {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 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, #ff6b6b, #4ecdc4);
  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: 'Space Grotesk', sans-serif;
}

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

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  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.8);
  margin: 0;
  font-size: 1.1rem;
}

/* Newsletter Modal - Styles moved to main modal section */

.modal-content {
  max-width: 500px;
  width: 90%;
  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: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: scale(1.1);
}

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

.modal-header h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}

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

.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, #ff6b6b, #4ecdc4);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form-modal button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.loading-skeleton {
  width: 80%;
  height: 250px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 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.1);
  border-radius: 20px;
  animation: loading 1.5s infinite;
}/* Respons
ive 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));
  }
  
  .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;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    border-radius: 0 0 20px 20px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .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;
  }
  
  .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;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .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;
  }
  
  .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;
  }
}

@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: 30px 20px;
    margin: 20px 10px;
  }
  
  .tab-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  

  
  .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;
    border-radius: 15px;
  }
  
  /* Mejorar navegación móvil */
  .nav-menu.active {
    padding: 20px 0;
  }
  
  .nav-menu.active .nav-link {
    padding: 15px 25px;
    margin: 0 15px 5px;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }
  
  /* Mejorar botón de menú móvil */
  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .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 cards en móviles */
  .news-card,
  .media-card,
  .program-card {
    margin-bottom: 15px;
    border-radius: 15px;
  }
  
  /* Mejorar modales en móviles */
  .modal-content {
    border-radius: 20px;
  }
  
  .modal-header h2,
  .modal-header h3 {
    line-height: 1.3;
  }
}

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

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .floating-shapes {
    display: none;
  }
  
  .bg-gradient {
    animation: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }
}
/* Moda
l Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.4));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  font-size: 18px;
}

.modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 30px;
}

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

.news-modal-category {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.news-modal-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #ffffff;
}

.news-modal-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.news-modal-views i {
  margin-right: 5px;
}

.news-modal-image {
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
}

.news-modal-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

.news-modal-actions {
  display: flex;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-modal-actions .glass-btn {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.primary-share-btn {
  background: linear-gradient(135deg, #4ecdc4, #44a08d) !important;
  color: white !important;
  font-weight: 600;
  padding: 15px 25px !important;
  font-size: 15px !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
  transition: all 0.3s ease;
}

.primary-share-btn:hover {
  background: linear-gradient(135deg, #44a08d, #4ecdc4) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
}

.share-options {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  animation: slideDown 0.3s ease;
}

.share-option {
  padding: 10px 15px !important;
  font-size: 13px !important;
  min-width: auto;
  flex: 1;
  justify-content: center;
  transition: all 0.3s ease;
}

.share-option:hover {
  transform: translateY(-2px);
}

.share-option:nth-child(1) {
  background: linear-gradient(135deg, #3b5998, #4267B2);
  color: white;
}

.share-option:nth-child(2) {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
  color: white;
}

.share-option:nth-child(3) {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.share-option:nth-child(4) {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Podcast Modal Specific Styles */
.podcast-modal-content {
  max-width: 700px;
}

.podcast-modal-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #9c88ff, #8c7ae6);
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.podcast-modal-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #ffffff;
}

.podcast-modal-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  flex-wrap: wrap;
}

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

.podcast-modal-image {
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.podcast-modal-image img {
  width: 100%;
  height: auto;
  display: block;
}

.podcast-modal-player {
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
}

.podcast-modal-player audio {
  width: 100%;
  height: 50px;
  border-radius: 10px;
}

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

.podcast-modal-actions {
  display: flex;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.podcast-modal-actions .glass-btn {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* Videocast Modal Specific Styles */
.videocast-modal-content {
  max-width: 1000px;
}

.videocast-modal-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff9ff3, #f368e0);
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.videocast-modal-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #ffffff;
}

.videocast-modal-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  flex-wrap: wrap;
}

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

.videocast-modal-player {
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 400px;
}

.videocast-modal-player video,
.videocast-modal-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}

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

.videocast-modal-actions {
  display: flex;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.videocast-modal-actions .glass-btn {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* Improved Card Buttons */
.read-more-btn,
.media-action-btn {
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
}

.read-more-btn:hover,
.media-action-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.read-more-btn i,
.media-action-btn i {
  font-size: 12px;
}

/* Play button for media cards */
.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
  .modal-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 20px 20px 15px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .news-modal-title,
  .podcast-modal-title,
  .videocast-modal-title {
    font-size: 20px;
  }
  
  .news-modal-meta,
  .podcast-modal-meta,
  .videocast-modal-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .news-modal-actions,
  .podcast-modal-actions,
  .videocast-modal-actions {
    flex-direction: column;
  }
  
  .videocast-modal-player {
    min-height: 250px;
  }
  
  .videocast-modal-player video,
  .videocast-modal-player iframe {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 10px;
  }
  
  .modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}