/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 10;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* NAV LOGO (NO GLOW) */
.nav-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: none;
}

/* NAV TITLE */
.nav-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* NAV LINKS */
.nav-links a {
  margin-left: 22px;
  text-decoration: none;
  font-size: 14px;
  color: #bdbdbd;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #8a6cff;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* HERO LOGO (NO GLOW) */
.logo {
  width: 150px;
  margin-bottom: 26px;
  filter: none;
  animation: float 4s ease-in-out infinite;
}

/* HERO TITLE (NORMAL FONT) */
h1 {
  font-size: 55px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 26px;
  text-transform: uppercase;
  text-shadow: none;
  transition: text-shadow 0.25s ease, color 0.25s ease;
}

/* HOVER GLOW */
h1:hover {
  color: #fff;
  text-shadow:
    0 0 6px rgba(160,120,255,0.6),
    0 0 14px rgba(160,120,255,0.8),
    0 0 26px rgba(160,120,255,1);
}


/* BUTTON (SUBTLE, ONLY BUTTON HAS STYLE) */
.invite-btn {
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  color: #fff;
  background: #8a6cff;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* HOVER GLOW */
.invite-btn:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 10px rgba(138,108,255,0.6),
    0 0 22px rgba(138,108,255,0.8),
    0 0 40px rgba(138,108,255,1);
}


/* ================= ANIMATION ================= */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  .logo {
    width: 110px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .invite-btn {
    width: 80%;
  }
}

/* ================= MENU BUTTON ================= */
.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 1024px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 240px;
    background: #000;
    border-left: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none;
    flex-direction: column;
    padding: 12px 0;
    z-index: 9;
  }

  .nav-links a {
    margin: 0;
    padding: 12px 20px;
    font-size: 14px;
  }

  .nav-links.show {
    display: flex;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  .nav-links {
    width: 100%;
    left: 0;
    right: 0;
  }
}
