/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BASE ================= */
html, body {
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;

  /* SCROLL LOCK */
  overflow: hidden;
  overscroll-behavior: none;
}

/* ================= NAVBAR ================= */
.navbar {
  height: 64px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* LEFT */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.nav-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* RIGHT 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%;
}

.nav-links .active {
  color: #fff;
}

/* ================= MAIN LOGIN AREA ================= */
.staff-login {
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

/* LOGO */
.logo {
  width: 130px;
  margin-bottom: 20px;
}

/* TITLE */
.staff-login h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* ================= DISCORD LOGIN BUTTON ================= */
.discord-login {
  padding: 14px 36px;
  border-radius: 30px;
  background: #5865F2;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.discord-login:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 12px rgba(88,101,242,0.6),
    0 0 28px rgba(88,101,242,0.9);
}

/* ================= TABLET ================= */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .logo {
    width: 110px;
  }

  .staff-login h1 {
    font-size: 24px;
  }

  .discord-login {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {
  .nav-links a {
    margin-left: 14px;
    font-size: 13px;
  }

  .staff-login h1 {
    font-size: 22px;
  }
}
