
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap');

:root {
    
    --player-blue1: #060b14;
    --player-blue2: #121a2b;
    --player-blue3: #185adb;
    --player-accent: #ff0101;
    --player-accent-glow: rgba(255, 1, 1, 0.4);
    --player-accent-dark: #cc0000;
    --player-bg: #000000;
    
    --body-glow-1: rgba(255, 1, 1, 0.05);
    --body-glow-2: rgba(18, 26, 43, 0.2);
    --body-glow-3: rgba(255, 1, 1, 0.05);
    
    --primary: #060b14;
    --secondary: #185adb;
    --accent: var(--player-accent);
    --accent-dark: var(--player-accent-dark);
    --accent-light: #ff3333;
    
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-blur: blur(25px);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --theme-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}


@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-regular-400.woff2") format("woff2"),
       url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-regular-400.ttf") format("truetype");
}
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2") format("woff2"),
       url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2") format("woff2"),
       url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

@property --player-accent {
  syntax: '<color>';
  inherits: true;
  initial-value: #ff0101;
}
@property --player-bg {
  syntax: '<color>';
  inherits: true;
  initial-value: #000000;
}
@property --body-glow-1 {
  syntax: '<color>';
  inherits: true;
  initial-value: rgba(255, 1, 1, 0.05);
}
@property --body-glow-2 {
  syntax: '<color>';
  inherits: true;
  initial-value: rgba(18, 26, 43, 0.2);
}
@property --body-glow-3 {
  syntax: '<color>';
  inherits: true;
  initial-value: rgba(255, 1, 1, 0.05);
}
@property --body-glow-4 {
  syntax: '<color>';
  inherits: true;
  initial-value: rgba(18, 26, 43, 0.1);
}
@property --body-glow-5 {
  syntax: '<color>';
  inherits: true;
  initial-value: rgba(255, 1, 1, 0.03);
}
@property --body-glow-6 {
  syntax: '<color>';
  inherits: true;
  initial-value: rgba(18, 26, 43, 0.1);
}

body {
    font-family: 'Outfit', 'Manrope', sans-serif;
    background: var(--player-bg);
    background-image: 
        radial-gradient(at 0% 0%, var(--body-glow-1) 0, transparent 80%),
        radial-gradient(at 100% 0%, var(--body-glow-2) 0, transparent 80%),
        radial-gradient(at 50% 50%, var(--body-glow-4) 0, transparent 70%),
        radial-gradient(at 0% 100%, var(--body-glow-5) 0, transparent 80%),
        radial-gradient(at 100% 100%, var(--body-glow-6) 0, transparent 80%),
        radial-gradient(at 50% 100%, var(--body-glow-3) 0, transparent 80%);
    background-size: 200% 200%;
    animation: bg-movement 30s ease infinite;
    background-attachment: fixed;
    transition: background 0.8s ease, 
                --player-bg 0.8s ease, 
                --body-glow-1 0.8s ease, 
                --body-glow-2 0.8s ease, 
                --body-glow-3 0.8s ease,
                --body-glow-4 0.8s ease,
                --body-glow-5 0.8s ease,
                --body-glow-6 0.8s ease;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: 80px;
    -webkit-overflow-scrolling: touch;
}


@keyframes bg-movement {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

@media (max-width: 768px) {
    body {
        animation: none;
        background-attachment: scroll;
    }
}


@media (prefers-reduced-motion: reduce) {
    body { animation: none; }
    .hero-accent-line { transition: none; }
    @keyframes marqueeScroll { 0%, 100% { transform: translateX(0); } }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', 'Manrope', 'Segoe UI', Arial, sans-serif;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}




.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.1rem;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 140px;
    height: 58px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.logo img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}


.programa-info-wrapper {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 46, 99, 0.3);
    max-width: 450px;
    justify-self: center;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.programa-info {
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #ffffff;
    animation: ticker-animation 20s linear infinite;
    padding-left: 100%;
}

@keyframes ticker-animation {
    0% { transform: translateX(0); }
    88% { transform: translateX(-105%); }
    100% { transform: translateX(-105%); }
}

.programa-info:hover {
    animation-play-state: paused;
}


.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.6rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin: 0;
}

.main-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent);
    
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 80%;
}


.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    flex-shrink: 0;
}

.listen-live-btn {
    background: rgba(255, 46, 99, 0.3);
    
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 46, 99, 0.5);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    white-space: nowrap;
}

.listen-live-btn:hover {
    background: rgba(255, 46, 99, 0.5);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
}


