/* 📱 LAM3 MOBILE PLAYER - CSS ESPECÍFICO PARA MÓVILES */
/* Diseño optimizado exclusivamente para dispositivos móviles */

/* 🔧 RESET Y BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ♿ ACCESIBILIDAD */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #8b5cf6;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* 📱 MOBILE PLAYER CONTAINER */
.mobile-player-container {
    max-width: 100vw;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
    overflow-y: auto;
    padding: 0;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
}

/* 📱 HEADER ORIGINAL ADAPTADO PARA MÓVILES */
.mobile-header-adapted {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Adaptaciones móviles para el header original */
@media (max-width: 768px) {
    .mobile-header-adapted nav {
        padding: 1rem;
    }
    
    .mobile-header-adapted .flex {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    /* Logo y toggle en una fila */
    .mobile-header-adapted .flex > div:first-child {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    /* Logo más pequeño en móvil */
    .mobile-header-adapted #headerLogo {
        height: 1.5rem;
    }
    
    .mobile-header-adapted .text-xl {
        font-size: 1.125rem;
    }
    
    .mobile-header-adapted .text-purple-400 {
        font-size: 0.75rem;
    }
    
    /* Toggle más compacto */
    .mobile-toggle-container {
        padding: 0.25rem !important;
        gap: 0.25rem;
    }
    
    .mobile-toggle-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    .mobile-toggle-btn img {
        height: 1rem !important;
        width: auto;
    }
    
    /* Ocultar menú de navegación en móvil */
    .mobile-header-adapted .hidden.lg\\:flex {
        display: none !important;
    }
    
    /* Acciones del usuario más compactas */
    .mobile-header-adapted .flex > div:last-child {
        justify-content: center;
        gap: 1rem;
    }
    
    .mobile-notification-btn,
    .mobile-profile-btn {
        padding: 0.75rem !important;
        font-size: 1.125rem !important;
    }
    
    .mobile-notification-btn span {
        font-size: 0.625rem !important;
        height: 1rem !important;
        width: 1rem !important;
    }
}

/* Adaptaciones para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-header-adapted nav {
        padding: 1.25rem;
    }
    
    .mobile-header-adapted .flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-header-adapted .flex > div:first-child {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .mobile-header-adapted #headerLogo {
        height: 1.75rem;
    }
    
    .mobile-toggle-btn {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.875rem !important;
    }
}

/* Estilos para el gradiente de radio */
.bg-radio-gradient {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

/* Hover effects para el header original */
.hover-radio:hover {
    color: #f97316 !important;
}

/* 📱 HEADER MÓVIL LIMPIO Y FUNCIONAL */
.mobile-header-clean {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    gap: 1rem;
}

/* Logo Section */
.mobile-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.mobile-logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.mobile-logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.05em;
}

.mobile-logo-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fbbf24;
    letter-spacing: 0.1em;
}

/* Color naranja para RADIO */
.mobile-logo-subtitle.radio-mode {
    color: #f97316;
}

/* Toggle Section */
.mobile-toggle-section {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.25rem;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
    max-width: 200px;
}

.mobile-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle-inactive {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-toggle-inactive:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mobile-toggle-active {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.mobile-toggle-icon {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}

/* Menu Section */
.mobile-menu-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* 🍔 BOTÓN HAMBURGUESA ULTRA MODERNO */
.mobile-hamburger-btn {
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    gap: 0.375rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mobile-hamburger-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-hamburger-btn:hover::before {
    opacity: 1;
}

.mobile-hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mobile-hamburger-btn:active {
    transform: scale(0.95);
}

.mobile-hamburger-line {
    width: 1.5rem;
    height: 0.1875rem;
    background: currentColor;
    border-radius: 0.125rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Animación del hamburguesa cuando está abierto */
.mobile-hamburger-btn.active {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.mobile-hamburger-btn.active .mobile-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.375rem, 0.375rem);
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.mobile-hamburger-btn.active .mobile-hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-hamburger-btn.active .mobile-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem);
    background: linear-gradient(135deg, #f97316, #ea580c);
}

/* Efecto de pulso cuando está activo */
.mobile-hamburger-btn.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 0.6s ease-out;
}

@keyframes pulse {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 4rem;
        height: 4rem;
        opacity: 0;
    }
}

/* 🚀 MENÚ DESPLEGABLE MÓVIL ESPECÍFICO */
.mobile-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-100%) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-radius: 0 0 1.5rem 1.5rem;
    overflow: hidden;
}

