        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');
        
        /* Variables CSS isolées */
        .radio-content {
            --primary-black: #0a0a0a;
            --secondary-black: #1a1a1a;
            --gold-primary: #d4af37;
            --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #fff700 100%);
            --accent-gold: #ffd700;
            --text-gold: #e6c068;
            --glass-bg: rgba(42, 42, 42, 0.4);
            --glass-border: rgba(212, 175, 55, 0.2);
            --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
        }

        /* Styles appliqués UNIQUEMENT au contenu Radio */
        .radio-content {
            font-family: 'Inter', sans-serif;
            background: var(--primary-black);
            color: var(--text-gold);
            line-height: 1.6;
            position: relative;
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }

        /* Fond animé limité au conteneur */
        .radio-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(244, 208, 63, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .radio-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
            overflow: hidden;
        }

        .gold-particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--accent-gold);
            border-radius: 50%;
            opacity: 0;
            animation: sparkle 4s infinite ease-in-out;
            box-shadow: 0 0 6px var(--accent-gold);
        }

        @keyframes sparkle {
            0%, 100% { 
                opacity: 0; 
                transform: scale(0) rotate(0deg);
            }
            50% { 
                opacity: 1; 
                transform: scale(1) rotate(180deg);
            }
        }

        .radio-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
            z-index: 3;
        }

        /* Header optimisé */
        .radio-header {
            min-height: 50vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            padding: 2rem 0;
            margin-bottom: 2rem;
        }

        .radio-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 250px;
            height: 250px;
            background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: slowRotate 25s linear infinite;
            pointer-events: none;
        }

        @keyframes slowRotate {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .radio-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 6vw, 3.5rem);
            font-weight: 900;
            background: var(--gold-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            animation: fadeInUp 1.5s ease-out;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            position: relative;
            z-index: 2;
        }

        .radio-subtitle {
            font-size: clamp(0.9rem, 2.5vw, 1.4rem);
            font-weight: 500;
            animation: fadeInUp 1.5s ease-out 0.3s both;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: 'Playfair Display', serif;
            background: linear-gradient(135deg, var(--gold-primary), var(--accent-gold));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 2;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Main Content optimisé */
        .radio-main {
            padding: 1rem 0;
        }

        .radio-section {
            margin: 1.5rem 0;
        }

        .radio-card {
            background: var(--glass-bg);
            border: 2px solid var(--glass-border);
            border-radius: 20px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--shadow-gold);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .radio-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
            border-color: var(--gold-primary);
        }

        .radio-card-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.3rem, 4vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--gold-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            position: relative;
        }

        .radio-card-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 2px;
        }

        .radio-text {
            font-size: 1rem;
            color: #1a1a1a;
            line-height: 1.7;
            margin-bottom: 1rem;
            font-weight: 600;
            background: linear-gradient(135deg, #fffef8 0%, #fffce0 50%, #fff9d6 100%);
            padding: 1rem 1.2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
        }

        /* Plateformes Grid optimisée */
        .radio-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .radio-platform {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.6));
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .radio-platform::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .radio-platform:hover::before {
            opacity: 1;
        }

        .radio-platform:hover {
            transform: translateY(-3px) scale(1.01);
            background: linear-gradient(145deg, rgba(42, 42, 42, 0.9), rgba(26, 26, 26, 0.8));
            border-color: var(--gold-primary);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
        }

        .radio-platform-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .radio-platform-icon {
            font-size: 2rem;
            margin-right: 0.8rem;
            color: var(--gold-primary);
        }

        .radio-platform-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--gold-primary);
            margin: 0;
        }

        .radio-platform-text {
            font-size: 0.95rem;
            color: var(--text-gold);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .radio-platform-link {
            display: inline-block;
            background: var(--gold-gradient);
            color: var(--primary-black);
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .radio-platform-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
            background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #b8941f 100%);
        }

        /* Footer optimisé */
        .radio-footer {
            text-align: center;
            padding: 2rem;
            background: var(--secondary-black);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            margin-top: 2rem;
        }

        /* Responsive optimisé */
        @media (max-width: 768px) {
            .radio-container {
                padding: 0 0.5rem;
            }

            .radio-header {
                min-height: 40vh;
                margin-bottom: 1rem;
                padding: 1.5rem 0;
            }

            .radio-header::before {
                width: 180px;
                height: 180px;
            }

            .radio-section {
                margin: 1rem 0;
            }

            .radio-card {
                padding: 1rem;
                margin-bottom: 1rem;
            }

            .radio-platforms {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .radio-platform {
                padding: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .radio-header {
                min-height: 35vh;
                padding: 1rem 0;
            }

            .radio-header::before {
                width: 150px;
                height: 150px;
            }

            .radio-card {
                padding: 0.8rem;
            }

            .radio-platform {
                padding: 1rem;
            }

            .radio-text {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }

            .radio-platform-header {
                flex-direction: column;
                text-align: center;
            }

            .radio-platform-icon {
                margin-right: 0;
                margin-bottom: 0.5rem;
            }
        }

        /* Effet brillance */
        .shine-text {
            background: var(--gold-gradient);
            background-size: 200% 100%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 3s ease-in-out infinite;
        }

        @keyframes shine {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
    </style>