body, html {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-style: normal;
	margin: 0;
	padding: 0;
	color: white;
	background-color: #111; /* fallback bg */
	font-size: 18px;
}

/* Optional: headings */
.heading-1 {
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	line-height: 1.1;
	color: white;
}

.heading-2 {
	font-size: 1.5rem;
	font-weight: 500;
}


/* Background colors for each section */
/*
section:nth-of-type(1) { background-color: rgb(11,11,13); }
section:nth-of-type(2) { background-color: rgb(29,29,31); }
*/
code {
    background-color: rgba(255, 255, 255, 0.2); /* Just a gentle highlight */
    border-radius: 4px;             /* Rounded corners */
    padding: 2px 6px;               /* Padding inside the code block */
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(30, 30, 30, 0.6);
  border-bottom: 1px none rgba(255, 255, 255, 0.1);
}

/* Hamburger icon - hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
  text-decoration: none;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: white;
  text-decoration: underline;
  font-size: 0.95rem;
  font-weight: 500;
}

.discord-button {
  background-color: #5865F2; /* Discord blurple */
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 0.95rem;
}

.discord-button:hover {
  background-color: #7389fa;
}

.download-button {
  background-color: #fa6d40;
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 0.95rem;
}

.download-button:hover {
  background-color: #fcb230;
}

@media (max-width: 600px) {
  .hamburger {
    display: block;
  }
  .navbar-actions {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: rgba(30, 30, 30, 0.95);
    flex-direction: column;
    padding: 1rem;
    width: 100%;
    gap: 1rem;
  }

  .navbar-actions.open {
    display: flex;
  }
}