/* ==========================================================================
   Powerline Radio - Modern Music Experience
   CSS Styles - Optimized for Performance
   ========================================================================== */

/* -----------------------------
   CSS Variables
   ----------------------------- */
   :root {
    /* Updated Color Scheme - Vibrant Blue Palette */
    --color-primary: #2962ff;         /* Vibrant primary blue */
    --color-primary-dark: #0039cb;    /* Deep, saturated blue */
    --color-secondary: #00c3ff;       /* Bright cyan/aqua accent */
    --color-text: #333;
    --color-text-light: #777;
    --color-bg: #fff;
    --color-bg-alt: #f8f9fa;
    --color-border: #eaeaea;
    --color-success: #38b65c;
    
    /* Gradients - Updated to vibrant blues */
    --gradient-primary: linear-gradient(135deg, #2962ff 0%, #0091ea 100%);
    
    /* RGB values for opacity and effects */
    --color-primary-rgb: 41, 98, 255;
    --color-bg-rgb: 255, 255, 255;
    --color-text-rgb: 51, 51, 51;
    
    /* Keep other existing variables the same */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --header-height: 80px;
    --player-height: 120px;
    --container-width: 1200px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --section-spacing: 80px;
  
    --scrollbar-track: var(--color-bg-alt);
    --scrollbar-thumb: var(--color-primary);
    --scrollbar-thumb-hover: var(--color-primary-dark);
    --scrollbar-width: 8px;
  }
  
  /* Dark Theme - Updated to blue tones */
  [data-theme="dark"] {
    --color-text: #eaeaea;
    --color-text-light: #aaa;
    --color-bg: #121212;
    --color-bg-alt: #1e1e1e;
    --color-border: #333;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --color-bg-rgb: 18, 18, 18;
    --color-text-rgb: 234, 234, 234;
    --color-primary-rgb: 41, 98, 255;
    
    /* In dark mode, make gradients even more vibrant */
    --gradient-primary: linear-gradient(135deg, #2962ff 0%, #00b0ff 100%);
  }
  
  /* For Webkit browsers (Chrome, Safari, etc.) */
  ::-webkit-scrollbar {
    width: var(--scrollbar-width);
    height: var(--scrollbar-width);
  }
  
  ::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track);
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
  }
  
  /* For Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--scrollbar-track);
  }
  
  /* Dark theme adjustments */
  [data-theme="dark"] {
    --scrollbar-track: #1e1e1e;
  }
  
  /* Make sure mobile scrolling feels smooth */
  @media (max-width: 767px) {
    html, body {
      -webkit-overflow-scrolling: touch;
    }
  }
  
  /* -----------------------------
     Base Styles
     ----------------------------- */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden; /* Prevent horizontal scrolling */
    transition: background-color var(--transition-normal);
    padding-bottom: var(--player-height);
    width: 100%;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  a:hover {
    color: var(--color-primary-dark);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  ul {
    list-style: none;
  }
  
  button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
  }
  
  input, button, textarea, select {
    font: inherit;
  }
  
  /* -----------------------------
     Utility Classes
     ----------------------------- */
  .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box; /* Ensure padding is included in width */
  }
  
  .text-center {
    text-align: center;
  }
  
  .hidden {
    display: none !important;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.4rem;
  }
  
  /* Update buttons and active elements with vibrant effects */
  .btn-primary {
    background: var(--gradient-primary);
    color: var(--color-bg);
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 75%);
    z-index: -1;
    transform: translateY(-100%);
    transition: transform 0.6s ease;
  }
  
  .btn-primary:hover::before {
    transform: translateY(0);
  }
  
  .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.6);
  }
  
  
  .btn-secondary {
    background-color: var(--color-secondary);
    color: #fff;
  }
  
  .btn-secondary:hover {
    background-color: #3755e0;
    color: #fff;
  }
  
  .btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
  }
  
  .btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
  }
  
  /* -----------------------------
     Preloader
     ----------------------------- */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    will-change: opacity, visibility;
  }
  
  .preloader.loaded {
    opacity: 0;
    visibility: hidden;
  }
  
  .loader {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .loader svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    transform: translateZ(0);
  }
  
  .loader circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
  }
  
  .loader .track {
    stroke: var(--color-border);
  }
  
  .loader .progress {
    stroke: var(--color-primary);
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: progress 1s ease-in-out forwards;
  }
  
  .loader span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--color-primary);
  }
  
  @keyframes progress {
    to {
        stroke-dashoffset: 0;
    }
  }
  

  /* -----------------------------
     Hero Section
     ----------------------------- */
  .hero {
    height: 100vh;
    max-height: 800px;
  /*  margin-top: var(--header-height);*/
  }
  
  .hero-slider {
    height: 100%;
  }
  
  .hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 550px;
  }
  
  .hero-text h2 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  
  .hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    border-radius: 0 0 0 var(--border-radius-lg);
    overflow: hidden;
  }
  
  .hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg, 
      var(--color-bg) 0%, 
      rgba(var(--color-bg-rgb, 255, 255, 255), 0.8) 20%, 
      rgba(var(--color-bg-rgb, 255, 255, 255), 0) 100%
    );
  }
  
  .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
    background-color: transparent;
    border: 2px solid var(--color-primary);
    opacity: 1;
  }
  
  .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: var(--color-primary);
  }
  
  /* Hide hero slider arrows on mobile */
  @media (max-width: 767px) {
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
      display: none; /* Hide navigation arrows on mobile */
    }
  }
  /*coming soon hero*/
  /* Coming Soon Section Styling */
  .coming-soon-text {
      margin-bottom: 30px;
  }
  
  
  .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
  }
  
  .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }
  
  .contact-btn i {
      font-size: 18px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
      .countdown {
          gap: 10px;
      }
      
      .countdown-item {
          min-width: 60px;
          padding: 8px;
      }
      
      .countdown-item span:first-child {
          font-size: 22px;
      }
      
      .countdown-item span:last-child {
          font-size: 12px;
      }
  }
  /* -----------------------------
     Section Styles
     ----------------------------- */
  section {
    padding: var(--section-spacing) 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 3.6rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
  }
  
  .section-header p {
    font-size: 1.8rem;
    color: var(--color-text-light);
  }
  
  /* Now Playing */
  .now-playing {
    padding: var(--section-spacing) 0;
    background-color: var(--color-bg-alt);
  }
  
  .now-playing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .now-playing-show {
    background-color: var(--color-bg);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .show-image {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: visible;
    aspect-ratio: 1;
  }
  
  .show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: var(--border-radius-md);
  }
  
  .show-image:hover img {
    transform: scale(1.05);
  }
  
  .live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .live-badge .pulse {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
  }
  
  .show-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 600;
  }
  
  .show-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .show-meta p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-light);
    font-size: 1.1rem;
  }
  
  .show-meta i {
    color: var(--color-primary);
    font-size: 1.2rem;
  }
  
  .now-playing-track {
    background-color: var(--color-bg);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
  }
  
  .track-header {
    margin-bottom: 1.5rem;
  }
  
  .track-header h4 {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
  }
  
  .track-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .track-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
  }
  
  .track-artist {
    color: var(--color-text-light);
  }
  
  .track-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  #listen-live-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all var(--transition-fast);
  }
  
  #listen-live-btn.playing {
    background-color: var(--color-primary-dark);
  }
  
  #listen-live-btn.playing:hover {
    background-color: var(--color-primary-darker);
  }
  
  #share-track-btn {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
  }
  
  @media (min-width: 768px) {
    .now-playing-grid {
        grid-template-columns: 1fr 1fr;
    }
  }
  
  @keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
    }
    70% {
        transform: scale(1.2);
        opacity: 0.3;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
    }
  }
  
  /* Featured Tracks */
  .tracks-slider {
    padding-bottom: 5rem;
    overflow: visible;
  }
  
  /* Update these styles for track-card */
  .track-card {
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  
  
  .track-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  /* Update these styles for track-img */
  .track-img {
    cursor: pointer;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  
  .track-img:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  }
  
  /* Preserve rotation while hovering when playing */
  .audio-player.playing .track-img:hover {
    animation: track-rotate 20s infinite linear;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  }
  
  .track-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Add a subtle indicator that the album art is clickable */
  .track-img::after {
    content: '\f065'; /* Font Awesome expand icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 1.2rem;
    color: white;
    background: rgba(var(--color-primary-rgb), 0.8);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
  }
  
  .track-img:hover::after {
    opacity: 1;
  }
  
  /* Make sure live indicator is visible */
  .current-time {
    color: inherit;
    font-weight: normal;
  }
  
  .current-time:not(:empty) {
    color: var(--color-primary);
    font-weight: 600;
  }
  
  /* Optional: Add a live indicator badge */
  .audio-player.playing .track-img.live-stream::before {
    content: 'LIVE';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-primary);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    z-index: 2;
  }
  
  .track-card:hover .track-img img {
    transform: scale(1.1);
  }
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    opacity: 1;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    border: none;
    z-index: 2;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--color-primary-dark);
}

