body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  
  background-color: #000;
  background-image: radial-gradient(circle at top right, rgba(121, 68, 154, 0.20), transparent),
                    radial-gradient(circle at 20% 80%, rgba(249, 133, 202, 0.08), transparent);
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body > a {
  position: absolute;
  bottom: 2vmin;
  right: 2vmin;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

body > a:hover {
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(24, 24, 24, 0.328);
  backdrop-filter: blur(3px); 
  border: 1px solid #161b22;
  border-radius: 15px;
  margin: 20px auto;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 50%;
}

.logo span {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
}

nav {
  display: flex;
  gap: 10px;
  padding: 10px 0;
}

nav a {
  position: static;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

nav a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(144, 144, 144, 0.8);
}

nav a .docs,
nav a .support {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: text-top;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;  
}

.docs {
  background-image: url('../images/docs.png');
}

.support {
  background-image: url('../images/support.png');
}

main {
  text-align: center;
  padding: 50px 20px;
}

h1 {
  font-size: 3em;
}

.highlight {
  display: block;
  font-weight: bold;
  font-size: larger;
  color: #ff69b4;
  background: linear-gradient(to right, #8a2be2, #f985ca, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.2em;
  margin: 20px 0;
}

button {
  background-color: #5865F2;
  color: #ffffff;
  border: none;
  padding: 10px 12px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #5d67d5;
}

.add {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: middle;
  background-image: url('../images/discord.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}