
        @import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Titan+One&display=swap');

        html,
        body {
            font-family: "Titan One", sans-serif;
            color: #216fb4;
            margin: 0;
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            background-color: #f8d30f;
        }
 /* Style du loader */
         #loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #f8d30f;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 1.5s ease-in-out; /* Dissolution lente */
            cursor: wait;
        }
        
        #loading .loading-text {
            font-family: 'Arial', sans-serif;
            font-size: 24px;
            color: #333;
            letter-spacing: 2px;
            opacity: 0.8;
            animation: pulse 2s infinite ease-in-out; /* Animation subtile */
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 0.4; }
        }
        
        /* Classe pour dissoudre le loader */
        .loading-dissolve {
            opacity: 0 !important;
            pointer-events: none; /* Désactive les clics pendant la dissolution */
        }
        
        #loading p {
            color: #333;
            font-family: Arial, sans-serif;
            font-size: 18px;
        }
        
        
        
        /* Style du contenu principal */
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
            animation-delay: 0.5s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        /*----------------*/
        main {
            display: flex;
            width: 100%;
            height: 100%;
        }

        #main-left {
            display: flex;
            width: 100%;
            height: 100%;
        }

        #barcode {
            margin: 0;
            text-align: left;
        }

        #barcode img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }

        #main-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
            padding: 60px 20px 20px 20px;
            z-index: 3;
        }

        h1 {
            font-size: 70px;
            font-family: "Titan One", sans-serif;
            text-transform: uppercase;
            font-weight: normal;
            text-align: center;
            color: white;
        }

        #desc p {
            font-family: "Special Elite", system-ui;
            font-size: 20px;
            text-transform: uppercase;
            margin-left: 20px;
        }

        .player {
            margin: auto;
            font-family: "Dosis", sans-serif;
            position: relative;
            width: 50vmax;
            height: 50vmax;
        }

        .record {
            position: absolute;
            cursor: pointer;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            width: 90%;
            height: 90%;
            background: linear-gradient(45deg, #333, black, #555, black, #333);
            border-radius: 100%;
            transform: rotate(0);
        }

        .record:before,
        .record:after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            background: repeating-radial-gradient(circle at center,
                    black 3px,
                    transparent 6px);
            border-radius: 100%;
        }

        .record:after {
            width: 45%;
            height: 45%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .record .label {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            width: 35%;
            height: 35%;
            background: black center/cover no-repeat;
            text-align: center;
            border-radius: 100%;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .label-content {
            display: block;
        }

        .record .label h2 {
            font-family: "Special Elite", system-ui;
            font-size: 24px;
            font-weight: normal;
            margin: 25px auto 0;
            color: #7a1a1a !important;
            position: relative;
            top: -30px;
        }

        #label-info-right {
            font-family: "Special Elite", system-ui;
            color: white;
            margin: 10px 10px 0 auto;
            text-align: right;
            font-size: 12px;
            font-weight: bold;
            line-height: 24px;
        }

        .record .label h3 {
            margin: 0;
            font-family: Iceberg;
            font-size: 18px;
            font-weight: 700;
        }

        .record .label p {
            font-family: "Special Elite", system-ui;
            margin: 3px auto 0;
            text-align: center;
            font-size: 12px;
            color: white;
        }

        .record .label h2,
        .record .label h3 {
            color: whitesmoke;
            text-align: center;
            z-index: 4;
        }

        .spindle {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            width: 20px;
            height: 20px;
            background-color: white;
            border-radius: 50%;
            box-shadow: rgba(0, 0, 0, 0.1) 0 0 20px 1px;
            z-index: 3;
        }

        .is-playing .record {
            animation: spin-on 4s 0.51s linear infinite;
        }

        .next-prev {
            
            display: flex;
            align-items: center;      
            justify-content: center;  
            gap: 10px;               
            text-align: center;      
            padding: 40px 0;
            text-transform: uppercase;
            font-size: 24px;
            color: #ff9309;
            font-family: "Special Elite", system-ui;
             text-shadow: 
            -1px -1px 0 #4b8ce3,
            1px -1px 0 #4b8ce3,
            -1px 1px 0 #4b8ce3,
            1px 1px 0 #4b8ce3;
        }

        .play-svg {
            width: 24px;
            height: 31px;
            cursor: pointer;
        }
        .play-svg polygon {
            fill: #ff9309;
            stroke: #003eaa;
            stroke-width: 3;
            stroke-miterlimit: 4;
            stroke-dasharray: none;
            stroke-opacity: 1;
            transition: all 0.3s ease;
        }
        .play-svg:hover polygon {
            fill: #5d8aa8;
            stroke: #3a6a8c; 
        }

        @keyframes spin-on {
            to {
                transform: rotate(360deg);
            }
        }

        @media only screen and (orientation: portrait) {
            main {
                flex-direction: column;
            }
        }

        /* Interface de configuration */
        #audio-selector,
        #image-selector {
            position: absolute;
            right: 20px;
            z-index: 10;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px;
            border-radius: 5px;
        }

        #audio-selector {
            top: 20px;
        }

        #image-selector {
            top: 120px;
        }

        #audio-selector label,
        #image-selector label {
            display: block;
            margin-bottom: 5px;
            font-family: Iceberg;
            font-size: 14px;
        }

        #audio-selector input,
        #image-selector input {
            margin-bottom: 10px;
        }

        #audio-selector button,
        #image-selector button {
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 3px;
            cursor: pointer;
            font-family: Iceberg;
        }

        #audio-selector button {
            background: crimson;
        }

        #audio-selector button:hover {
            background: red;
        }

        #image-selector button {
            background: dodgerblue;
        }

        #image-selector button:hover {
            background: deepskyblue;
        }

        #current-song {
            margin-top: 10px;
            font-size: 12px;
            text-align: center;
        }

        #shader-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            display: block;
            z-index: -1;
        }

        .z_mouse_scroll_000 {
            position: fixed;
            left: 50%;
            margin-left: -24px;
            bottom: 60px;
            transform: translate(-50%, 0);
            width: 48px;
            height: 48px;
            background: url("img/fond.png") no-repeat center center;
            opacity: 0.5;
            background-size: 48px 48px;
            mix-blend-mode: normal;
            animation: z_mouse_scroll_000_transform_bezier_anim 1.85s linear infinite;
        }



        @keyframes z_mouse_scroll_000_transform_bezier_anim {
            0% {
                transform: translate(0px, 0px);
                animation-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
            }

            49.55% {
                transform: translate(0px, 38px);
                animation-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
            }

            99.1% {
                transform: translate(0px, 0px);
                animation-timing-function: cubic-bezier(0, 0, 1, 1);
            }

            100% {
                transform: translate(0px, 0px);
            }
        }
        .informations {
            font-family: "Special Elite", system-ui;
            font-size: 18px;
            width 300px;
            padding: 20px;
            background: white;
            border-radius: 2em;
            margin-top: 60px;
            width: 80%;
        }

        @media (max-width: 1740px) {
            .label-content {
                display: none;
            }
        }



            .spindle {
                width: 10px;
                height: 10px;
            }

            .player {
                width: 50vw;
                height: 50vw;
            }
        }

        @media screen and (orientation: portrait) {

            html,
            body {
                height: 100%;
            }

            body {
                /* Empêche la rotation forcée du navigateur */
                transform: rotate(0deg);
                transform-origin: center center;

                /* Force l'orientation portrait */
                position: fixed;
                width: 100vw;
                height: 100vh;
                overflow: hidden;
            }
        }

        /* Optionnel : Message d'avertissement */
        @media screen and (orientation: landscape) and (max-width: 900px) {
            body::before {
                font-family: "Special Elite", system-ui;
                content: "Veuillez tourner votre appareil en mode portrait ou agrandir la hauteur de la fenêtre, le disque est bien trop ridiculement petit pour s'afficher correctement.\A\APor favor, gire su dispositivo a modo vertical o aumente la altura de la ventana, el disco es demasiado ridículamente pequeño para mostrarse correctamente.";
                white-space: pre-wrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffc107;
    color: #000;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 9999;
            }
        }
 

        @media (max-width: 768px) {
             .player {
                width: 90vw;
                height: 90vw;
            }
            .next-prev {
            font-size: 18px;
        }
    
        @media (max-width: 500px) {
           
            
            .record {
            left: 42px;
           
        }
            .informations {
                width: 90%;
                font-size: 13px;
                margin-top: 30px;
            }
             h1 {
                font-size: 28px;
            }
            #main-right {
               padding: 1px;
            }
}