
a:link {color : #9FCFFF;text-decoration : none; font : 9pt Tahoma;font-weight : bold;}
a:visited {color : #9FCFFF;text-decoration : none; font : 9pt Tahoma;font-weight : bold;}
a:active {color : #9FCFFF;text-decoration : none; font : 9pt Tahoma;font-weight : bold;}
a:hover {color : #9FCFFF;text-decoration : underline; font : 9pt Tahoma;font-weight : bold;}

    body {
      margin: 0;
      background: black;
      overflow: hidden;
    }

/* Pseudo-élément pour l'effet scanline */
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                to bottom,
                transparent 0px,
                transparent 1px, /* Espace entre les lignes */
                rgba(0, 0, 0, 0.3) 1px, /* Ligne sombre */
                rgba(0, 0, 0, 0.3) 2px /* Épaisseur de la ligne */
            );
            pointer-events: none; /* Pour ne pas interférer avec les clics */
            z-index: 100; /* Au-dessus du contenu, ajuste si besoin */
            opacity: 0.5; /* Transparence pour l'intensité de l'effet */
        }
   

    #logo-container {
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .logo {
      position: absolute;
      opacity: 0;
      transition: opacity 1s ease;
      filter: none;
    }

    .fade-in {
      opacity: 1;
    }

    .fade-out {
      opacity: 0;
    }

    .pixelate {
      image-rendering: pixelated;
      transform: scale(1.2);
    }

    .dissolve {
      animation: dissolve 1s forwards;
    }

    @keyframes dissolve {
      0% { opacity: 1; filter: blur(0px); }
      100% { opacity: 0; filter: blur(20px); }
    }

    .scatter {
      animation: scatter 1s forwards;
    }

    @keyframes scatter {
      0% { opacity: 1; transform: scale(1) translate(0, 0); }
      100% { opacity: 0; transform: scale(0.5) translate(200px, -200px); }
    }


    #info { 
      position: absolute; 
      top: 10px; 
      left: 10px; 
      color: #0f0; 
      font-family: 'Courier New', monospace; 
      font-size: 16px; 
      text-shadow: 0 0 5px #0f0;
    }
    

 	.button-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

/* Style commun pour les boutons */
.play-button {
  padding: 15px 15px;
  background-color: #0f0;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 18px;
  border: 4px solid #fff;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  cursor: pointer;
  text-align: center;
}
  
    .play-button:hover {
      background-color: #0ff;
      box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
    }
    
    canvas { display: block; }
         #editableBlock {
            position: absolute;
            top: 400px;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 300px;
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
            border: 2px solid #fff;
            font-family: monospace;
            padding: 15px;
            overflow: auto;
        }
        
        .mon-div-scroll {
            width: 95%; /* Largeur fixe à 800px */
            height: 70%; /* Hauteur fixe pour forcer le scrollbar (ajustez si besoin) */
            overflow-y: scroll; /* Active le scrollbar vertical */
            padding: 0px;
        }

        /* Style personnalisé pour le scrollbar (fonctionne sur Chrome, Safari, Edge) */
        .mon-div-scroll::-webkit-scrollbar {
            width: 12px; /* Largeur du scrollbar */
        }

        .mon-div-scroll::-webkit-scrollbar-track {
            background: #333; /* Fond de la piste du scrollbar */
            border-radius: 10px;
        }

        .mon-div-scroll::-webkit-scrollbar-thumb {
            background: #888; /* Couleur de la barre */
            border-radius: 10px;
            border: 2px solid #333; /* Bordure pour un effet 3D */
        }

        .mon-div-scroll::-webkit-scrollbar-thumb:hover {
            background: #aaa; /* Couleur au survol */
        }

        /* Pour Firefox (style basique) */
        .mon-div-scroll {
            scrollbar-width: thin; /* Fin pour un scrollbar élégant */
            scrollbar-color: #888 #333; /* Couleur de la barre et piste */
        }
        
        #hidden-screen {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            color: white;
            font-size: 2em;
            text-align: center;
            padding-top: 40vh;
            z-index: 4;
        }
  