.track-card:hover .play-btn,
.podcast-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.track-info {
    padding-top: 1.5rem;
    flex-grow: 1; /* Fill available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.track-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    /* Prevent text overflow */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-info p {
    color: var(--color-text-light);
    font-size: 1.3rem;
    /* Prevent text overflow */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stats Section */
.stats {
    background-color: var(--color-bg-alt);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.8rem;
    box-shadow: var(--shadow-md);
}

.stat-counter {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.stat-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

/* Podcasts Section */
.podcasts-slider {
    padding-bottom: 5rem;
    overflow: visible;
}

.podcast-card {
    cursor: grab;
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    height: 100%; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(var(--color-border-rgb), 0.1);
    max-width: 90%;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--color-primary-rgb), 0.3);
}

.podcast-img {
    position: relative;
    aspect-ratio: 1/1; /* Square aspect ratio */
    max-height: 220px; /* Cap height */
    overflow: hidden;
    min-width: 250px;
    min-height: 250px;
    align-self: center;
}

.podcast-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 40%);
    z-index: 1;
    opacity: 0.7;
    transition: opacity var(--transition-normal);
}

.podcast-card:hover .podcast-img:before {
    opacity: 0.9;
}

.podcast-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

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

.episode {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 1rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.podcast-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--color-bg);
    border-top: 1px solid rgba(var(--color-border-rgb), 0.05);
}

