* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter;
  background: #05060a;
  color: white;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 30px;
  background: rgba(10,12,20,0.75);
  backdrop-filter: blur(14px);
}

.logo {
  font-weight: 800;
}

.discord {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 10px;
  background: #5865F2;

  color: white;
  text-decoration: none;
}

.discord img {
  width: 20px;
  height: 20px;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/bg.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.2), rgba(0,0,0,0.95));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 65px;
  font-family: Orbitron;
}

.tagline {
  color: #b8c6ff;
  margin-top: 10px;
}

/* SOCIAL */
.social {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.center-name {
  font-size: 20px;
  color: #cfd6ff;
  font-weight: 600;
  margin-top: 15px;
}

.row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 12px;

  text-decoration: none;
  color: white;
  font-weight: 600;

  transition: 0.25s;

  position: relative;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  opacity: 0;
  transition: 0.25s;
  z-index: -1;
  filter: blur(10px);
}

.btn:hover::after {
  opacity: 1;
}

.discord {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 16px;

    border-radius: 12px;
    background: #5865F2;

    color: white;
    text-decoration: none;

    transition: .25s;
}

.discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(88,101,242,.8);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: white;
    text-decoration: none;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 8px;
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav nav a {
    position: relative;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-weight: 600;
    transition: .25s;
}

.nav nav a:hover {
    color: white;
}

.nav nav a.active {
    color: white;
}

.nav nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 100%;
    height: 3px;

    border-radius: 999px;

    background: #5865F2;
    box-shadow: 0 0 12px #5865F2;
}

.creator-links{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:35px;
    flex-wrap:wrap;
}

.creator{
    text-decoration:none;
    font-size:1.15rem;
    font-weight:700;
    transition:.25s;
}

.burnny{
    color:#cfd6ff;
}

.burnny:hover{
    color:#ff8c1a;
}

.waysalz{
    color:#cfd6ff;
}

.waysalz:hover{
    color:#4da6ff;
}

.creator:hover{
    transform:translateY(-2px);
}

a,
button{
    -webkit-user-drag:none;
    user-drag:none;
}
a img,
button img{
    -webkit-user-drag:none;
    user-drag:none;
    pointer-events:none;
}

html,
body{
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}