@font-face {
    font-family: "pixel";
    src: url("pixel.otf") format("opentype");
  }

  body {
    margin: 0;
    color: white;
    background: url(bg.png) no-repeat center center fixed;
    background-size: cover;
    font-family: "pixel", monospace;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-align: center;
    image-rendering: pixelated;
  }

  header {
    padding: 30px 10px;
  }

  header h1 img {
    width: 60%;
    max-width: 400px;
    height: auto;
    image-rendering: pixelated;
  }

  header p {
    margin: 15px auto 30px;
    max-width: 700px;
    line-height: 1.6;
    font-size: 1.1em;
    color: #ffe1ff;
    text-shadow: 2px 2px 0 #a500ff, 4px 4px 0 black;
    padding: 0 15px;
  }

  image,
  img {
    max-width: 100%;
    height: auto;
  }

  .btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.2em;
    font-weight: bold;
    image-rendering: pixelated;
    transition: transform 0.2s;
  }

  .btn:hover {
    transform: translateY(-2px);
  }

  section {
    margin: 60px auto;
    max-width: 1000px;
    padding: 10px 15px;
  }

  section h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 1.5px;
    text-shadow: 3px 3px 0 #a500ff, 5px 5px 0 black;
  }

  .credits-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .credit-box,
  .server-card {
    background: rgba(255, 88, 179, 0.95);
    border-radius: 4px;
    padding: 22px;
    width: 90%;
    max-width: 260px;
    text-align: left;
    box-shadow: 0 0 0 3px #a500ff, 0 0 0 6px white, 0 0 0 12px black;
    image-rendering: pixelated;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .credit-box:hover,
  .server-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 3px #c266ff, 0 0 0 6px white, 0 0 0 12px black;
  }

  .credit-box h3,
  .server-card h3 {
    margin-top: 0;
    font-size: 1.3em;
    color: #fff;
    text-shadow: 2px 2px black;
  }

  .credit-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .credit-box li {
    margin: 8px 0;
    font-size: 1.05em;
    color: #fff;
    text-shadow: 1px 1px black;
  }

  .server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }

  .server-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 12px;
    image-rendering: pixelated;
  }

  .server-card p,
  .server-card h5 {
    margin: 6px 0 0;
    font-size: 1em;
    color: #fffadd;
    text-shadow: 1px 1px black;
  }

  .server-card h5 {
    font-size: 0.9em;
    color: #fff;
  }

  footer {
    padding: 20px;
    font-size: 0.9em;
    text-shadow: 1px 1px black;
    color: #fff;
  }

  @media (max-width: 768px) {
    #app {
      display: none !important;
    }
    header h1 img {
      width: 70%;
    }

    section h2 {
      font-size: 1.7em;
    }

    .credit-box,
    .server-card {
      width: 95%;
    }

    .btn img {
      width: 70%;
    }

    #app {
      height: 35vh !important;
    }

    footer {
      font-size: 0.8em;
    }
  }

  @media (max-width: 480px) {
    header p {
      font-size: 0.9em;
      line-height: 1.4;
    }

    section {
      margin: 40px auto;
    }

    .credit-box,
    .server-card {
      padding: 18px;
    }

    .server-card img {
      width: 70px;
      height: 70px;
    }

    section h2 {
      font-size: 1.5em;
    }
  }
  