.madmax-audio-player {
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
                linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 30%, #1f1f1f 100%);
            border: 3px solid #d4af37;
            border-radius: 8px;
            padding: 25px;
            margin: 25px 0;
            color: #f4f4f4;
            font-family: 'Orbitron', monospace;
            box-shadow: 
                0 0 30px rgba(212, 175, 55, 0.3),
                inset 0 0 20px rgba(0, 0, 0, 0.5),
                0 8px 32px rgba(0, 0, 0, 0.8);
            position: relative;
            overflow: hidden;
            background-size: 100% 100%;
        }

        .madmax-audio-player::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 2px,
                    rgba(212, 175, 55, 0.03) 2px,
                    rgba(212, 175, 55, 0.03) 4px
                );
            pointer-events: none;
        }

        .madmax-audio-player::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #d4af37, #ff4500, #d4af37);
            z-index: -1;
            border-radius: 8px;
            animation: borderGlow 3s ease-in-out infinite alternate;
        }

        @keyframes borderGlow {
            0% { opacity: 0.5; }
            100% { opacity: 0.8; }
        }

        .audio-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
        }

        .audio-icon {
            font-size: 32px;
            margin-right: 15px;
            text-shadow: 0 0 10px #ff4500;
            animation: iconPulse 2s infinite ease-in-out;
        }

        @keyframes iconPulse {
            0%, 100% { 
                transform: scale(1);
                text-shadow: 0 0 10px #ff4500;
            }
            50% { 
                transform: scale(1.1);
                text-shadow: 0 0 20px #ff4500, 0 0 30px #d4af37;
            }
        }

        .audio-title {
            font-size: 20px;
            font-weight: 900;
            margin: 0;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 
                0 0 5px #d4af37,
                2px 2px 0px #000,
                -1px -1px 0px #000;
            animation: titleFlicker 4s infinite ease-in-out;
        }

        @keyframes titleFlicker {
            0%, 100% { opacity: 1; }
            97%, 99% { opacity: 0.8; }
            98% { opacity: 1; }
        }

        .audio-subtitle {
            font-size: 12px;
            color: #ff6b35;
            margin: 5px 0 0 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 400;
        }

        .fuel-indicator {
            position: absolute;
            right: 0;
            top: 0;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: #d4af37;
        }

        .fuel-bar {
            width: 60px;
            height: 8px;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid #d4af37;
            border-radius: 2px;
            overflow: hidden;
        }

        .fuel-level {
            height: 100%;
            background: linear-gradient(90deg, #ff4500, #d4af37);
            width: 75%;
            animation: fuelConsume 30s linear infinite;
        }

        @keyframes fuelConsume {
            0% { width: 100%; }
            100% { width: 20%; }
        }

        .audio-controls {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(0, 0, 0, 0.4);
            padding: 15px;
            border-radius: 6px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .play-btn {
            background: 
                radial-gradient(circle at center, #ff4500 0%, #d4af37 70%, #8b4513 100%);
            border: 3px solid #d4af37;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            color: #000;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 0 20px rgba(255, 69, 0, 0.6),
                inset 0 0 10px rgba(0, 0, 0, 0.3);
            position: relative;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }

        .play-btn::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            background: conic-gradient(from 0deg, #d4af37, #ff4500, #d4af37);
            z-index: -1;
            animation: rotate 3s linear infinite;
            opacity: 0;
        }

        .play-btn:hover::before {
            opacity: 1;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .play-btn:hover {
            transform: scale(1.15);
            box-shadow: 
                0 0 30px rgba(255, 69, 0, 0.8),
                0 0 40px rgba(212, 175, 55, 0.4),
                inset 0 0 15px rgba(0, 0, 0, 0.3);
        }

        .play-btn.playing {
            background: 
                radial-gradient(circle at center, #32cd32 0%, #228b22 70%, #006400 100%);
            animation: playingPulse 1.5s infinite ease-in-out;
        }

        @keyframes playingPulse {
            0%, 100% { 
                box-shadow: 
                    0 0 20px rgba(50, 205, 50, 0.6),
                    inset 0 0 10px rgba(0, 0, 0, 0.3);
            }
            50% { 
                box-shadow: 
                    0 0 40px rgba(50, 205, 50, 0.9),
                    0 0 60px rgba(34, 139, 34, 0.5),
                    inset 0 0 15px rgba(0, 0, 0, 0.3);
            }
        }

        .audio-progress {
            flex: 1;
            height: 12px;
            background: 
                linear-gradient(90deg, #000 0%, #1a1a1a 50%, #000 100%);
            border: 2px solid #d4af37;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
        }

        .progress-bar {
            height: 100%;
            background: 
                linear-gradient(90deg, 
                    #ff4500 0%, 
                    #d4af37 30%, 
                    #ff6b35 60%, 
                    #d4af37 100%);
            width: 0%;
            transition: width 0.1s ease;
            position: relative;
            box-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
        }

        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 100%;
            background: #fff;
            box-shadow: 0 0 8px #fff;
            animation: progressGlow 1s infinite ease-in-out alternate;
        }

        @keyframes progressGlow {
            0% { opacity: 0.6; }
            100% { opacity: 1; }
        }

        .audio-time {
            font-size: 14px;
            color: #d4af37;
            min-width: 100px;
            text-align: right;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            text-shadow: 0 0 5px #d4af37;
        }

        .volume-control {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(0, 0, 0, 0.6);
            padding: 8px 12px;
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.4);
        }

        .volume-icon {
            font-size: 16px;
            color: #d4af37;
            text-shadow: 0 0 5px #d4af37;
        }

        .volume-slider {
            width: 80px;
            height: 6px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid #d4af37;
            border-radius: 3px;
            outline: none;
            cursor: pointer;
            appearance: none;
        }

        .volume-slider::-webkit-slider-thumb {
            appearance: none;
            width: 16px;
            height: 16px;
            background: radial-gradient(circle, #ff4500, #d4af37);
            border: 2px solid #d4af37;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 8px rgba(255, 69, 0, 0.6);
        }

        .warning-text {
            font-size: 10px;
            color: #888;
            text-align: center;
            margin-top: 15px;
            font-style: italic;
            opacity: 0.7;
            font-family: Arial, sans-serif;
        }

        .wasteland-fx {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 12px;
            color: #ff6b35;
            animation: staticFx 0.1s infinite;
        }

        @keyframes staticFx {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Overlay sombre pour la timeline */
        .timeline-content {
          position: relative;
          overflow: hidden;
        }
        .timeline-overlay {
          position: absolute;
          top: 0; left: 0; right: 0; bottom: 0;
          background: rgba(0,0,0,0.6);
          z-index: 1;
        }
        .timeline-text {
          position: relative;
          z-index: 2;
          color: #fff;
          text-shadow: 0 2px 8px #000, 0 0 2px #000;
        }
        .timeline-cover {
          border-radius: 8px;
          box-shadow: 0 2px 8px rgba(0,0,0,0.25);
        }


        }
        /* Responsive */
        @media (max-width: 768px) {
            .madmax-audio-player {
                padding: 15px;
            }
            
            .audio-controls {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .audio-progress {
                order: 3;
                width: 100%;
            }
            
            .fuel-indicator {
                position: static;
                margin-top: 10px;
            }
        }
		

        .info-card {
            background-color: var(--mid);
            border: 1px solid var(--primary);
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }
        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary);
        }
        .info-card-title {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-family: 'Orbitron', sans-serif;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .info-card-content {
            color: var(--primary-dark);
        }
        ul.feature-list, ol.feature-list {
            margin: 20px 0;
            padding-left: 20px;
        }
        ul.feature-list li, ol.feature-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 10px;
        }
        ul.feature-list li::before {
            content: '►';
            color: var(--secondary);
            position: absolute;
            left: -20px;
            top: 0;
        }
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: transform var(--transition-speed);
            height: 200px;
        }
        .gallery-item:hover {
            transform: scale(1.03);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: filter var(--transition-speed);
        }
        .gallery-item:hover img {
            filter: brightness(1.1);
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        .timeline-content img {
            max-width: 120px;
            max-height: 120px;
            margin: 8px 0;
            border-radius: 6px;
            cursor: pointer;
            display: block;
        }
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            overflow: auto;
            padding-top: 60px;
        }
        .modal-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 90%;
        }
        .close-modal {
            position: absolute;
            top: 15px;
            right: 35px;
            color: var(--primary-dark);
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            transition: all var(--transition-speed);
        }
        .close-modal:hover {
            color: var(--accent);
            text-shadow: var(--glow-effect);
        }
        .modal-content {
            animation-name: zoom;
            animation-duration: 0.6s;
        }
        @keyframes zoom {
            from {transform: scale(0)}
            to {transform: scale(1)}
        }
        .toc-container {
            position: static;
            width: 100%;
            float: none;
            margin: 0 0 30px 0;
            background-color: var(--mid);
            border: 1px solid var(--primary);
            border-radius: 8px;
            padding: 20px;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            z-index: 10;
        }
        .toc-title {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .toc-list {
            list-style: none;
            padding-left: 0;
        }
        .toc-list li {
            margin-bottom: 10px;
            padding-left: 15px;
            position: relative;
        }
        .toc-list li::before {
            content: '>';
            color: var(--accent);
            position: absolute;
            left: 0;
        }
        .toc-list a {
            color: var(--primary-dark);
            text-decoration: none;
            transition: all var(--transition-speed);
        }
        .toc-list a:hover {
            color: var(--primary);
            text-shadow: 0 0 5px var(--primary);
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border: 3px solid var(--primary);
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .share-section {
            margin: 50px 0 30px;
            border-top: 3px solid var(--mid);
            padding-top: 30px;
        }
        .share-title {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .share-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        .share-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--mid);
            color: var(--primary-dark);
            font-size: 1.2rem;
            text-decoration: none;
            transition: all var(--transition-speed);
        }
        .share-btn:hover {
            background-color: var(--primary);
            color: #fff;
            box-shadow: var(--glow-effect);
        }
        .share-btn.twitter:hover {
            background-color: #1da1f2;
        }
        .share-btn.facebook:hover {
            background-color: #1877f2;
        }
        .share-btn.reddit:hover {
            background-color: #ff4500;
        }
        .share-btn.discord:hover {
            background-color: #5865f2;
        }
        .back-to-top {
            position: fixed;
            right: 30px;
            bottom: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.5s ease;
            z-index: 99;
            box-shadow: 0 5px 10px rgba(0,0,0,0.3);
        }
        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .back-to-top:hover {
            background-color: var(--secondary);
            box-shadow: var(--glow-effect);
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .nostalgia-note {
            background-color: #fff8f0;
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin: 30px 0;
            position: relative;
            border-radius: 5px;
        }
        .nostalgia-note::before {
            content: '\f1da'; /* Icône histoire */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: -15px;
            left: 20px;
            background-color: var(--accent);
            color: var(--light);
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 0.9rem;
        }
        .nostalgia-title {
            font-family: 'Orbitron', sans-serif;
            color: var(--accent);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        .game-specs {
            background-color: var(--mid);
            border: 1px solid var(--primary);
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
        }
        .specs-title {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        .specs-item {
            display: flex;
            flex-direction: column;
        }
        .specs-label {
            font-size: 0.9rem;
            color: var(--accent);
            margin-bottom: 5px;
        }
        .specs-value {
            color: var(--primary-dark);
            font-weight: bold;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 40px auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
            margin-bottom: 6px;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -12px;
            background-color: var(--primary);
            border: 4px solid var(--accent);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even)::after {
            left: -12px;
        }
        .timeline-content {
            padding: 20px;
            background-color: var(--light);
            position: relative;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-left: 3px solid var(--accent);
        }
        .timeline-content {
            position: relative;
            overflow: hidden;
        }
        .timeline-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 1;
        }
        .timeline-text {
            position: relative;
            z-index: 2;
            color: #fff;
            text-shadow: 0 2px 8px #000, 0 0 2px #000;
        }
        .timeline-cover {
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.25);
        }
        .timeline-year {
            position: absolute;
            top: -10px;
            font-family: 'Orbitron', sans-serif;
            background-color: var(--primary);
            color: var(--light);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            box-shadow: 0 3px 8px rgba(0,0,0,0.3);
        }
        .timeline-item:nth-child(odd) .timeline-year {
            right: 20px;
        }
        .timeline-item:nth-child(even) .timeline-year {
            left: 20px;
        }
        .timeline-title {
            margin: 25px 0 15px;
            color: var(--accent);
            font-family: 'Orbitron', sans-serif;
        }
        /* Centrage à droite pour certains titres de la timeline */
        .timeline-item:nth-child(2) .timeline-title,
        .timeline-item:nth-child(4) .timeline-title,
        .timeline-item:nth-child(6) .timeline-title {
          text-align: right;
          margin-left: auto;
          margin-right: 0;
          display: block;
        }
        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 5px;
            width: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            z-index: 1000;
            transition: width 0.1s ease;
        }
        .versions-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            color: var(--primary-dark);
        }
        .versions-table th, .versions-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--mid);
        }
        .versions-table th {
            background-color: var(--primary);
            color: var(--primary-dark);
            font-family: 'Orbitron', sans-serif;
            font-weight: normal;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .versions-table tr:hover {
            background-color: rgba(0, 238, 255, 0.1);
        }
        .footnote {
            background-color: var(--mid);
            color: var(--primary-dark);
            border-left: 3px solid var(--primary);
            padding: 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            margin-top: 40px;
            opacity: 0.8;
        }

        /* Barres de benchmark gaming */
        .category-gplay .benchmark-container {
            background: var(--gplay-bg-soft);
            padding: 20px;
            border-radius: 16px;
            margin: 24px 0;
            border: 1px solid var(--gplay-border);
        }

        .category-gplay .benchmark-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gplay-primary);
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Inter', Arial, sans-serif;
        }

        .category-gplay .benchmark-bar {
            background: var(--gplay-bg-accent);
            height: 16px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 16px;
            position: relative;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gplay-border);
        }

        .category-gplay .benchmark-fill {
            height: 100%;
            background: var(--gplay-gradient-accent);
            border-radius: 8px;
            position: relative;
            width: 0%; /* Commence à 0 pour l'animation */
            animation: benchmarkFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
        }

        .category-gplay .benchmark-fill::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
            animation: benchmarkShine 2s ease-in-out infinite;
        }

        /* Version statique pour debug */
        .category-gplay .benchmark-fill-static {
            height: 100%;
            background: var(--gplay-gradient-accent);
            border-radius: 8px;
            position: relative;
            width: var(--fill-width, 75%);
            box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
        }

        /* KEYFRAMES ESSENTIELLES */
        @keyframes benchmarkFill {
            from {
                width: 0%;
            }
            to {
                width: var(--fill-width, 75%);
            }
        }

        @keyframes benchmarkShine {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        @keyframes gplayBlink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        /* Style pour le texte final */
        .final-text {
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--gplay-primary);
            margin-top: 20px;
            font-family: 'Inter', Arial, sans-serif;
        }