.mobile-menu-dropdown.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
    position: relative;
}

.mobile-menu-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-link:hover::before {
    left: 100%;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateX(0.5rem) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mobile-menu-link:active {
    transform: translateX(0.25rem) scale(0.98);
}

.mobile-menu-link i {
    font-size: 1.75rem;
    width: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.mobile-menu-link:hover i {
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

/* Animación de entrada */
.mobile-menu-dropdown.active .mobile-menu-link {
    animation: slideInFromLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateX(-2rem);
}

.mobile-menu-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-link:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* 📱 VISTAS MÓVILES - RADIO Y PODCAST */

.mobile-view {
    padding: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
}

.mobile-view-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* 📻 PLAYER DE RADIO COMPACTO */
.mobile-radio-player {
    background: linear-gradient(135deg, #f97316, #ea580c);
    background-image: url('../../Data-DEMO-PROGRAMAS/IMAGEN.C1.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.mobile-radio-player::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2.5s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.mobile-radio-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.8), rgba(234, 88, 12, 0.8));
    border-radius: 0 0 1rem 1rem;
    z-index: 1;
}

.radio-player-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-player-content > * {
    position: relative;
    z-index: 2;
}

/* Partículas de sonido sutiles */
.sound-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

/* Las partículas ahora se posicionan dinámicamente con JavaScript */

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) translateX(8px) scale(1.5);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-8px) translateX(-5px) scale(1.2);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-20px) translateX(12px) scale(1.3);
        opacity: 0.8;
    }
}

/* Header con EN VIVO y Logo */
.radio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.radio-header-logo {
    height: 24px;
    width: auto;
    filter: brightness(1.2);
}

.radio-live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.radio-live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.radio-current-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.radio-track-thumbnail {
    width: 104px;
    height: 104px;
    border-radius: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.radio-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.radio-track-info {
    flex: 1;
    min-width: 0;
}

.radio-action-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-track-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.radio-track-artist {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    font-weight: 500;
}

.radio-track-album {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 400;
}

.radio-live-banner {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: blur(10px);
}

.radio-progress-container {
    margin-bottom: 0.75rem;
}

.radio-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.radio-progress-fill {
    height: 100%;
    background: white;
    border-radius: 2px;
    width: 78%;
    transition: width 0.1s ease;
}

.radio-time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Controles optimizados con espaciado correcto */
.radio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.radio-action-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.radio-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.radio-main-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.radio-control-btn {
    width: 43px;
    height: 43px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
}

.radio-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.radio-play-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: white;
    color: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.radio-play-btn.playing {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(16, 185, 129, 0.6);
    }
}

.radio-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.radio-current-station {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.radio-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(1.2);
}

.radio-station-bullet {
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

/* 📻 VISTA DE RADIO */
.mobile-radio-content {
    flex: 1;
    padding: 0.5rem 0.75rem 1rem 0.75rem;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}

/* Header eliminado - solo grid de estaciones */

.mobile-stations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.6rem;
    height: calc(60vh - 120px);
    min-height: 240px;
    max-height: 360px;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.radio-station-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.5rem 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    min-height: 80px;
    max-height: 120px;
    overflow: hidden;
    width: 100%;
}

.radio-station-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.radio-station-item.active {
    border-color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}

.radio-station-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    margin-bottom: 0.25rem;
    padding: 0.25rem;
}

.radio-station-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

.radio-station-info {
    flex: 1;
    min-width: 0;
}

