
        .zg-radio-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .zg-radio-wrapper {
            --zg-bleu-profond: #041434;
            --zg-bleu-vibrant: #0a2c75;
            --zg-bleu-electrique: #1e4a9e;
            --zg-rouge-passion: #e10600;
            --zg-jaune-dore: #facf0f;
            --zg-jaune-ambiance: #ffdd55;
            --zg-blanc-cristal: #ffffff;
            --zg-noir-texte: #111827;
            --zg-gris-sublime: #f8fafc;
            --zg-gris-elegant: #eef2ff;
            --zg-gris-border: #e2e8f0;
            --zg-ombre-douce: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            --zg-ombre-legere: 0 10px 30px -10px rgba(10, 44, 117, 0.1);
            --zg-transition-douce: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            --zg-gradient-bleu: linear-gradient(135deg, #041434 0%, #0a2c75 50%, #1e4a9e 100%);
            --zg-gradient-jaune: linear-gradient(135deg, #facf0f 0%, #ffdd77 50%, #ffb347 100%);
            --zg-gradient-card: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,245,0.98) 100%);
            
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.5;
        }

        .zg-radio-container {
          width: 100%;
        }

        .zg-player-card {
            max-width: 1500px;
            margin: 0 auto;
            width: 100%;
            position: relative;
        }

        .zg-player-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            z-index: 2;
        }

        .zg-radio-header {
            background: var(--zg-gradient-bleu);
            padding: 2.5rem 2rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .zg-radio-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0;
            right: 0;
            height: 40px;
            background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%, transparent 70%);
            filter: blur(10px);
            pointer-events: none;
        }

        .zg-radio-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            padding: 0.5rem 1.3rem;
            border-radius: 60px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--zg-jaune-dore);
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .zg-radio-badge i {
            font-size: 0.9rem;
            animation: zg-pulse 2s infinite;
        }

        @keyframes zg-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .zg-radio-title {
            font-size: 3rem;
            font-weight: 800;
            background: var(--zg-gradient-jaune);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
            font-family: 'Poppins', sans-serif;
        }

        .zg-radio-slogan {
            color: rgba(255,255,245,0.9);
            font-weight: 400;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .zg-cover-area {
            text-align: center;
            position: relative;
        }

        .zg-vinyl-effect {
            position: relative;
            display: inline-block;
        }

        .zg-wave-animation {
            font-size: 4.5rem;
            background: linear-gradient(135deg, var(--zg-bleu-vibrant), var(--zg-jaune-dore), var(--zg-rouge-passion));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
            filter: drop-shadow(0 5px 15px rgba(10,44,117,0.2));
            animation: zg-rotate 8s linear infinite;
        }

        @keyframes zg-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .zg-station-name {
            font-weight: 800;
            font-size: 1.8rem;
            margin: 0.8rem 0 0.3rem;
            background: linear-gradient(135deg, var(--zg-bleu-vibrant), var(--zg-bleu-electrique));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-family: 'Poppins', sans-serif;
        }

        .zg-live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, var(--zg-rouge-passion), #ff3333);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.3rem 0.9rem;
            border-radius: 30px;
            letter-spacing: 1px;
            margin-top: 0.5rem;
            box-shadow: 0 4px 12px rgba(225,6,0,0.3);
        }

        .zg-live-badge i {
            font-size: 0.55rem;
            animation: zg-blink 1.5s infinite;
        }

        @keyframes zg-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .zg-sound-wave {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-top: 20px;
            height: 30px;
            align-items: flex-end;
        }

        .zg-sound-wave span {
            width: 3px;
            background: linear-gradient(135deg, var(--zg-bleu-vibrant), var(--zg-jaune-dore));
            border-radius: 2px;
            transition: height 0.2s ease;
        }

        .zg-player-card:hover .zg-sound-wave span {
            animation: zg-wave 0.8s ease-in-out infinite;
        }

        @keyframes zg-wave {
            0%, 100% { height: 8px; }
            50% { height: 20px; }
        }

        .zg-listener-stats {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(135deg, var(--zg-gris-elegant), var(--zg-gris-sublime));
            padding: 0.8rem 1.8rem;
            border-radius: 100px;
            width: fit-content;
            margin: 1.5rem auto 2rem;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--zg-bleu-vibrant);
            border: 1px solid var(--zg-gris-border);
            box-shadow: var(--zg-ombre-legere);
        }

        .zg-listener-stats i {
            font-size: 1.1rem;
            color: var(--zg-rouge-passion);
        }

        .zg-count-live-listen {
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--zg-rouge-passion);
            margin-left: 5px;
            font-family: monospace;
        }

        .zg-play-wrapper {
            display: flex;
            justify-content: center;
            margin: 1.8rem 0 1rem;
        }

        .zg-btn-play-circle {
            background: var(--zg-gradient-bleu);
            border: none;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--zg-transition-douce);
            box-shadow: 0 20px 35px -12px rgba(10,44,117,0.5);
            color: white;
            position: relative;
        }

        .zg-btn-play-circle::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--zg-jaune-dore), var(--zg-bleu-vibrant));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .zg-btn-play-circle:hover::before {
            opacity: 0.5;
        }

        .zg-btn-play-circle i {
            font-size: 3rem;
            transition: var(--zg-transition-douce);
        }

        .zg-btn-play-circle:hover {
            transform: scale(1.08);
            box-shadow: 0 25px 45px -12px rgba(10,44,117,0.7);
        }

        .zg-btn-play-circle:active {
            transform: scale(0.96);
        }

        .zg-quality-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 1.8rem;
            font-size: 0.7rem;
            color: #6b7280;
        }

        .zg-quality-badge {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(10,44,117,0.05);
            padding: 0.25rem 0.8rem;
            border-radius: 20px;
        }

        .zg-radio-footer {
            text-align: center;
            font-size: 0.7rem;
            padding: 1.5rem;
            color: #6c757d;
        }

        .zg-radio-footer a {
            color: var(--zg-bleu-vibrant);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .zg-radio-footer a:hover {
            color: var(--zg-jaune-dore);
        }


        @keyframes zg-shimmer {
            0% { opacity: 0.5; transform: scale(0.95); }
            100% { opacity: 1; transform: scale(1); }
        }

        .zg-count-update {
            animation: zg-shimmer 0.3s ease;
        }

        @media (max-width: 600px) {
            .zg-radio-title {
                font-size: 2.2rem;
            }
            .zg-btn-play-circle {
                width: 85px;
                height: 85px;
            }
            .zg-btn-play-circle i {
                font-size: 2.5rem;
            }
            .zg-station-name {
                font-size: 1.4rem;
            }
            .zg-wave-animation {
                font-size: 3.5rem;
            }
        }