.support-btn-mobile {
    background: linear-gradient(135deg, #ff0101, #d81b60);
    
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 46, 99, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    text-align: center;
    border: none;
}

.support-btn-mobile:hover {
    background: linear-gradient(135deg, #ff3333, #ff0101);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 46, 99, 0.4);
    color: white;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 25, 49, 0.97);
    
    border-left: 1px solid rgba(72, 149, 239, 0.3);
    transition: transform 0.35s ease;
    z-index: 1001;
    padding: 80px 30px 30px;
    transform: translateX(100%);
    
    pointer-events: none;
    
    contain: layout style;
}

.mobile-nav.active {
    right: 0;
    transform: translateX(0);
    pointer-events: auto;
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.mobile-nav ul li a:hover {
    color: #ff3333;
    
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
    transition: var(--transition);
}

.close-menu:hover {
    color: #ff0101;
    
}


@media (max-width: 1200px) {
    .header-container {
        gap: 1.5rem;
    }

    .logo img {
        width: 150px;
        height: 62px;
    }

    .main-nav ul {
        gap: 1.2rem;
    }

    .programa-info {
        max-width: 320px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1100px) {
    .header-container {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }

    .logo img {
        width: 140px;
        height: 58px;
    }

    .main-nav ul {
        gap: 1rem;
    }

    .main-nav ul li a {
        font-size: 0.9rem;
        padding: 8px 10px;
    }

    .programa-info {
        max-width: 250px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .listen-live-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .header-container {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }

    .logo img {
        width: 130px;
        height: 54px;
    }

    .programa-info {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 120px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .logo img {
        width: 110px;
        height: 46px;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .listen-live-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}


.hero-section {
    padding-top: 180px;
    padding-bottom: 120px;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-section .container {
    max-width: 1400px;
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    padding: 0;
    z-index: 10;
}

.hero-text-wrapper {
    display: flex;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 30px;
}

.hero-accent-line {
    width: 8px;
    background: var(--player-accent);
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--player-accent-glow);
    transition: var(--theme-transition), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top;
    transform: scaleY(1);
}

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 6.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.85;
    margin: 0;
    letter-spacing: -5px;
    color: #ffffff;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
    transition: var(--transition-slow);
}

/* Efecto de texto moderno: mitad sólido, mitad contorno si se desea, 
   o simplemente un gradiente muy sutil */
.hero-content h1 span {
    display: block;
}

.hero-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 20px 0 40px 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
    margin-left: 0;
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 5rem;
        letter-spacing: -3px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 25px;
    }
    .hero-text-wrapper {
        gap: 15px;
    }
    .hero-accent-line {
        width: 6px;
    }
    .hero-content h1 {
        font-size: 3.2rem;
        letter-spacing: -2px;
    }
    .hero-content p {
        font-size: 1.1rem;
        margin-left: 21px;
    }
    .hero-actions {
        margin-left: 21px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 400px;
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .hero-bg {
        background-attachment: scroll;
        top: 0;
        
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-color: var(--primary, #0a1931);
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: auto;
        aspect-ratio: 4/5;
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(rgba(10, 25, 49, 0.6), rgba(10, 25, 49, 0.8)),
        url('../images/programas/principal.jpg');
    background-size: cover;
    background-position: center;
    
    background-attachment: scroll;
    z-index: -1;
    filter: brightness(0.8);
    transition: opacity 0.6s ease-in-out;
    will-change: opacity;
    
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}


@supports (-webkit-touch-callout: none) {
    .hero-bg {
        background-attachment: scroll;
        height: 100%;
    }
}

@media (max-width: 992px) {
    .hero-bg {
        background-attachment: scroll;
        height: 100%;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--accent);
    border: none;
    color: white;
    box-shadow: 0 10px 30px var(--player-accent-glow);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
}

.btn-accent:hover {
    background: var(--accent-light);
    box-shadow: 0 15px 45px var(--player-accent-glow);
    transform: translateY(-5px) scale(1.03);
}



.fixed-player.spotify-style {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    background: var(--player-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 24px;
    height: 90px;
    z-index: 9999;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    transition: var(--theme-transition);
}

.fixed-player.spotify-style .player-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}


.player-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 250px;
}

.player-album-art {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9);
    flex-shrink: 0;
    position: absolute;
    bottom: -5px; 
    left: 20px;
    border: 4px solid #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 100;
}

.player-album-art:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 1);
}

.player-album-art img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease-in-out;
}

.player-album-art .share-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    z-index: 101;
}

