  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      width: 100%;
      height: 100%;
      background-color: #1a1a1a;

      font-family: Arial, sans-serif;
    }

    #loader {
      position: fixed;
      width: 100%;
      height: 100%;
      background-color: #1a1a1a;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    #logo {
      width: 150px;
      height: auto;
      margin-bottom: 20px;
      animation: pulse 1.5s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.8;
      }
      50% {
        transform: scale(1.05);
        opacity: 1;
      }
    }

    .text-animation {
      display: flex;
      gap: 4px;
      color: white;
      font-size: 32px;
      font-weight: bold;
    }

    .code{
        color: #d82a45;
    }

    .text-animation span {
      opacity: 0;
      animation: appear 1s linear infinite;
    }

    .text-animation span:nth-child(1) { animation-delay: 0s; }
    .text-animation span:nth-child(2) { animation-delay: 0.2s; }
    .text-animation span:nth-child(3) { animation-delay: 0.4s; }
    .text-animation span:nth-child(4) { animation-delay: 0.6s; }
    .text-animation span:nth-child(5) { animation-delay: 0.8s; }
    .text-animation span:nth-child(6) { animation-delay: 1.0s; }
    .text-animation span:nth-child(7) { animation-delay: 1.2s; }
    .text-animation span:nth-child(8) { animation-delay: 1.4s; }

    @keyframes appear {
      0% { opacity: 0; transform: translateY(10px); }
      50% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(-10px); }
    }

    #content {
      display: none;
      padding: 20px;
      color: white;
    }