.podcast-info h3 {
    /*font-size: 1.6rem;*/
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--color-text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
    text-align:center;
    letter-spacing: -0.01em;
}

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

.podcast-host,
.podcast-duration {
    color: var(--color-text-light);
    /*font-size: 1.2rem;*/
    display: flex;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    /*font-weight: 500;*/
}

.podcast-host {
    margin-bottom: 0.7rem;
}

.podcast-duration {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(var(--color-border-rgb), 0.15);
}

.podcast-host i,
.podcast-duration i {
    color: var(--color-primary);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Dark mode adjustments */
[data-theme="dark"] .podcast-info {
    background-color: var(--color-bg-alt);
    border-top-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .podcast-info h3 {
    color: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .podcast-host,
[data-theme="dark"] .podcast-duration {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .podcast-duration {
    border-top-color: rgba(255, 255, 255, 0.08);
}

/* Enhanced Play Button */
.play-btn {
    position: absolute;
    bottom: -1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 1;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.4);
    cursor: pointer;
    border: none;
    z-index: 2;
    transform: translateY(0);
}

.podcast-card:hover .play-btn {
    transform: translateY(-0.25rem) scale(1.1);
    box-shadow: 0 6px 16px rgba(var(--color-primary-rgb), 0.5);
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    transition: opacity var(--transition-fast);
    opacity: 0;
}

.play-btn:hover::before {
    opacity: 1;
}

.play-btn:active {
    transform: translateY(-0.125rem) scale(0.95);
    box-shadow: 0 2px 8px rgba(var(--color-primary-rgb), 0.3);
}

.play-btn i {
    transition: transform var(--transition-fast);
    position: relative;
    left: 1px;
}

.play-btn .fa-play {
    display: inline-block;
}

.play-btn .fa-pause {
    display: none;
}

.play-btn.playing .fa-play {
    display: none;
}

.play-btn.playing .fa-pause {
    display: inline-block;
    left: 0;
}

/* Indicate Live Status */
.podcast-img.live::after {
    content: 'LIVE';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ff3b30;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    z-index: 2;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 5px rgba(255, 59, 48, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.5);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(255, 59, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

/* Style adjustments for dark mode */
[data-theme="dark"] .podcast-card {
    background-color: rgba(var(--color-bg-alt-rgb), 0.8);
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .podcast-card:hover {
    border-color: rgba(var(--color-primary-rgb), 0.3);
}

[data-theme="dark"] .podcast-info h3 {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .podcast-host,
[data-theme="dark"] .podcast-duration {
    color: rgba(255, 255, 255, 0.6);
}

/* App Download Section */
.app-download {
    background: linear-gradient(135deg, #2962ff 0%, #0091ea 60%, #00b0ff 100%);
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease, height 0.5s ease;
}

.app-download-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.app-text p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: white;
    color: var(--color-primary);
    border-radius: var(--border-radius-md);
    padding: 1.2rem 2rem;
    transition: all var(--transition-fast);
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.app-btn i {
    font-size: 3rem;
}

.app-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-btn small {
    font-size: 1.2rem;
    opacity: 0.8;
}

.app-image {
    flex: 1;
    max-width: 300px;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--color-bg-alt);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.newsletter-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.newsletter-content p {
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 1.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1.4rem 2rem;
    border: 1px solid var(--color-border);
    border-right: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    /* background-color: var(--color-bg); */
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

/* Subscribe button loader styles */
.subscribe-btn {
    position: relative;
    min-width: 120px;
    transition: all 0.3s ease;
}

.subscribe-btn .btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.subscribe-btn.loading .btn-text {
    opacity: 0;
    visibility: hidden;
}

.subscribe-btn.loading .btn-loader {
    display: block;
}

.subscribe-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.form-check input {
    margin-top: 0.5rem;
}

.form-check label {
    font-size: 1.4rem;
    color: var(--color-text-light);
}

/* Responsive styles for newsletter section */
@media (max-width: 768px) {
    .newsletter-content {
        padding: 3rem 1.5rem;
    }

    .newsletter-content h2 {
        font-size: 2.4rem;
    }

    .newsletter-content p {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input[type="email"] {
        border-radius: var(--border-radius-md);
        border-right: 1px solid var(--color-border);
        padding: 1.2rem 1.5rem;
    }

    .newsletter-form .btn {
        border-radius: var(--border-radius-md);
        width: 100%;
        padding: 1.2rem;
    }

    .form-check {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }

    .form-check input {
        margin-top: 0;
    }

    .form-check label {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .newsletter-content {
        padding: 2.5rem 1rem;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-content p {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .form-check label {
        font-size: 1.1rem;
    }
}

/* -----------------------------
     Footer
     ----------------------------- */
.site-footer {
    background-color: var(--color-bg-alt);
    padding: 6rem 0 2rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    font-size: 1.6rem;
    color: var(--color-text-light);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-nav-column h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.footer-nav-column ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-column a {
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--color-text-rgb, 0, 0, 0), 0.05);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-light);
}

.contact-info i {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: var(--color-text-light);
}

.footer-bottom i {
    color: var(--color-primary);
}

/* -----------------------------
     Audio Player
     ----------------------------- */
  /* Improved Audio Player Styles */
  
  /* Fixed positioning at the bottom of the page */
  .audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-top: 1px solid var(--color-border);
    padding: 0;
    height: auto;
    transition: all 0.3s ease;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
  }
  
  /* Main player content layout */
  .player-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "info controls settings"
      "progress progress progress";
  /*  padding: 12px 15px;*/
    gap: 5px;
    align-items: center;
  }
  
  /* Track info section */
  .track-info {
    grid-area: info;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    max-width: 100%;
    overflow: hidden;
  }
  
  .track-img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%; /* Make circular like a CD */
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 3px solid rgba(var(--color-text-rgb), 0.1); /* CD-like border */
  }
  
  /* Add CD center dot */
  .track-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    height: 20%;
    background: rgba(var(--color-bg-rgb), 0.8);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  
  /* Add rotation animation when playing */
  .audio-player.playing .track-img {
    animation: track-rotate 20s infinite linear;
  }
  
  @keyframes track-rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .track-img:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  }
  
  /* Track details with text truncation */
  .track-details {
    overflow: hidden;
    white-space: nowrap;
  }
  
  .track-details h4 {
    font-size: 14px;
    margin: 0 0 4px 0;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .track-details p {
    font-size: 12px;
    margin: 0;
    color: var(--color-text-light);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Player controls */
  .player-controls {
    grid-area: controls;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 0;
  }
  
  .control-btn {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 16px;
    padding: 8px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .control-btn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
  }
  
  .play-pause {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
  }
  
  .play-pause:hover {
    transform: scale(1.1);
    background-color: var(--color-primary-dark);
  }
  
  /* Play/Pause Icons */
  .play-pause .fa-play {
    display: block;
  }
  
  .play-pause .fa-pause {
    display: none;
  }
  
  /* When playing, show pause icon and hide play icon */
  .playing .play-pause .fa-play {
    display: none;
  }
  
  .playing .play-pause .fa-pause {
    display: block;
  }
  
  /* Fullscreen player play/pause button */
  .fullscreen-controls .play-pause {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }
  
  /* Ensure the fullscreen play/pause button icons are properly displayed */
  .fullscreen-controls .play-pause .fa-play {
    display: block;
  }
  
  .fullscreen-controls .play-pause .fa-pause {
    display: none;
  }
  
  .fullscreen-controls .playing .play-pause .fa-play {
    display: none;
  }
  
  .fullscreen-controls .playing .play-pause .fa-pause {
    display: block;
  }
  
  /* Player settings */
  .player-settings {
    grid-area: settings;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }
  
  .volume-slider {
    width: 80px;
    height: 4px;
    background-color: var(--color-border);
    position: relative;
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
  }
  
  .volume-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 70%;
  }
  
  /* Progress bar section */
  .progress-container {
    grid-area: progress;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
    margin-top: 4px;
  }
  
  .current-time, .total-time {
    font-size: 12px;
    font-weight: 500;
    width: 40px;
    text-align: center;
    color: var(--color-text-light);
  }
  
  .current-time:not(:empty) {
    color: var(--color-primary);
    font-weight: 600;
  }
  
  .progress-bar {
    flex: 1;
    height: 4px;
    background-color: var(--color-border);
    position: relative;
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
  }
  
  .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
  }
  
  /* Live stream indicator */
  .audio-player.playing .track-img.live-stream::before {
    content: 'LIVE';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-primary);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    z-index: 2;
  }
  
  /* Responsive audio player */
  @media (max-width: 767px) {
    .player-content {
      grid-template-columns: minmax(auto, 40%) 1fr auto;
      gap: 4px;
      padding: 3px;
    }
    
    .track-img {
      width: 40px;
      height: 40px;
      min-width: 40px;
    }
    
    .track-details h4 {
      font-size: 13px;
    }
    
    .track-details p {
      font-size: 11px;
    }
    
    .player-controls {
      gap: 12px;
    }
    
    .control-btn {
      font-size: 14px;
      padding: 6px;
    }
    
    .play-pause {
      width: 36px;
      height: 36px;
    }
    
    /* Hide volume slider on small screens */
    .volume-slider {
      display: none;
    }
    
    .player-settings {
      gap: 10px;
    }
    
    /* Compact time display */
    .current-time, .total-time {
      font-size: 10px;
      width: 32px;
    }
  }
  
  /* Ultra-narrow screens */
  @media (max-width: 359px) {
    .player-content {
      grid-template-areas:
        "info controls settings"
        "progress progress progress";
    }
    
    .track-img {
      width: 36px;
      height: 36px;
      min-width: 36px;
    }
    
    .track-details h4 {
      font-size: 12px;
    }
    
    .track-details p {
      font-size: 10px;
    }
    
    /* Further simplify controls */
    .player-controls {
      gap: 8px;
    }
    
    .control-btn.shuffle,
    .control-btn.repeat {
      display: none;
    }
    
    .play-pause {
      width: 32px;
      height: 32px;
    }
  
  }
  /* Adjust body padding for fixed player */
  body {
    padding-bottom: 70px;
  }
  
  @media (max-width: 767px) {
    body {
      padding-bottom: 80px;
    }
  }
  
  /* -----------------------------
     Responsive Styles
     ----------------------------- */
  @media (min-width: 576px) {
    .app-buttons {
      flex-direction: row;
    }
  }
  
  @media (min-width: 768px) {
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .now-playing-card {
      flex-direction: row;
    }
    
    .now-playing-img {
      flex: 0 0 40%;
      height: auto; /* Reset height for desktop */
    }
    
    .now-playing-info {
      padding: 2.5rem; /* Restore padding for desktop */
      gap: 2rem; /* Restore gap for desktop */
    }
    
    .show-details h3 {
      font-size: 2.4rem; /* Restore font size for desktop */
    }
    
    .show-time, .show-host {
      font-size: 1.6rem; /* Restore font size for desktop */
    }
    
    .now-playing-track {
      flex-direction: row; /* Horizontal layout on desktop */
      justify-content: space-between;
      align-items: center;
    }
    
    .player-content {
      flex-direction: row;
      align-items: center;
      /*gap: 2rem;*/
    }
    
    .track-info {
      flex: 0 0 20%;
      margin-bottom: 0;
    }
    
    .player-controls {
      flex: 0 0 25%;
      margin-bottom: 0;
    }
    
    .progress-container {
      flex: 1;
    }
    
    .player-settings {
      flex: 0 0 15%;
      justify-content: flex-end;
    }
    
    /* Hero text improvements for tablets */
    .hero-text h2 {
      font-size: 4.2rem;
    }
    
    .hero-text p {
      font-size: 1.7rem;
    }
  }
  
  @media (min-width: 992px) {
    .main-nav {
      display: block;
    }
    
    .menu-toggle {
      display: none;
    }
    
    .app-download-content {
      flex-direction: row;
    }
    
    .footer-top {
      flex-direction: row;
    }
    
    .footer-logo {
      flex: 0 0 30%;
    }
    
    .footer-nav {
      flex: 1;
      grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
    
    .stats-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* Swiper Slider Fixes */
  .swiper {
    cursor: grab;
    width: 100%;
    height: 100%;
    overflow: visible !important; /* Allow pagination outside slider */
  }
  
  /* Only constrain slides in track and podcast sliders */
  .tracks-slider .swiper-wrapper,
  .podcasts-slider .swiper-wrapper {
    max-width: 100%; /* Prevent overflow */
  }
  
  .tracks-slider .swiper-slide,
  .podcasts-slider .swiper-slide {
    width: auto !important; /* Override inline width */
    box-sizing: border-box; /* Include padding in width */
  }
  
  
  /* Fix swiper slide width issues */
  .tracks-slider .swiper-slide {
    height: auto; /* Add this line */
    width: auto; /* Make sure this line exists */
  }
  
  /* Allow hero slider to work properly */
  .hero-slider .swiper-slide {
    width: 100% !important; /* Ensure full width */
  }
  
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    color: var(--color-primary);
    width: 50px;
    height: 50px;
  }
  
  .hero-slider .swiper-pagination {
    bottom: 20px;
  }
  
  /* Section Content Fixes */
  section {
    padding: var(--section-spacing) 0;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal overflow */
  }
  
  /* Image Constraints */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Responsive Hero Text */
  @media (min-width: 992px) {
    .hero-text h2 {
      font-size: 5rem;
    }
    
    .hero-text p {
      font-size: 1.8rem;
    }
  }
  
  @media (min-width: 1200px) {
    .hero-text h2 {
      font-size: 6rem;
    }
    
    .hero-text p {
      font-size: 1.8rem;
    }
    
    .hero-image {
      width: 65%;
    }
  }
  
  
  /* -----------------------------
     Animations
     ----------------------------- */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes pulse-bg {
    0% {
      transform: scale(1) rotate(0deg);
      opacity: 0.3;
    }
    100% {
      transform: scale(1.2) rotate(10deg);
      opacity: 0.7;
    }
  }
  
  /* Optimize Performance */
  .swiper-slide,
  .track-card,
  .podcast-card,
  .track-img img,
  .podcast-img img,
  .play-btn,
  .btn,
  .timeline-item,
  .audio-player,
  .playlist-sidebar {
    will-change: transform;
  }
  
  /* Now Playing Animations */
  .track-title,
  .track-artist,
  #current-show-name,
  #current-show-time,
  #current-show-host {
      transition: opacity 0.3s ease;
  }
  
  /* Share Success Message */
  .share-success {
      position: fixed;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-primary);
      color: white;
      padding: 1rem 2rem;
      border-radius: var(--border-radius-md);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      animation: slideUp 0.3s ease;
      font-size: 1.4rem;
      font-weight: 500;
  }
  
  @keyframes slideUp {
      from {
          transform: translateX(-50%) translateY(20px);
          opacity: 0;
      }
      to {
          transform: translateX(-50%) translateY(0);
          opacity: 1;
      }
  }
  
  /* Update existing Now Playing styles */
  .now-playing-track {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .now-playing-track:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
  }
  
  .track-controls .btn {
      transition: all 0.3s ease;
  }
  
  .track-controls .btn:hover {
      transform: translateY(-2px);
  }
  
  /* Share Modal Styles */
  .share-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
  }
  
  .share-modal-content {
      background-color: var(--background-color);
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      position: relative;
      max-width: 90%;
      width: 400px;
  }
  
  .share-modal-content h3 {
      margin: 0 0 1.5rem 0;
      color: var(--text-color);
      font-size: 1.5rem;
      text-align: center;
  }
  
  .share-options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
  }
  
  .share-option {
      display: flex;
      align-items: center;
      padding: 1rem;
      border-radius: 8px;
      text-decoration: none;
      color: white;
      transition: transform 0.2s ease;
  }
  
  .share-option:hover {
      transform: translateY(-2px);
  }
  
  .share-option i {
      margin-right: 0.5rem;
      font-size: 1.2rem;
  }
  
  .share-option.whatsapp {
      background-color: #25D366;
  }
  
  .share-option.facebook {
      background-color: #1877F2;
  }
  
  .share-option.twitter {
      background-color: #1DA1F2;
  }
  
  .share-option.telegram {
      background-color: #0088cc;
  }
  
  .close-share-modal {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      color: var(--text-color);
      cursor: pointer;
      font-size: 1.2rem;
      padding: 0.5rem;
      transition: color 0.2s ease;
  }
  
  .close-share-modal:hover {
      color: var(--accent-color);
  }
  
  /* Share Success/Error Messages */
  .share-success,
  .share-error {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      padding: 1rem 2rem;
      border-radius: 8px;
      color: white;
      font-weight: 500;
      z-index: 1000;
      animation: slideUp 0.3s ease forwards;
  }
  
  .share-success {
      background-color: #4CAF50;
  }
  
  .share-error {
      background-color: #f44336;
  }
  
  @keyframes slideUp {
      from {
          transform: translate(-50%, 100%);
          opacity: 0;
      }
      to {
          transform: translate(-50%, 0);
          opacity: 1;
      }
  }
  
  /* Responsive adjustments for share modal */
  @media (max-width: 480px) {
      .share-modal-content {
          padding: 1.5rem;
          width: 95%;
      }
  
      .share-options {
          grid-template-columns: 1fr;
      }
  
      .share-option {
          padding: 0.8rem;
      }
  
      .share-option i {
          font-size: 1.6rem;
      }
  
      .share-option span {
          font-size: 1.3rem;
      }
  }
  
  .shows-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
  }
  
  .show-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .show-card:hover {
    transform: translateY(-5px);
  }
  
  .show-img {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
  }
  
  .show-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .show-card:hover .show-img img {
    transform: scale(1.05);
  }
  
  .show-img.live::before {
    content: 'LIVE';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
  }
  
  .show-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 1;
  }
  
  .play-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 1;
  }
  
  .play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-color-dark);
  }
  
  .show-info {
    padding: 20px;
  }
  
  .show-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 600;
  }
  
  .show-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .show-meta p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-light);
    font-size: 1.1rem;
  }
  
  .show-meta i {
    color: var(--color-primary);
    font-size: 1.2rem;
  }
  
  .show-host {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .show-time {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
  }
  
  .show-time i {
    margin-right: 4px;
  }
  
  @media (max-width: 768px) {
    .shows-section {
        padding: 60px 0;
    }
    
    .show-info h3 {
        font-size: 1.6rem;
    }
    
    .show-meta p {
        font-size: 1rem;
    }
    
    .show-meta i {
        font-size: 1.1rem;
    }
  }
  
  /* Schedule Section Styles */
  .schedule-container {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
  }
  
  .schedule-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .schedule-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .schedule-time {
    min-width: 120px;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 6px;
    text-align: center;
    position: relative;
  }
  
  .schedule-time .time {
    font-weight: 500;
    font-size: 0.9rem;
  }
  
  .live-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
  }
  
  .schedule-content {
    flex: 1;
  }
  
  .schedule-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
  }
  
  .schedule-host {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
  }
  
  .schedule-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
  }
  
  @keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
    }
  }
  
  @media (max-width: 768px) {
    .schedule-item {
        flex-direction: column;
        gap: 1rem;
    }
  
    .schedule-time {
        min-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
  }
  
  /* Subscription Success Message */
  .subscription-success {
    text-align: center;
    padding: 2rem;
  }
  
  .subscription-success i {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 1.5rem;
  }
  
  .subscription-success h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  
  .subscription-success p {
    font-size: 1.6rem;
    color: var(--color-text-light);
  }
  
  .featured-tracks .swiper-slide {
    height: auto;
  }

  /* Featured Articles Section */
  .featured-articles {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
  }

  .articles-slider {
    padding-bottom: 5rem;
    overflow: visible;
  }

  .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
  }

  .article-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }

  .article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }

  .article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }

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

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

  .article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
  }

  .article-content {
    padding: 1.5rem;
  }

  .article-content h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-dark);
  }

  .article-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
  }

  .article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .article-meta i {
    color: var(--primary-color);
  }
  
  .play-pause-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.play-pause-btn i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.play-pause-btn .fa-play {
    display: inline-block;
}

