 /* ESTILOS GENERALES */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* ESTRUCTURA PRINCIPAL */
        .container {
            display: flex;
            min-height: 100vh;
            padding-bottom: 80px; /* Espacio para el reproductor flotante */
        }
        
        /* BARRA LATERAL */
        .sidebar {
            width: 250px;
            background-color: #2c2c2c;
            color: #fff;
            padding: 20px;
            position: fixed;
            height: 100%;
            overflow-y: auto;
        }
        
        .logo h2 {
            color: #1db954;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .search {
            display: flex;
            margin-bottom: 20px;
        }
        
        .search input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
        }
        
        .search button {
            background-color: #1db954;
            border: none;
            padding: 0 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        .menu h3 {
            color: #aaa;
            font-size: 14px;
            margin: 25px 0 10px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .menu ul {
            list-style: none;
        }
        
        .menu li {
            padding: 8px 0;
            transition: all 0.3s ease;
        }
        
        .menu li:hover {
            transform: translateX(5px);
        }
        
        .menu li a {
            color: #fff;
            display: block;
            padding: 5px 0;
        }
        
        .menu li.active a {
            color: #1db954;
            font-weight: bold;
        }
        
        /* CONTENIDO PRINCIPAL */
        .main-content {
            flex: 1;
            padding: 30px;
            margin-left: 250px; /* Igual al ancho del sidebar */
        }
        
        .header h1 {
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .tabs {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin-bottom: 25px;
        }
        
        .tabs a {
            padding: 10px 20px;
            margin-right: 5px;
            color: #666;
            font-weight: 500;
        }
        
        .tabs a.active {
            color: #1db954;
            border-bottom: 2px solid #1db954;
            font-weight: 600;
        }
        
        /* BARRA DE CONTROLES */
        .controls-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .left-controls button {
            background-color: #1db954;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            margin-right: 10px;
            transition: background-color 0.3s;
        }
        
        .left-controls button:hover {
            background-color: #1ed760;
        }
        
        .btn {
            background-color: #333;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #444;
        }
        
        .right-controls {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .sort, .filter {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .sort label, .filter label {
            font-weight: 500;
            color: #555;
        }
        
        select {
            padding: 8px 12px;
            border-radius: 4px;
            border: 1px solid #ddd;
            background-color: white;
            cursor: pointer;
        }
        
        /* GRILLA DE EMISORAS */
        .emisoras-grid {
            margin-top: 20px;
        }
        
        .emisoras-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .emisora-card {
            width: calc(20% - 16px);
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .emisora-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        .emisora-imagen {
            position: relative;
            padding-top: 100%;
            background-color: #f0f0f0;
        }
        
        .emisora-imagen img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .emisora-card:hover .play-overlay {
            opacity: 1;
        }
        
        .play-btn {
            background-color: #1db954;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 18px;
            transition: transform 0.3s, background-color 0.3s;
        }
        
        .play-btn:hover {
            background-color: #1ed760;
            transform: scale(1.1);
        }
        
        .emisora-card h3 {
            margin: 12px;
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .emisora-card p {
            margin: 0 12px 12px 12px;
            font-size: 13px;
            color: #777;
        }
        
        /* MENSAJES */
        .no-results {
            text-align: center;
            padding: 40px;
            color: #666;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .no-results a {
            color: #1db954;
            font-weight: 500;
        }
        
        .error-message {
            background-color: #ffebee;
            color: #c62828;
            padding: 15px;
            border-radius: 4px;
            margin: 20px 0;
            border-left: 4px solid #c62828;
        }
        
        /* REPRODUCTOR FLOTANTE */
        .floating-player {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #2c2c2c;
            padding: 15px 0;
            box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            color: white;
            border-top: 1px solid #444;
        }
        
        .player-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        #player-info {
            margin-bottom: 10px;
            font-size: 14px;
            color: #1db954;
            font-weight: 500;
            text-align: center;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .player-controls {
            width: 100%;
            max-width: 500px;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 25px;
            margin-bottom: 10px;
        }
        
        #play-btn {
            background-color: #1db954;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        #play-btn:hover {
            background-color: #1ed760;
        }
        
        #prev-btn, #next-btn {
            background: none;
            border: none;
            color: #aaa;
            cursor: pointer;
            font-size: 18px;
            transition: color 0.3s;
        }
        
        #prev-btn:hover, #next-btn:hover {
            color: #1db954;
        }
        
        .progress-bar {
            width: 100%;
            height: 4px;
            background-color: #444;
            border-radius: 2px;
            cursor: pointer;
            margin-bottom: 5px;
        }
        
        .progress {
            height: 100%;
            background-color: #1db954;
            border-radius: 2px;
            width: 0%;
            transition: width 0.1s;
        }
        
        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .emisora-card {
                width: calc(25% - 15px);
            }
        }
        
        @media (max-width: 992px) {
            .sidebar {
                width: 200px;
                padding: 15px;
            }
            
            .main-content {
                margin-left: 200px;
            }
            
            .emisora-card {
                width: calc(33.333% - 14px);
            }
        }
        
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                padding-bottom: 120px;
            }
            
            .sidebar {
                position: relative;
                width: 100%;
                height: auto;
            }
            
            .main-content {
                margin-left: 0;
            }
            
            .emisora-card {
                width: calc(50% - 10px);
            }
            
            .controls-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .right-controls {
                width: 100%;
                justify-content: space-between;
            }
        }
        
        @media (max-width: 576px) {
            .emisora-card {
                width: 100%;
            }
            
            .floating-player {
                padding: 10px 0;
            }
            
            #player-info {
                font-size: 12px;
            }
            
            .controls {
                gap: 15px;
            }

            /* Estilos adicionales para el buscador */
        .search {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .search input {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            flex-grow: 1;
        }
        
        .search button {
            background: #1DB954;
            border: none;
            border-radius: 0 4px 4px 0;
            padding: 8px 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .search button:hover {
            background: #1ed760;
        }
        
        .search button img {
            width: 16px;
            height: 16px;
        }

        /* Estilos para los géneros */
        .emisora-generos {
            font-size: 0.9em;
            color: #666;
            margin-top: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        }