.radio-station-name {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.radio-station-frequency {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.radio-station-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.45rem;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: none; /* Ocultar descripción para más espacio */
}

.radio-station-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* Mini stickers de estado online/offline */
.radio-station-status {
    position: relative;
    padding: 0.1rem 0.25rem;
    border-radius: 0.2rem;
    font-size: 0.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 10;
    margin-top: 0.2rem;
    align-self: center;
}

.radio-station-status.online {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.radio-station-status.offline {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.status-text {
    font-size: 0.4rem;
    font-weight: 800;
}

.radio-station-item.active .radio-station-indicator {
    background: #f97316;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

/* Animación para el indicador EN VIVO */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* CSS duplicado eliminado - usar solo el grid 4x2 */

.mobile-station-card {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 60px;
}

.mobile-station-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mobile-station-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.25rem;
}

.mobile-station-info {
    flex: 1;
}

.mobile-station-info h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.mobile-station-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0 0 0.25rem 0;
}

.mobile-station-genre {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
}

.mobile-station-play {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-station-play:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* 🎧 CARDS DE PODCAST MEJORADAS */
.mobile-podcast-card-enhanced {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

.mobile-podcast-card-enhanced:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mobile-podcast-thumbnail-enhanced {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
}

.mobile-podcast-thumbnail-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mobile-podcast-card-enhanced:hover .mobile-podcast-thumbnail-enhanced img {
    transform: scale(1.05);
}

.mobile-podcast-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-podcast-card-enhanced:hover .mobile-podcast-overlay {
    opacity: 1;
}

.mobile-podcast-play-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(249, 115, 22, 0.4),
        0 0 0 4px rgba(249, 115, 22, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: pulse-glow 2s infinite;
}

.mobile-podcast-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(249, 115, 22, 0.6),
        0 0 0 6px rgba(249, 115, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mobile-podcast-play-btn:active {
    transform: scale(0.95);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(249, 115, 22, 0.4),
            0 0 0 4px rgba(249, 115, 22, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(249, 115, 22, 0.6),
            0 0 0 6px rgba(249, 115, 22, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.mobile-podcast-info-enhanced {
    padding: 1.5rem;
}

.mobile-podcast-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.mobile-podcast-header h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.mobile-podcast-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    color: #fbbf24;
    font-size: 0.875rem;
    font-weight: 600;
}

.mobile-podcast-rating i {
    font-size: 0.875rem;
}

.mobile-podcast-host {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0 0 0.75rem 0;
    font-weight: 500;
}

.mobile-podcast-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-podcast-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.mobile-podcast-episodes,
.mobile-podcast-duration {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
}

.mobile-podcast-genre {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    background: rgba(139, 92, 246, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Efectos adicionales para las cards */
.mobile-podcast-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.05) 0%,
        rgba(249, 115, 22, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-podcast-card-enhanced:hover::before {
    opacity: 1;
}

/* Animación de entrada para las cards */
.mobile-podcast-card-enhanced {
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(2rem);
}

.mobile-podcast-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.mobile-podcast-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
.mobile-podcast-card-enhanced:nth-child(3) { animation-delay: 0.3s; }
.mobile-podcast-card-enhanced:nth-child(4) { animation-delay: 0.4s; }
.mobile-podcast-card-enhanced:nth-child(5) { animation-delay: 0.5s; }
.mobile-podcast-card-enhanced:nth-child(6) { animation-delay: 0.6s; }

/* 🎧 VISTA DE PODCAST */
.mobile-podcast-content {
    max-width: 100%;
}

.mobile-podcasts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.mobile-podcast-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-podcast-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mobile-podcast-thumbnail {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.mobile-podcast-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-podcast-info {
    flex: 1;
}

.mobile-podcast-info h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.mobile-podcast-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0 0 0.25rem 0;
}

.mobile-podcast-episodes {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.mobile-podcast-genre {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
}

.mobile-podcast-play {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-podcast-play:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* 📱 RESPONSIVE PARA TABLETS */
@media (min-width: 768px) {
    .mobile-stations-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .mobile-podcasts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mobile-stations-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .mobile-podcasts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive adjustments para pantallas móviles */
@media (max-width: 375px) {
    .mobile-stations-grid {
        height: calc(45vh - 80px);
        min-height: 180px;
        gap: 0.4rem;
        padding: 0.75rem;
    }
    
    .radio-station-item {
        min-height: 70px;
        max-height: 100px;
        padding: 0.5rem;
        gap: 0.4rem;
    }
    
    .radio-station-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .radio-station-name {
        font-size: 0.7rem;
    }
    
    .radio-station-frequency {
        font-size: 0.6rem;
    }
}

@media (min-width: 376px) and (max-width: 414px) {
    .mobile-stations-grid {
        height: calc(50vh - 100px);
        min-height: 200px;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .radio-station-item {
        min-height: 80px;
        max-height: 120px;
        padding: 0.75rem;
        gap: 0.5rem;
    }
}

@media (min-width: 415px) {
    .mobile-stations-grid {
        height: calc(50vh - 100px);
        min-height: 220px;
        max-height: 320px;
        gap: 0.6rem;
        padding: 1.25rem;
    }
    
    .radio-station-item {
        min-height: 90px;
        max-height: 140px;
        padding: 1rem;
        gap: 0.6rem;
    }
    
    .radio-station-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .radio-station-name {
        font-size: 0.85rem;
    }
    
    .radio-station-frequency {
        font-size: 0.7rem;
    }
}

@media (max-width: 375px) {
    .mobile-header-clean {
        padding: 0.75rem;
    }
    
    .mobile-logo-img {
        width: 2rem;
        height: 2rem;
    }
    
    .mobile-logo-title {
        font-size: 1.125rem;
    }
    
    .mobile-logo-subtitle {
        font-size: 0.75rem;
    }
    
    .mobile-toggle-btn {
        padding: 0.375rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .mobile-action-btn {
        width: 2rem;
        height: 2rem;
    }
}

/* 🎵 PLAYER ESTILO SPOTIFY */
.spotify-player {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    text-align: center;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* 📖 SECCIONES DE DESCRIPCIÓN Y EPISODIOS */
.mobile-description-section {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.mobile-episodes-section {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.mobile-section-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-episodes-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-episode-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.mobile-episode-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.mobile-episode-info {
    flex: 1;
    text-align: left;
}

.mobile-episode-title {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 0 0.15rem 0;
    line-height: 1.2;
}

.mobile-episode-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-episode-play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #fbbf24;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 0.7rem;
}

.mobile-episode-play:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

/* 🎨 COVER ART ESTILO SPOTIFY */
.spotify-cover-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.spotify-cover-art {
    width: 240px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.3s ease;
}

.spotify-cover-art:hover {
    transform: scale(1.02);
}

.spotify-cover-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-cover-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.mobile-live-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #10b981;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 10;
}

.mobile-live-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* 📝 INFORMACIÓN DEL TRACK ESTILO SPOTIFY */
.spotify-track-info {
    margin-bottom: 2rem;
    text-align: center;
}

.spotify-track-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.spotify-track-artist {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.mobile-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-rating-value {
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}


/* ⏱️ BARRA DE PROGRESO ANCHO COMPLETO */
.mobile-progress-section {
    margin-bottom: 0.75rem;
    padding: 0;
}

.mobile-progress-bar {
    width: 100%;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
    cursor: pointer;
    position: relative;
}

.mobile-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    border-radius: 0.25rem;
    transition: width 0.3s ease;
    position: relative;
}

.mobile-progress-fill::after {
    content: '';
    position: absolute;
    right: -0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-time-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ⏱️ BARRA DE PROGRESO ESTILO SPOTIFY */
.spotify-progress-container {
    margin-bottom: 1.5rem;
}

.spotify-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.spotify-progress-bar:hover {
    height: 6px;
}

.spotify-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    transition: width 0.1s ease;
    position: relative;
}

.spotify-progress-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.spotify-progress-bar:hover .spotify-progress-fill::after {
    opacity: 1;
}

.spotify-time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* 🎮 CONTROLES PRINCIPALES ESTILO SPOTIFY */
.spotify-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.spotify-control-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.spotify-control-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.spotify-play-btn {
    width: 64px;
    height: 64px;
    border: none;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
}

.spotify-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

.spotify-play-btn:active {
    transform: scale(0.95);
}

/* 🎛️ CONTROLES SECUNDARIOS ESTILO SPOTIFY */
.spotify-secondary-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0;
}

.spotify-action-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.spotify-action-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.spotify-action-btn:active {
    transform: scale(0.95);
}

/* 🎮 CONTROLES PRINCIPALES */
.mobile-main-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    width: 100%;
}

.mobile-control-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-control-btn:hover,
.mobile-control-btn:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-control-btn:active {
    transform: scale(0.95);
}

.mobile-play-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
    -webkit-tap-highlight-color: transparent;
}

.mobile-play-btn:hover,
.mobile-play-btn:focus {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.6);
}

.mobile-play-btn:active {
    transform: scale(0.95);
}

/* 🎛️ CONTROLES SECUNDARIOS */
.mobile-secondary-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    width: 100%;
}

.mobile-action-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-action-btn:hover,
.mobile-action-btn:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mobile-action-btn:active {
    transform: scale(0.95);
}

/* 📋 EPISODIO ACTUAL */
.mobile-current-episode {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.mobile-episode-bullet {
    color: #fbbf24;
    font-weight: bold;
    font-size: 1rem;
}

/* 📝 SECCIÓN DE DESCRIPCIÓN */
.mobile-description-section {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 0.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-host-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-host-photo {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-host-text h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.mobile-host-text p {
    color: #a78bfa;
    font-size: 0.875rem;
}

.mobile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mobile-tag {
    padding: 0.375rem 0.75rem;
    background: rgba(251, 191, 36, 0.2);
    color: rgba(251, 191, 36, 0.9);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.mobile-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    max-width: 100%;
}

/* 📋 LISTA DE EPISODIOS */
.mobile-episodes-section {
    padding: 1rem;
}

.mobile-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mobile-episodes-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mobile-episode-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-episode-item:hover,
.mobile-episode-item:focus {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.mobile-episode-thumbnail {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.mobile-episode-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-episode-info {
    flex: 1;
    min-width: 0;
}

.mobile-episode-title {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.mobile-episode-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.mobile-episode-play {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background: #fbbf24;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-episode-play:hover,
.mobile-episode-play:focus {
    background: #f59e0b;
    transform: scale(1.1);
}

.mobile-see-more-btn {
    width: 100%;
    padding: 0.75rem;
    background: rgba(251, 191, 36, 0.2);
    color: rgba(251, 191, 36, 0.9);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-see-more-btn:hover,
.mobile-see-more-btn:focus {
    background: rgba(251, 191, 36, 0.3);
    transform: translateY(-1px);
}

/* 🪟 MODAL */
.mobile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-modal.active {
    opacity: 1;
    visibility: visible;
}

.mobile-modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 1rem;
    width: 100%;
    max-width: 90vw;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mobile-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-modal-header h2 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.mobile-modal-close {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-modal-close:hover,
.mobile-modal-close:focus {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-modal-body {
    padding: 1rem;
    max-height: 60vh;
    overflow-y: auto;
}

/* 📱 RESPONSIVE ADJUSTMENTS */
@media (max-width: 375px) {
    .mobile-cover-art {
        width: 180px;
        height: 180px;
    }
    
    .mobile-podcast-title {
        font-size: 1.75rem;
    }
    
    .mobile-main-controls {
        gap: 1.5rem;
    }
    
    .mobile-play-btn {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }
}

@media (min-width: 414px) {
    .mobile-cover-art {
        width: 220px;
        height: 220px;
    }
    
    .mobile-podcast-title {
        font-size: 2.25rem;
    }
    
    .mobile-main-controls {
        gap: 2.5rem;
    }
}

@media (min-width: 768px) {
    .mobile-player-container {
        max-width: 480px;
        margin: 0 auto;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    }
}

/* ♿ ACCESIBILIDAD MEJORADA */
@media (prefers-reduced-motion: reduce) {
    .mobile-waveform-bar,
    .mobile-live-dot {
        animation: none;
    }
    
    .mobile-control-btn,
    .mobile-play-btn,
    .mobile-action-btn {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .mobile-progress-bar {
        border: 1px solid white;
    }
    
    .mobile-control-btn,
    .mobile-action-btn {
        border: 1px solid white;
    }
}

/* 🚀 OPTIMIZACIONES DE RENDIMIENTO */
.mobile-player-container,
.mobile-cover-art,
.mobile-main-controls {
    will-change: transform;
    transform: translateZ(0);
}

.mobile-cover-art img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* 🎨 UTILIDADES */
.mobile-hidden {
    display: none !important;
}

.mobile-center {
    text-align: center;
}

/* 🎧 ESTILOS PARA TARJETAS DE PODCASTS */
.mobile-podcasts-list {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(251, 191, 36, 0.5) transparent;
    flex: 1;
}

.mobile-podcasts-list::-webkit-scrollbar {
    width: 4px;
}

.mobile-podcasts-list::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-podcasts-list::-webkit-scrollbar-thumb {
    background: rgba(251, 191, 36, 0.5);
    border-radius: 2px;
}

.mobile-podcast-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.75rem;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    min-height: 80px;
}

.mobile-podcast-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.podcast-card-content {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.podcast-thumbnail {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.podcast-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mobile-podcast-card:hover .podcast-thumbnail img {
    transform: scale(1.05);
}

/* Botón de play sobre la imagen */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.podcast-thumbnail:hover .play-button-overlay {
    opacity: 1;
}

.play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.play-button-overlay i {
    margin-left: 2px;
}

.live-indicator {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 2px;
    backdrop-filter: blur(5px);
}

/* Logo LAM3 y valoración en la esquina superior derecha de la tarjeta */
.podcast-logo {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    padding: 3px 6px;
    backdrop-filter: blur(5px);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-img {
    height: 12px;
    width: auto;
    filter: brightness(1.2);
}

.live-dot {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.podcast-info {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 120px);
}

.podcast-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0.15rem;
    flex-wrap: wrap;
}

.podcast-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    flex: 1;
    min-width: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    white-space: normal;
}

.podcast-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-shrink: 0;
}

.stars {
    color: #fbbf24;
    font-size: 0.6rem;
    opacity: 0.9;
}

.rating-value {
    color: #fbbf24;
    font-size: 0.6rem;
    font-weight: 500;
    opacity: 0.9;
}

.podcast-host {
    color: rgba(251, 191, 36, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0 0 0.1rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.podcast-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    margin: 0 0 0.3rem 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.podcast-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.podcast-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.2rem;
    margin-bottom: 0;
    justify-content: flex-start;
    overflow: hidden;
}

.tag {
    background: rgba(251, 191, 36, 0.15);
    color: rgba(251, 191, 36, 0.7);
    padding: 0.1rem 0.25rem;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 400;
    border: 1px solid rgba(251, 191, 36, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.play-button {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.play-button i {
    font-size: 1.1rem;
    margin-left: 2px;
}

/* Responsive para pantallas muy pequeñas */
@media (max-width: 360px) {
    .podcast-card-content {
        gap: 0.75rem;
    }
    
    .podcast-thumbnail {
        width: 70px;
        height: 70px;
    }
    
    .podcast-title {
        font-size: 1rem;
    }
    
    .podcast-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 1;
    }
    
    .tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
}

/* 🎵 MINI-REPRODUCTOR PERSISTENTE (FIXED PLAYER) */
.fixed-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    border-top: 1px solid rgba(251, 191, 36, 0.3);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.75rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fixed-player-content {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    gap: 0.75rem;
    max-width: 100%;
}

.fixed-player-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.fixed-player-thumbnail {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.fixed-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fixed-player-type-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fixed-player-type {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(0, 0, 0, 0.8);
    color: #fbbf24;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 1px 3px;
    border-radius: 3px;
    text-transform: uppercase;
}

.fixed-player-details {
    flex: 1;
    min-width: 0;
}

.fixed-player-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.15rem 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixed-player-subtitle {
    font-size: 0.75rem;
    color: rgba(251, 191, 36, 0.9);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixed-player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.fixed-control-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fixed-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.fixed-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.fixed-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.fixed-player-progress {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.fixed-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.fixed-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    transition: width 0.1s ease;
}

.fixed-time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.fixed-close-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.fixed-close-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    transform: scale(1.05);
}

/* Responsive para el fixed player */
@media (max-width: 480px) {
    .fixed-player-content {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .fixed-player-thumbnail {
        width: 40px;
        height: 40px;
    }
    
    .fixed-player-title {
        font-size: 0.8rem;
    }
    
    .fixed-player-subtitle {
        font-size: 0.7rem;
    }
    
    .fixed-control-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .fixed-play-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .fixed-close-btn {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
}

.mobile-compact {
    margin: 0.5rem 0;
    padding: 0.5rem;
}

.mobile-full-width {
    width: 100%;
    max-width: 100%;
}

/* ===== FOOTER MÓVIL ===== */
.mobile-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem 1rem 1rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.mobile-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent);
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Logo Principal */
.footer-logo-section {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-main-logo {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.footer-main-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3);
}

/* Información de Contacto */
.footer-contact-info {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-brand {
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-sub-brand {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    letter-spacing: 0.5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.3rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.contact-item:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.contact-item i {
    font-size: 0.9rem;
    color: #fbbf24;
    width: 16px;
    text-align: center;
}

/* Módulos Compactos */
.footer-modules {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-module-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.footer-module {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    padding: 0.6rem;
    text-align: left;
}

.footer-module-full {
    grid-column: 1 / -1;
}

.footer-module-title {
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.2rem;
}

.footer-module-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-module-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.55rem;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.footer-module-link:hover {
    color: white;
}

/* Iconos Sociales */
.footer-social-icons {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Contacto Compacto */
.footer-contact-compact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.55rem;
    line-height: 1.2;
}

.footer-contact-item i {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    width: 12px;
    text-align: center;
}

/* Soporte Horizontal */
.footer-support-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.footer-support-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.55rem;
    transition: all 0.3s ease;
}

.footer-support-link:hover {
    color: white;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.5rem;
}

/* Legal Compacto */
.footer-legal-compact {
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.6rem 0.75rem;
}

.footer-legal-compact .legal-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    line-height: 1.3;
    text-align: center;
}

/* Acentos por modo */
body.radio-mode .footer-section-title,
body.radio-mode .contact-item i,
body.radio-mode .footer-main-logo {
    filter: brightness(1.1);
}

body.radio-mode .footer-section-title { color: #f97316; }
body.radio-mode .footer-nav-link:hover { color: #f97316; }
body.radio-mode .contact-item:hover { background: rgba(249, 115, 22, 0.12); color: #f97316; }

body.podcast-mode .footer-section-title { color: #fbbf24; }
body.podcast-mode .footer-nav-link:hover { color: #fbbf24; }
body.podcast-mode .contact-item:hover { background: rgba(251, 191, 36, 0.12); color: #fbbf24; }

/* Responsive Footer */
@media (max-width: 480px) {
    .footer-module-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .footer-module {
        text-align: center;
        padding: 0.5rem;
    }
    
    .footer-module-links {
        align-items: center;
    }
    
    .footer-module-link {
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-support-links {
        justify-content: center;
    }
}

@media (max-width: 375px) {
    .mobile-footer {
        padding: 1.2rem 0.6rem 0.8rem 0.6rem;
    }
    
    .footer-content {
        gap: 1.2rem;
    }
    
    .footer-modules {
        gap: 0.6rem;
    }
    
    .footer-module {
        padding: 0.5rem;
    }
    
    .footer-module-title {
        font-size: 0.6rem;
    }
    
    .footer-module-link {
        font-size: 0.5rem;
    }
    
    .footer-social-icon {
        width: 18px;
        height: 18px;
        font-size: 0.55rem;
    }
    
    .footer-contact-item {
        font-size: 0.5rem;
    }
    
    .footer-support-link {
        font-size: 0.5rem;
    }
    
    .footer-legal-compact .legal-text {
        font-size: 0.6rem;
    }
}
