    html, body {
      font-family: 'Comic Sans MS', 'Comic Sans', cursive;
      margin: 0;
      padding: 0;
      background: black;
      overflow: hidden;
      height: 100%;
    }

    /* Canvas and Logo */
    canvas {
      position: absolute;
      top: 0;
      left: 0;
    }

    .logo-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
      display: none; /* Hidden until after start */
    }

    .logo-container img {
      width: 200px;
      height: auto;
    }

    /* Start screen overlay */
    #start-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: black;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 10;
      transition: opacity 1s ease;
    }

    #start-btn {
      padding: 1em 2em;
      font-size: 1.5em;
      background: white;
      color: black;
      border: none;
      cursor: pointer;
      border-radius: 8px;
      transition: background 0.3s ease;
    }

    #start-btn:hover {
      background: #ccc;
    }

      .button-container {
      position: absolute;
      top: calc(50% + 140px); /* Adjust depending on logo size */
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 20px;
      z-index: 2;
    }

    .icon-button {
      width: 80px;
      height: 80px;
      background-color: #444;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      transition: background 0.3s ease;
      text-decoration: none;
    }

    .icon-button:hover {
      background-color: #666;
    }

    .icon-button img {
      width: 60%;
      height: 60%;
      object-fit: contain;
    }

.button-bar {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-top: 20px;
}

.menu-item {
  position: relative;
}

.main-button {
  background: #444;
  border: none;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
}

.main-button img {
  width: 40px;
  height: 40px;
}

/* Submenu styling */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  padding: 5px;
  border-radius: 6px;
  flex-direction: column;
  gap: 5px;
  min-width: 150px;
  z-index: 100;
}

.submenu a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #333;
  padding: 5px 10px;
  border-radius: 4px;
}

.submenu a img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 3px;
}

.submenu a:hover {
  background: #555;
}

/* Show submenu on hover */
.menu-item.has-submenu:hover .submenu {
  display: flex;
}

/* Changelog Modal */
.modal {
  display: none; 
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  font-family: "Comic Sans MS", cursive, sans-serif;
}

.modal-content {
  background-color: #212121;
  margin: 5% auto;
  padding: 20px;
  border-radius: 12px;
  width: 80%;
  max-width: 600px;
  max-height: 70%;
  overflow-y: auto;
  color: rgb(255, 255, 255);
}

.modal-content h2 {
  margin-top: 0;
  text-align: center;
}

.modal-content label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.modal-content input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #aaa;
}

.modal-content button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background-color: gray;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #666;
}

.result {
  margin-top: 15px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

.close-button {
  color: #ffffff;
  float: right;
  font-size: 28px;
  cursor: pointer;
}

.close-button:hover {
  color: rgb(255, 0, 0);
}

.entry {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.entry h3 {
  margin: 0 0 5px 0;
}