.player-container {
            width: 80%;
            max-width: 1080px;
            margin: 0 auto;
            position: relative;
        }

        iframe {
            width: 100%;
            height: 450px;
            border: none;
        }

        .status-indicator {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 15px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .status-indicator.aovivo {
            background: red;
        }

        .status-indicator.gravado {
            background: gray;
        }
        
        
        
        
        /*******************************************Player da Radio*********************************************/
        
       :root {
            --aovivocetral-primary-blue: #0056b3;
            --aovivocetral-secondary-blue: #007bff;
            --aovivocetral-hover-blue: #003d7a;
            --aovivocetral-hover-vermelho: #f00;
            --aovivocetral-player-height-desktop: 60px;
            --aovivocetral-player-height-mobile: 60px;
        }

        /* Reset e Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       

        /* Player Base */
        .aovivocetral-player-wrapper {
            width: 100%;
            background: #ffffff;
            z-index: 1030;
            transition: all 0.3s ease;
            box-shadow: 0 2px 15px rgba(0, 86, 179, 0.15),
                       0 4px 8px rgba(0, 123, 255, 0.1);
        }

        .aovivocetral-player-fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
        }

        .aovivocetral-player {
            height: var(--aovivocetral-player-height-desktop);
            background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
            padding: 7px 0;
        }

        /* Logo */
        .aovivocetral-logo {
            height: 45px;
            width: auto;
            max-width: 40px;
            object-fit: contain;
        }

        /* Play Button */
        .aovivocetral-play-button {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--aovivocetral-secondary-blue);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .aovivocetral-play-button:hover {
            background: var(--aovivocetral-hover-blue);
            transform: scale(1.05);
        }

        /* Now Playing */
        .aovivocetral-now-playing {
            color: var(--aovivocetral-primary-blue);
            font-size: 0.95rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 443px;
        }

        /* AO VIVO Badge */
        .aovivocetral-live-badge {
            background: var(--aovivocetral-hover-vermelho);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            white-space: nowrap;
        }

        .aovivocetral-live-badge:hover {
            background: var(--aovivocetral-hover-blue);
            transform: scale(1.05);
        }

        .aovivocetral-live-indicator {
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            animation: aovivocetral-blink 1s infinite;
        }

        /* Video Container */
        .aovivocetral-video-container {
            background: #000;
            margin-top: var(--aovivocetral-player-height-desktop);
            transition: all 0.3s ease;
            display: none;
        }

        .aovivocetral-video-container.show {
            display: block;
        }

        @keyframes aovivocetral-blink {
            0% { opacity: 1; }
            50% { opacity: 0.4; }
            100% { opacity: 1; }
        }

        /* Desktop Layout */
        @media (min-width: 769px) {
            .aovivocetral-desktop-flex {
                display: flex;
                align-items: center;
                gap: 20px;
            }
            
            .aovivocetral-controls-group {
                display: flex;
                align-items: center;
                gap: 15px;
            }
        }

        /* Mobile Layout */
        @media (max-width: 768px) {
            .aovivocetral-player {
                height: var(--aovivocetral-player-height-mobile);
                padding: 12px 0;
            }

            .aovivocetral-logo {
                height: 35px;
                max-width: 120px;
            }

            .aovivocetral-play-button {
                width: 35px;
                height: 35px;
            }

            .aovivocetral-now-playing {
                display: none;
            }

            .aovivocetral-live-badge {
                padding: 5px 15px;
                font-size: 0.9em;
            }

            .aovivocetral-video-container {
                margin-top: var(--aovivocetral-player-height-mobile);
            }

            /* Centralização no Mobile */
            .aovivocetral-mobile-center {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 15px;
            }
        }
        
        
        /*************************************Atualizaç~´ao do play**************************************/
      