.play-pause-btn .fa-pause {
    display: none;
}

.play-pause-btn.playing .fa-play {
    display: none;
}

.play-pause-btn.playing .fa-pause {
    display: block;
}

/* Fullscreen player play/pause button */
.fullscreen-player .play-pause-btn {
    width: 60px;
    height: 60px;
}

.fullscreen-player .play-pause-btn i {
    font-size: 1.8rem;
}

    
/* PWA Install Button */
.install-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
 background-color: white;
color: var(--color-primary);
  border: none;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(var(--color-primary-rgb), 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 15px;
}

.install-button::before {
  content: '📱 ';
  font-size: 18px;
}

.install-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(var(--color-primary-rgb), 0.4);
}

.install-button:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(var(--color-primary-rgb), 0.3);
}

/* Notification Permission Dialog */
.notification-dialog {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-bg);
  width: 320px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  overflow: hidden;
  animation: slide-in 0.3s ease-out;
  border: 1px solid var(--color-border);
}

.notification-content {
  padding: 20px;
}

.notification-content h3 {
  margin-top: 0;
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.notification-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.notification-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.notification-buttons button {
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-allow {
  background: var(--gradient-primary);
  color: white;
  border: none;
}

.btn-allow:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(var(--color-primary-rgb), 0.3);
}

.btn-deny {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-deny:hover {
  background-color: rgba(var(--color-text-rgb), 0.05);
}

@keyframes slide-in {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
  
/* Enhanced Play Button for Podcast Cards */
.podcast-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    font-size: 1.2rem;
    z-index: 3;
    opacity: 0.9;
    color: white;
}

.podcast-card .play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary);
    border-radius: 50%;
    z-index: -1;
    transition: opacity var(--transition-fast);
    opacity: 0;
}

.podcast-card .play-btn:hover::before {
    opacity: 1;
}

.podcast-card .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    background-color: var(--color-primary);
    opacity: 1;
}

.podcast-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.podcast-card .play-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.podcast-card .play-btn i {
    position: relative;
    left: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.podcast-card .play-btn .fa-play {
    display: inline-block;
}

.podcast-card .play-btn .fa-pause {
    display: none;
    left: 0;
}

.podcast-card .play-btn.playing .fa-play {
    display: none;
}

.podcast-card .play-btn.playing .fa-pause {
    display: inline-block;
}

/* Dark mode adjustments */
[data-theme="dark"] .podcast-info {
    background-color: var(--color-bg-alt);
    border-top-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .podcast-info h3 {
    color: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .podcast-host,
[data-theme="dark"] .podcast-duration {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .podcast-duration {
    border-top-color: rgba(255, 255, 255, 0.08);
}
  