.player-album-art:hover .share-overlay {
    opacity: 1;
}

.share-overlay button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
    padding: 5px;
}

.share-overlay button:hover {
    transform: scale(1.2);
    color: #ff6b35;
}

.player-song-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 190px; 
    overflow: hidden;
}

.player-song-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    
    letter-spacing: 0.3px;
}

.player-song-artist {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ff6b35; 
    opacity: 0.9;
}


.player-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.player-play-btn {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff6b35, #ff4d00);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.05), 0 10px 25px rgba(255, 77, 0, 0.4);
    transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.2s ease;
    font-size: 1.5rem;
    position: relative;
    z-index: 10;
}

.player-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08), 0 15px 35px rgba(255, 77, 0, 0.6);
}

.player-play-btn i {
}

.player-expand-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #888 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}


.player-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 150px;
}


@media (max-width: 768px) {
    .fixed-player.spotify-style {
        height: 75px;
        padding: 10px 15px;
    }
    .player-album-art {
        width: 90px;
        height: 90px;
        bottom: 5px;
        left: 10px;
    }
    .player-song-details {
        margin-left: 105px;
    }
    .player-song-title {
        font-size: 0.9rem;
    }
    .player-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .player-right {
        display: none; 
    }
}

.fixed-player.spotify-style .player-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    width: 100%;
    padding: 0;
}


.player-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 180px;
}



.player-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}

.player-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--hover-color, #1db954);
    box-shadow: 0 0 8px var(--hover-color, #1db954);
    transition: width 1s linear;
}


.btn-tool {
    transition: color 0.3s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-tool.liked {
    color: #e74c3c !important;
    transform: scale(1.15);
}
.btn-tool.liked i::before {
    content: "\f004"; 
    font-weight: 900;
}

.player-song-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
    
    min-width: 0;
    flex: 1;
}

.player-song-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.015em;
    line-height: 1.4;
    max-width: 100%;
}

/* ============================================
   MARQUEE: sale izquierda, pausa 2s, entra derecha
   JS calcula --marquee-offset (px reales)
   El clip lo hace .player-song-details (overflow:hidden)
   ============================================ */
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    5%   { transform: translateX(0); }
    100% { transform: translateX(var(--marquee-offset, -100%)); }
}

.player-song-title.marquee {
    overflow: visible;
    max-width: none;
    display: inline-block;
    animation: marqueeScroll var(--marquee-duration, 25s) linear infinite;
    will-change: transform;
}


.player-song-artist {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    color: #b3b3b3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-status-icons {
    color: #1ed760; 
    font-size: 0.8rem;
    margin-left: 8px;
}


.player-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 2;
    max-width: 722px;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   PLAY BUTTON — efecto pulso cuando suena
   ============================================ */
@keyframes playPulseRing {
    0%   { transform: scale(1);    opacity: 0.7; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

.player-play-btn {
    position: relative;
    width: 88px;
    height: 88px;
    background: var(--accent, #E11B22);
    border: 6px solid #000000;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin-top: -44px;
    transition: background 0.3s ease;
    z-index: 100;
    isolation: isolate;
}


.player-play-btn::before,
.player-play-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent, #E11B22);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.player-play-btn.playing::before {
    animation: playPulseRing 1.8s ease-out infinite;
}
.player-play-btn.playing::after {
    animation: playPulseRing 1.8s ease-out 0.9s infinite;
}

.player-play-btn:hover,
.player-play-btn:active {
    background: var(--accent-dark, #b3141a);
    transform: none;
}

.player-play-btn i {
    transform: translateX(2px);
}

.player-playback-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.playback-time {
    font-family: 'Manrope', sans-serif;
    font-size: 0.6875rem;
    color: #b3b3b3;
    min-width: 30px;
}

.progress-container {
    flex: 1;
    height: 4px;
    background: #4d4d4d;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: 2px;
    transition: background 0.2s ease, width 1s linear;
}

.progress-container:hover .progress-bar {
    background: #1db954;
}


.player-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 180px;
}

.player-extra-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-tool {
    background: none;
    border: none;
    color: #b3b3b3;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
}

.btn-tool:hover {
    color: #ffffff;
}


.custom-station-selector {
    position: relative;
    user-select: none;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    min-width: 140px;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 10px;
}

.custom-select-trigger:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.trigger-icon, .option-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}

.trigger-text {
    flex-grow: 1;
    color: #ffffff;
}

.trigger-chevron {
    font-size: 0.75rem;
    color: #b3b3b3;
    transition: transform 0.3s ease;
}

.custom-station-selector.open .trigger-chevron {
    transform: rotate(180deg);
}

.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.95); /* Más sólido */
    backdrop-filter: blur(25px);
    border-bottom: none; /* Quitamos la línea */
    transition: var(--theme-transition);
    padding: 10px 0;
}

