    
        :root {
            --primary-color: white;
            --body-bg: #121212;
            --card-bg: #1e1e1e;
            --text-color: #ecf0f1;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --loading-color: #f9f9f9;
            --live-color: #e74c3c;
            --spectrum-color: #1a73e8; /* Culoarea albastră pentru indicatorul și bara de volum */
            --accordion-header-bg: #1e1e1e;
        }

        body { 
            font-family: sans-serif; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            background-color: var(--body-bg); 
            margin: 0; 
            gap: 20px; 
            padding-top: 20px; 
            padding-bottom: 20px; 
            padding-left: 20px;
            padding-right: 20px;
            overflow-x: hidden;
            min-height: 100vh; 
        }
        
        .page-title {
            color: #f9f9f9;
            text-align: center;
            margin-bottom: 10px; 
            font-size: 24px;
            width: 100%;
            box-sizing: border-box;
        }

        /* STILURI PENTRU MENIU */
        .main-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .nav-link {
            color: #f9f9f9;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .nav-link:hover, .nav-link:focus {
            background-color: var(--card-bg);
            text-decoration: underline;
        }

        /* SFÂRȘIT STILURI MENIU */

        .page-info { font-size: 12px; color: #aaa; }
        .radio-player-widget { width: 100%; max-width: 280px; background-color: var(--card-bg); border-radius: 10px; padding: 15px; box-shadow: var(--shadow); text-align: center; position: relative; padding-bottom: 50px; transition: max-width 0.3s ease-in-out; color: var(--text-color); box-sizing: border-box; }
        .accordion-widget { width: 100%; max-width: 280px; background-color: var(--card-bg); border-radius: 10px; box-shadow: var(--shadow); color: var(--text-color); box-sizing: border-box; overflow: hidden; }
        .accordion-header { background-color: var(--accordion-header-bg); padding: 15px; cursor: pointer; text-align: center; font-weight: bold; display: flex; justify-content: space-between; align-items: center; }
        .accordion-content { padding: 0 15px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
        .accordion-content.is-open { max-height: 500px; padding-top: 15px; padding-bottom: 15px; }
        .container-program { font-size: 12px; color: #aaaaaa; text-align: left; white-space: pre-wrap; }
        .player-controls { display: block; margin-bottom: 15px; }
        .track-info { margin-bottom: 15px; min-height: 50px; }
        .song-title { font-size: 14px; font-weight: bold; color: var(--text-color); white-space: normal; overflow-wrap: break-word; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .radio-name { font-size: 12px; color: white; margin: 2px 0 0 0; }
        .widget-indicator { position: absolute; bottom: 10px; padding: 4px 8px; border-radius: 4px; font-size: 10px; font-weight: bold; text-transform: uppercase; cursor: pointer; transition: opacity 0.3s, background-color 0.3s; }
        .live-indicator { display: none; right: 15px; background-color: var(--live-color); color: white; animation: livePulse 1.5s infinite; }
        .live-indicator.active { display: block; }
        @keyframes livePulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(0.95); } 100% { transform: scale(1); opacity: 1; } }
        .spectrum-indicator { left: 15px; background-color: #257AFF; color: white; }
        .spectrum-indicator.inactive { opacity: 0.6; background-color: #555; }
        .volume-container { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 20px; color: var(--text-color); justify-content: center; }
        .volume-btn { cursor: pointer; font-weight: bold; user-select: none; padding: 0 5px; }
        input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; cursor: pointer; }
        input[type=range]:focus { outline: none; }
        input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 20px; width: 20px; border-radius: 50%; background: #f9f9f9; cursor: pointer; margin-top: -6px; }
        input[type=range]::-moz-range-thumb { height: 20px; width: 20px; border-radius: 50%; background: #f9f9f9; cursor: pointer; }
        input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 4px; border-radius: 4px; }
        input[type=range]::-moz-range-track { width: 100%; height: 4px; border-radius: 4px; }
        .message { padding: 10px; margin-bottom: 15px; border-radius: 5px; }
        .success { background-color: #dff0d8; color: #3c763d; border: 1px solid #d6e9c6; }
        .error { background-color: #f2dede; color: #a94442; border: 1px solid #ebccd1; }
        
        /* --- STILURI PENTRU WIDGET-UL DE VOTARE ADAUGATE AICI --- */
        .melodie-container {
            display: flex;
            justify-content: space-between; 
            align-items: center;
            padding: 12px 8px;
            border-bottom: 1px solid #ccc;
        }

        .melodie-title {
            flex-grow: 1; 
            margin-right: 15px;
            font-size: 14px; /* Text melodie mai mic */
        }

        .vot-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .voturi-count { 
            font-weight: bold; 
            color: #1a73e8; 
            width: 60px; /* Lățime ajustată */
            text-align: right;
            font-size: 12px; /* Text voturi mai mic */
        }

        input[type="checkbox"] {
            transform: scale(1.2); 
            cursor: pointer;
        }

        .vot-btn { background-color: #1a73e8; color: white; border: none; padding: 10px 20px; cursor: pointer; border-radius: 4px; margin-top: 20px; width: 100%; }
        .vot-btn:disabled { background-color: #ccc; cursor: not-allowed; }
        /* --- SFARSIT STILURI PENTRU WIDGET-UL DE VOTARE --- */


        /* Stil pentru Butonul de Play/Pauza (Text incadrat in cerc albastru) */
        .play-button {
            width: 80px; /* Latime fixa, ajustata pentru a incadra textul */
            height: 80px; 
            background-color: #2e2e2e; /* Fundal albastru */
            border: 2px solid #969696; 
            border-radius: 50%; /* Forma rotunda */
            font-size: 14px; /* Dimensiune text */
            font-weight: bold; /* Text ingrosat */
            display: flex;
            justify-content: center; 
            align-items: center; 
            cursor: pointer; 
            margin: 0 auto;
            transition: background-color 0.3s, transform 0.3s;
            box-sizing: border-box;
            color: white; /* Culoare text alba */
            text-transform: uppercase; /* Text cu majuscule */
        }

        .play-button:hover {
             background-color: #3b3b3b; /* Efect de hover (albastru mai intens) */
        }
        
        /* Stilul de Loading: arata similar dar se modifica textul in JS */
        .play-button.loading { 
            background-color: #2e2e2e; 
            cursor: wait; 
            animation: pulse 1.5s infinite; 
            width: auto; /* Se extinde pentru textul "Loading..." */
            padding: 0 20px;
            border-radius: 40px; /* Radius mai mare pentru forma ovala la loading */
        }
        
        @keyframes pulse { 
            0% { transform: scale(1); opacity: 1; } 
            50% { transform: scale(1.05); opacity: 0.8; } 
            100% { transform: scale(1); opacity: 1; } 
        }

        canvas { width: 100%; height: 150px; background-color: #1e1e1e; border-radius: 5px; margin-top: 15px; display: block; }
        canvas.hidden { display: none; }
        audio { display: none; }
        @media screen and (max-width: 600px) { .radio-player-widget, .accordion-widget { max-width: 100%; } }
