* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    background-color: #0d0d0d;
    color: #00ffbb;
    line-height: 1.6;
    padding: 0;
    overflow-x: hidden;
    cursor: url('../assets/cursorhack.cur'), auto;
  }
  
/* Scrollbar Track */
::-webkit-scrollbar {
  width: 12px;
  background: #0d0d0d;
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
  background: repeating-linear-gradient(
    to bottom,
    #00ffaa,
    #00ffaa 1px,
    #0d0d0d 1px,
    #0d0d0d 10px
  );
  border: none;
  border-radius: 0;
}


/* On Hover */
::-webkit-scrollbar-thumb:hover {
  background: repeating-linear-gradient(
    to bottom,
    #00ffcc,
    #00ffaa 1px,
    #0d0d0d 1px,
    #0d0d0d 10px
  );
}

 
  
  
  /* ========= HEADER ========= */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 1.4rem;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    display: block;
    color: inherit;
    text-decoration: none;
  }
  .logo-subtext {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.78rem;
    color: #00ffaaaa;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }
  .home-button-glow {
    display: inline-block;
    margin: 2rem 0 2rem 1.5rem;
    padding: 0.9rem 1.4rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ffaa;
    background: #0d0d0d;
    border: 1px solid #00ffaa;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 0 10px #00ffaa44, 0 0 20px #00ffaa22 inset;
    transition: all 0.5s ease;
    width: calc(100% - 3rem);
  }
  
  .home-button-glow:hover {
    background-color: #00ffaa10;
    box-shadow: 0 0 15px #00ffaaaa, 0 0 30px #00ffaa66 inset;
    transform: translateX(-10px);
  }
  
  
  
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: #00ffbb;
    transition: background 0.3s, color 0.3s;
    border-radius: 4px;
  }
  
  .nav-links a.active,
  .nav-links a:hover {
    background-color: rgba(0, 255, 187, 0.1);
    color: #00ffcc;
  }
  
  /* ========= MAIN CONTENT ========= */
  #content {
    margin-left: auto;
    width: auto;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  
  .section {
    display: none;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    background-color: #101010;
    border: 1px solid #1e1e1e;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.04);
    transition: transform 0.3s ease, opacity 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .section-inner {
    max-width: auto;
    margin: 0 auto;
  }

.code-block {
    background: #181818;
    color: #00ffaa;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    padding: 1.2rem 1rem;
    border-radius: 8px;
    border: 1px solid #222;
    margin: 2.5rem 0;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
    box-shadow: 0 2px 16px rgba(0,255,170,0.06);
    text-align: left;
  }

.command-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
  }
  
  .command-item {
    margin-bottom: 1.1rem;
    background: #181818;
    border-radius: 10px;
    border: 1px solid #232323;
    overflow: hidden;
  }
  
  .command-toggle {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
  }
  
  .command-toggle:hover, .command-toggle:focus {
    background: #222;
  }
  
  .arrow {
    font-size: 1.1rem;
    transition: transform 0.3s;
  }
  
  .command-item.open .arrow {
    transform: rotate(90deg);
  }
  
  .cmd-dropdown {
    display: none;
    background: #151515;
    border-top: 1px solid #232323;
    padding: 1.2rem 2rem 1.5rem 3.2rem;
    color: #baffea;
    font-size: 0.98rem;
    animation: fadeIn 0.3s;
  }
  
  .command-item.open .cmd-dropdown {
    display: block;
  }
  
  .cmd-dropdown code {
    background: #222;
    color: #00ffaa;
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.98em;
  }
  
  .cmd-dropdown .code-block {
    margin: 0.7em 0 0 0;
    font-size: 0.97em;
    background: #181818;
  }


.changelog-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
  }
  .changelog-item {
    margin-bottom: 1.1rem;
    background: #181818;
    border-radius: 10px;
    border: 1px solid #232323;
    overflow: hidden;
  }
  .changelog-toggle {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
  }
  .changelog-toggle:hover, .changelog-toggle:focus {
    background: #222;
  }
  .changelog-item.open .arrow {
    transform: rotate(90deg);
  }
  .changelog-dropdown {
    display: none;
    background: #151515;
    border-top: 1px solid #232323;
    padding: 1.2rem 2rem 1.5rem 3.2rem;
    color: #baffea;
    font-size: 0.98rem;
    animation: fadeIn 0.3s;
  }
  .changelog-item.open .changelog-dropdown {
    display: block;
  }
  .changelog-dropdown .code-block {
    margin: 0.7em 0 0 0;
    font-size: 0.97em;
    background: #181818;
  }
  
  
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
  }
  
  
  
  /* ========= HOMEPAGE ========= */
  #home h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .section-link {
    color: #00ffee;
    text-decoration: underline;
    cursor: pointer;
    display: block;
    margin-top: 0.5rem;
  }
  
  /* ========= TYPEWRITER ========= */
  .typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #00ffaa;
    width: fit-content;
    animation: typing 3s steps(28, end), blink-caret 0.7s step-end infinite;
  }
  
  @keyframes typing {
    from { width: 0; }
    to { width: 28ch; }
  }
  
  @keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #00ffaa; }
  }
  
  /* ========= DONATE BUTTON ========= */
  .donate-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #00ffaa;
    color: #000;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .donate-button:hover {
    background-color: #00cc88;
    color: #000;
  }


  code {
    font-size: 1.05rem;
    font-family: 'JetBrains Mono', monospace;
    background-color: #292929;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    color: #00ffaa;
  }
  
  
  /* ========= CUSTOM LIST STYLE ========= */
  #sidebar ul {
    padding-left: 1.5rem;
    list-style: none;
  }
  
  #sidebar ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
  }
  
  #sidebar ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00ffaa;
    font-size: 0.9rem;
  }
  
  /* ========= ACTIVE SECTION ========= */
  .section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  /* ========= FOOTER ========= */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #0d0d0d;
    color: #00ffaa;
    font-size: 0.9rem;
    border-top: 1px solid #1e1e1e;
  }
  
  .footer a {
    color: #00ffee;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  
  /* ========= PHONE RESPONSIVE ========= */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  
    .logo {
      font-size: 1.2rem;
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
    }
  
    .nav-links a {
      font-size: 1rem;
      width: 100%;
      padding: 0.75rem 1rem;
    }
  
    #sidebar {
      position: static;
      width: 100%;
      border-right: none;
      border-bottom: 1px solid #1e1e1e;
      flex-direction: row;
      justify-content: space-around;
      padding: 1rem;
    }
  
    #content {
      margin-left: 0;
      width: 100%;
      padding: 2rem 1rem;
    }
  
    .section {
      padding: 1.5rem 1rem;
      font-size: 0.95rem;
    }
  
    #home h2 {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 420px) {
    .logo {
      font-size: 1rem;
    }
  
    #content {
      padding: 1rem 0.75rem;
    }
  
    .section {
      font-size: 0.88rem;
    }
  
    .nav-links a {
      font-size: 0.95rem;
    }
  }
  @media (hover: none), (pointer: coarse) {
    .cursor-glow {
      display: none;
    }
  }
  