.custom-options {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    background: rgba(10, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 260px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 6px;
    z-index: 10000;
}

.custom-station-selector.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.6);
}

.custom-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(5px);
}

.custom-option.selected {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.custom-option span {
    font-weight: 700;
    font-size: 0.9rem;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.volume-slider-container {
    flex: 1;
    display: flex;
    align-items: center;
}

.spotify-range {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #4d4d4d;
    border-radius: 2px;
    outline: none;
}

.spotify-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #4d4d4d;
    border-radius: 2px;
}

.spotify-range::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    margin-top: -4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.spotify-range:hover::-webkit-slider-thumb {
    opacity: 1;
}


@media (max-width: 768px) {
    .fixed-player.spotify-style {
        padding: 8px 15px !important;
        bottom: 12px !important;
        width: 96% !important;
        left: 2% !important;
        border-radius: 20px !important;
        box-shadow: 0 5px 25px rgba(0,0,0,0.5) !important;
    }

    .player-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 30px !important;
    }

    
    .player-left {
        display: none !important;
    }

    
    .player-center {
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
    }

    .player-expand-btn {
        display: none !important;
    }

    .player-play-btn {
        width: 56px !important;
        height: 56px !important;
        font-size: 1.3rem !important;
        background: #fff !important;
        color: #000 !important;
        box-shadow: 0 4px 15px rgba(255,255,255,0.2) !important;
    }

    
    .player-right {
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
        min-width: 0 !important;
    }

    .player-extra-controls {
        gap: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    
    #likeBtn, .player-volume, .btn-tool {
        display: none !important;
    }

    .station-selector-mini {
        display: block !important;
    }

    .custom-station-selector {
        min-width: 140px !important;
    }

    body {
        padding-bottom: 85px !important;
    }
}


.recently-played-strip {
    background: #000000; 
    padding: 30px 0 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.recently-played-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.rp-timeline {
    display: flex;
    overflow-x: auto;
    gap: 15px; 
    padding-bottom: 15px;
    scroll-behavior: smooth;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}
.rp-timeline::-webkit-scrollbar {
    display: none; 
}

.rp-card {
    flex: 0 0 auto;
    width: 130px; 
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease;
}

.rp-card:hover {
    transform: translateY(-5px);
}

.rp-art {
    width: 130px; 
    height: 130px; 
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.rp-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rp-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rp-title {
    font-size: 0.95rem;
    color: white;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rp-artist {
    font-size: 0.8rem;
    color: var(--light-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rp-time {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
}


.history-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 49, 0.95);
    
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.history-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(72, 149, 239, 0.3);
    
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.history-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.history-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.close-history {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.close-history:hover {
    color: #ff0101;
    
}

.history-list {
    list-style: none;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
}

.history-item:last-child {
    border-bottom: none;
}

.history-album-art {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.history-album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-song-info {
    flex: 1;
    min-width: 0;
}

.history-song-title {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.history-song-artist {
    font-size: 0.8rem;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--light-gray);
}

.history-time {
    font-size: 0.75rem;
    opacity: 0.6;
    white-space: nowrap;
    color: var(--gray);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.about-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(-45deg, #ff0101, #f39c12, #47b5ff, #27ae60);
    
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.about-card h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 1.5rem;
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}


.radios-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.radio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.radio-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.radio-card .destacada-badge {
    display: none;
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.radio-logo-container {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.radio-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.radio-card:hover .radio-logo-container img {
    transform: scale(1.05);
}

.radio-info-container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.radio-info-container h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.radio-info-container p.desc-long {
    display: none;
}

.radio-info-container p.desc-short {
    display: block;
}

.radio-card.featured .desc-short {
    display: none;
}

.radio-card.featured .desc-long {
    display: block;
}

.radio-info-container p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 15px 0;
    flex: 1;
}

.radio-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-live-mini, .badge-247 {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.badge-live-mini {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-live-mini .dot {
    width: 6px;
    height: 6px;
    background: #47b5ff;
    border-radius: 50%;
}

.badge-247 {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.listen-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 8px 15px 8px 8px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.play-icon-box {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #47b5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.listen-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.listen-btn:hover .play-icon-box {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(71, 181, 255, 0.6);
}

/* Featured Card (Active Station) */
.radio-card.featured {
    grid-column: span 2;
    order: -1;
    flex-direction: row;
    background: #0B0D14;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--player-accent);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    padding: 25px;
    gap: 25px;
    align-items: center;
}

.radio-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, var(--player-accent) 0%, transparent 100%);
    opacity: 0.08;
    pointer-events: none;
    transition: var(--theme-transition);
}

.radio-card.featured .destacada-badge {
    display: flex;
    align-items: center;
    gap: 6px;
}

.radio-card.featured .radio-logo-container {
    width: 200px;
    height: 200px;
    margin-bottom: 0;
    margin-top: 20px;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.radio-card.featured .radio-info-container {
    justify-content: center;
    padding-top: 20px;
}

.radio-card.featured h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.radio-card.featured p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.radio-card.featured .badge-live-mini {
    border-color: var(--player-accent);
    color: #ffffff;
}

.radio-card.featured .badge-live-mini .dot {
    background: var(--player-accent);
    box-shadow: 0 0 8px var(--player-accent-glow);
    animation: playPulseRing 2s infinite;
}

.radio-card.featured .play-icon-box {
    background: var(--player-accent);
    width: 40px;
    height: 40px;
    font-size: 1rem;
    box-shadow: 0 0 15px var(--player-accent-glow);
}

.radio-card.featured .listen-btn {
    padding: 8px 20px 8px 8px;
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
}


.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-form form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .form-group {
    flex: 0 0 auto;
}

.contact-form button {
    margin-top: auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(-45deg, #ff0101, #f39c12, #47b5ff, #27ae60);
    
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 5px;
    color: white;
    font-size: 1.5rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    border-color: #ff0101;
    
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 46, 99, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}


.form-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-weight: 500;
    border: 1px solid transparent;
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.form-message.success {
    background-color: rgba(39, 174, 96, 0.3);
    color: white;
    border-color: rgba(39, 174, 96, 0.5);
}

.form-message.error {
    background-color: rgba(255, 46, 99, 0.3);
    
    color: white;
    border-color: rgba(255, 46, 99, 0.5);
}

.form-message.loading {
    background-color: rgba(72, 149, 239, 0.3);
    
    color: white;
    border-color: rgba(72, 149, 239, 0.5);
    font-style: italic;
}

footer {
    background: #000000; 
    backdrop-filter: var(--glass-blur);
    border-top: var(--glass-border);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #ff0101;
    
    bottom: 0;
    left: 0;
}

.footer-column p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ff3333;
    
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: #ff0101;
    
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}


.radios {
    background: transparent;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.schedule {
    background: #000000;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.next-program-pill {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 46, 99, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 50px;
    width: fit-content;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: fadeInDown 0.8s ease;
}

.pill-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

.pill-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.pill-timer {
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px var(--player-accent-glow);
}

.schedule-full-container {
    background: #0B0D14;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    margin-top: 30px;
}

.schedule-header-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.schedule-header-top .icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--player-accent);
    border: 1px solid var(--player-accent);
    transition: var(--theme-transition);
}

.schedule-header-top h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.schedule-header-top p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Tabs */
.schedule-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.schedule-tabs::-webkit-scrollbar {
    height: 4px;
}

.schedule-tabs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.schedule-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--theme-transition);
    white-space: nowrap;
}

.schedule-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.schedule-tab.active {
    background: var(--player-accent);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 15px var(--player-accent-glow);
}

/* Day Pane & Grid */
.schedule-day-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.schedule-day-pane.active {
    display: block;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Columns */
.schedule-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.schedule-col-title i {
    font-size: 1.2rem;
}

.schedule-col-title .title-text {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
}

.schedule-col-title .title-line {
    flex: 1;
    height: 2px;
    border-radius: 2px;
}

/* Colores por columna */
.col-manana .title-text { color: #FFB300; }
.col-manana i { color: #FFB300; }
.col-manana .title-line { background: linear-gradient(90deg, #FFB300 0%, transparent 100%); }

.col-tarde .title-text { color: #FF7043; }
.col-tarde i { color: #FF7043; }
.col-tarde .title-line { background: linear-gradient(90deg, #FF7043 0%, transparent 100%); }

.col-noche .title-text { color: #b388ff; }
.col-noche i { color: #b388ff; }
.col-noche .title-line { background: linear-gradient(90deg, #b388ff 0%, transparent 100%); }

/* Program Items */
.schedule-prog-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    gap: 15px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.schedule-prog-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.schedule-prog-time {
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 65px;
    flex-shrink: 0;
}

.col-manana .schedule-prog-time { color: #FFB300; }
.col-tarde .schedule-prog-time { color: #FF7043; }
.col-noche .schedule-prog-time { color: #b388ff; }

.schedule-prog-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schedule-prog-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.schedule-prog-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

/* En Vivo Status */
.schedule-prog-item.is-live {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--player-accent);
    position: relative;
    overflow: hidden;
    transition: var(--theme-transition);
}

.schedule-prog-item.is-live::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, var(--player-accent) 0%, transparent 100%);
    opacity: 0.25;
    z-index: 0;
    transition: var(--theme-transition);
}

.schedule-prog-item.is-live > * {
    position: relative;
    z-index: 1;
}

.live-badge {
    background: var(--player-accent);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 12px;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    animation: playPulseRing 2s infinite;
    box-shadow: 0 0 10px var(--player-accent-glow);
    transition: var(--theme-transition);
}

.schedule-prog-item.is-live .live-badge {
    display: flex;
}

.no-programs {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    font-style: italic;
    padding: 10px 0;
}

@media (max-width: 992px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .schedule {
        padding: 50px 0;
    }
    .schedule-full-container {
        padding: 20px 15px;
    }
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .next-program-pill {
        padding: 12px 20px;
        flex-wrap: wrap;
        text-align: center;
        border-radius: 20px;
        gap: 8px;
    }
    .pill-timer {
        font-size: 1.1rem;
    }
}


.premium-btn {
    background: transparent;
    border: none;
    color: #b3b3b3;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}
.premium-btn:hover {
    color: #fff;
    transform: scale(1.1);
}
.premium-expand-panel {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, var(--player-bg), #000000);
    z-index: 9999;
    transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1), var(--theme-transition);
    overflow-y: auto;
    padding-top: 60px;
}
.premium-expand-panel.open {
    bottom: 0;
}

.premium-panel-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 8vh 0 4vh 0; 
    position: relative;
    color: white;
}

.premium-close-btn {
    position: absolute;
    top: 40px; 
    right: 0;
    background: transparent;
    border: none;
    color: #b3b3b3;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s ease;
}
.premium-close-btn:hover {
    color: white;
}

.premium-grid-new {
    display: grid;
    grid-template-columns: 28% 44% 28%; 
    gap: 30px;
    align-items: start;
}

@media (max-width: 1200px) {
    .premium-grid-new {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .premium-grid-new {
        grid-template-columns: 1fr;
    }
    .premium-stations-area {
        order: 3; 
    }
}


.premium-subtitle {
    font-size: 0.8rem;
    color: var(--player-accent);
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--theme-transition);
}
.premium-subtitle i {
    color: #ff0101; 
}


.premium-artist-feature {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-img-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.feature-artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-info {
    padding: 25px;
}

.feature-name {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.1;
    min-height: 2.2em; 
    display: flex;
    align-items: center; 
}

.feature-bio {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 25px;
}


.btn-accent {
    background: linear-gradient(135deg, var(--player-accent), var(--player-accent-dark));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--player-accent-glow);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--theme-transition);
}

.premium-btn-red {
    background: linear-gradient(135deg, #ff0101, #b0141b);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(229, 26, 36, 0.3);
}

.premium-btn-red:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(229, 26, 36, 0.5);
    background: linear-gradient(135deg, #f31d28, #c1161d);
}


.onair-now-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.onair-now-box:hover {
    border-color: rgba(255, 46, 99, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
}

.onair-thumb-new {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.onair-thumb-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.onair-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.onair-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.onair-text span {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

@media (max-width: 600px) {
    .onair-now-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    .onair-thumb-new {
        width: 100px;
        height: 100px;
    }
    .onair-text strong {
        font-size: 1.3rem;
    }
}


.premium-history-list {
    display: flex;
    flex-direction: column;
}

.premium-history-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    animation: premiumSlideIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    will-change: transform, opacity;
}

@keyframes premiumSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-history-row:last-child {
    border-bottom: none;
}

.premium-history-row:hover {
    background: rgba(255,255,255,0.02);
    padding-left: 10px;
}

.hist-left {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

.hist-thumb {
    width: 45px;
    height: 45px;
    border-radius: 50%; 
    overflow: hidden;
    flex-shrink: 0;
}

.hist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hist-meta {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hist-meta strong {
    font-size: 0.95rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hist-meta span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.hist-right {
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}


.premium-stations-sidebar {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

.premium-stations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px; 
    justify-items: center;
}

.premium-station-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-station-item:hover {
    transform: translateY(-5px);
}

.premium-station-item .k-circle {
    width: 85px; 
    height: 85px; 
    border-radius: 50%; 
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.premium-station-item .k-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}


.premium-station-item:last-child:nth-child(7) {
    grid-column: span 2;
}

.premium-station-item:hover .k-circle {
    border-color: #ff0101;
    box-shadow: 0 15px 30px rgba(229, 26, 36, 0.2);
}

.premium-station-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.premium-station-item:hover span {
    color: #fff;
}


@media (max-width: 576px) {
    .premium-now-playing-card {
        aspect-ratio: 1 / 1.1; 
    }
    .card-info-body {
        margin-bottom: 90px;
    }
    .card-song-title {
        font-size: 1.4rem;
    }
    .card-metadata-list span {
        font-size: 0.85rem;
    }
    .card-metadata-list strong {
        font-size: 0.6rem;
    }
    .card-mini-artwork {
        width: 65px;
        height: 65px;
    }
    .card-big-play {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    .premium-history-grid {
        gap: 15px;
    }
}

/* =========================================
   MOBILE RESPONSIVE (iPhone 8 / 12 / etc)
   ========================================= */
@media (max-width: 576px) {
    
    .premium-panel-container {
        padding: 0;
        padding-top: 10px;
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }
    
    .premium-close-btn {
        top: 5px !important;
        right: 10px !important;
        font-size: 1.5rem !important;
    }

    
    .premium-grid {
        gap: 5px !important;
    }

    
    .premium-title {
        font-size: 0.95rem;
        margin-bottom: 4px;
        padding-bottom: 4px;
        font-weight: 700;
    }

    
    .premium-stations-grid {
        gap: 8px;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
        margin-right: -15px; 
        padding-right: 15px;
    }
    
    .premium-stations-grid::-webkit-scrollbar {
        display: none; 
    }
    
    .premium-station-item {
        width: 50px; 
        flex: 0 0 auto !important; 
    }
    
    .premium-station-item .k-circle {
        width: 52px; 
        height: 52px; 
        margin-bottom: 2px;
        border-width: 1px;
    }
    
    .premium-station-item span {
        font-size: 0.6rem;
    }

    
    .premium-history-grid {
        grid-template-columns: 1fr;
    }
    
    
    .premium-history-grid > div {
        gap: 6px !important;
    }
    
    .premium-history-item {
        padding: 4px !important;
        gap: 6px !important;
        width: 100% !important;
        background: rgba(40, 40, 40, 0.4) !important;
    }
    
    .premium-history-item img {
        width: 42px !important;
        height: 42px !important;
        margin-right: 6px !important;
    }

    .premium-history-item strong {
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }
    .premium-history-item span {
        font-size: 0.65rem !important;
        padding: 1px 6px !important;
    }
}


@media (max-width: 992px) {
    .radios-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .radio-card-center {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .radios-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .radio-card {
        max-width: 100%;
    }

    .radio-card-center {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .radios-container {
        gap: 15px;
    }

    .radio-content {
        padding: 20px;
    }

    .radio-content h3 {
        font-size: 1.3rem;
    }

    .radio-content p {
        font-size: 0.9rem;
    }
}


@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }
}


@media (max-width: 768px) {
    .contact-form {
        min-height: 500px;
    }
}


@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (min-width: 993px) {
    .mobile-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .history-modal-content {
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 28px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 30px 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-icon {
        margin-right: 0;
    }
}


@media (max-width: 768px) {
    .player-play-btn {
        width: 56px !important;
        height: 56px !important;
        margin-top: 0 !important; 
        font-size: 1.2rem !important;
        border-width: 3px !important;
    }
    
    .player-expand-btn {
        margin-top: 0 !important; 
        width: 34px !important;
        height: 34px !important;
    }

    .player-controls {
        gap: 12px !important;
    }
}


.paypal-form-container {
    display: inline-grid;
    justify-items: center;
    align-content: start;
    gap: 0.5rem;
}

.btn-paypal-donate {
    text-align: center;
    border: none;
    border-radius: 0.25rem;
    min-width: 11.625rem;
    padding: 0 2rem;
    height: 2.625rem;
    font-weight: bold;
    background-color: #FFD140;
    color: #000000;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-paypal-donate:hover {
    background-color: #f7c21a;
    transform: translateY(-2px);
}

.paypal-powered-by {
    font-size: 0.75rem;
}

.paypal-logo-small {
    height: 0.875rem;
    vertical-align: middle;
}

#heroTitle, #heroDescription {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    will-change: opacity, transform;
}


@media (max-width: 768px) {
    
    .volume-control, 
    .premium-card-vol-container,
    .volume-slider-container,
    #playerVolumeSlider,
    #premiumCardVolSlider {
        display: none !important;
    }
    
    
    .premium-panel-content {
        flex-direction: column !important;
        padding: 50px 20px 30px 20px !important;
        gap: 30px !important;
        overflow-y: auto !important;
        height: 100% !important;
    }

    .premium-panel-column {
        width: 100% !important;
        padding: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 25px !important;
        text-align: center;
    }

    .premium-panel-column:last-child {
        border-bottom: none;
    }

    .premium-feature-artist-img {
        width: 140px !important;
        height: 140px !important;
        margin: 0 auto !important;
    }

    .premium-feature-artist-name {
        font-size: 1.6rem !important;
        margin-top: 15px !important;
    }

    .premium-feature-artist-bio {
        font-size: 0.95rem !important;
        max-width: 100% !important;
        margin: 10px auto !important;
    }
    
    .on-air-host-img {
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto 10px auto !important;
    }
    
    .premium-history-grid {
        max-height: 250px;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .premium-panel-column h2 {
        font-size: 1.2rem !important;
    }
    .hero-section h1 {
        font-size: 1.8rem !important;
    }
}

/* Radios Grid Responsive */
@media (max-width: 1024px) {
    .radios-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .radios-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .radio-card.featured {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .radio-card.featured .radio-logo-container {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 28px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 30px 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-icon {
        margin-right: 0;
    }
}


@media (max-width: 768px) {
    .player-play-btn {
        width: 56px !important;
        height: 56px !important;
        margin-top: 0 !important; 
        font-size: 1.2rem !important;
        border-width: 3px !important;
    }
    
    .player-expand-btn {
        margin-top: 0 !important; 
        width: 34px !important;
        height: 34px !important;
    }

    .player-controls {
        gap: 12px !important;
    }
}


.paypal-form-container {
    display: inline-grid;
    justify-items: center;
    align-content: start;
    gap: 0.5rem;
}

.btn-paypal-donate {
    text-align: center;
    border: none;
    border-radius: 0.25rem;
    min-width: 11.625rem;
    padding: 0 2rem;
    height: 2.625rem;
    font-weight: bold;
    background-color: #FFD140;
    color: #000000;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-paypal-donate:hover {
    background-color: #f7c21a;
    transform: translateY(-2px);
}

.paypal-powered-by {
    font-size: 0.75rem;
}

.paypal-logo-small {
    height: 0.875rem;
    vertical-align: middle;
}

#heroTitle, #heroDescription {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    will-change: opacity, transform;
}


@media (max-width: 768px) {
    
    .volume-control, 
    .premium-card-vol-container,
    .volume-slider-container,
    #playerVolumeSlider,
    #premiumCardVolSlider {
        display: none !important;
    }
    
    
    .premium-panel-content {
        flex-direction: column !important;
        padding: 50px 20px 30px 20px !important;
        gap: 30px !important;
        overflow-y: auto !important;
        height: 100% !important;
    }

    .premium-panel-column {
        width: 100% !important;
        padding: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 25px !important;
        text-align: center;
    }

    .premium-panel-column:last-child {
        border-bottom: none;
    }

    .premium-feature-artist-img {
        width: 140px !important;
        height: 140px !important;
        margin: 0 auto !important;
    }

    .premium-feature-artist-name {
        font-size: 1.6rem !important;
        margin-top: 15px !important;
    }

    .premium-feature-artist-bio {
        font-size: 0.95rem !important;
        max-width: 100% !important;
        margin: 10px auto !important;
    }
    
    .on-air-host-img {
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto 10px auto !important;
    }
    
    .premium-history-grid {
        max-height: 250px;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .premium-panel-column h2 {
        font-size: 1.2rem !important;
    }
    .hero-section h1 {
        font-size: 1.8rem !important;
    }
}

/* Radios Grid Responsive */
@media (max-width: 1024px) {
    .radios-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .radios-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .radio-card.featured {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .radio-card.featured .radio-logo-container {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .radios-container {
        grid-template-columns: 1fr;
    }
    
    .radio-card.featured {
        grid-column: span 1;
    }
}
