* {
  box-sizing: border-box;
}
body {
  font-family: "Outfit", sans-serif;
  background: #000000;
  color: #fafafa;
  min-height: 100vh;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #7c3aed;
  border-radius: 4px;
}
.nav-glass {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(167, 139, 250, 0.15);
}
.nav-logo-img {
  height: 2rem;
  width: 2rem;
  border-radius: 0.5rem;
  object-fit: cover;
}
.nav-brand-img {
  padding-top: 3px;
  height: 1.5rem;
  width: auto;
  object-fit: cover;
}
@media (min-width: 640px) {
  .nav-logo-img {
    height: 2.25rem;
    width: 2.25rem;
  }
  .nav-brand-img {
    height: 1.5rem;
  }
}
.nav-link {
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
  transition: all 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.nav-link.active {
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #9ca3af;
  text-decoration: none;
  background: transparent;
}
.mobile-nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
}
.ip-bar {
  background: rgba(167, 139, 250, 0.03);
  border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}
.staff-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  transition: all 0.35s;
  overflow: hidden;
}
.staff-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(167, 139, 250, 0.3);
  box-shadow: 0 12px 40px rgba(167, 139, 250, 0.1);
}
.badge-owner {
  background: #dc2626;
  color: #fff;
}
.badge-dev {
  background: #38bdf8;
  color: #fff;
}
.badge-admin {
  background: #ec4899;
  color: #fff;
}
.badge-staff {
  background: #6b7280;
  color: #fff;
}
.badge-tester {
  background: #84cc16;
  color: #fff;
}
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fu 0.4s ease forwards;
}
.staff-card p {
  line-height: 1.6;
}
.staff-card .relative img {
  border: 3px solid rgba(124, 58, 237, 0.2);
  transition: border-color 0.3s;
}
.staff-card:hover .relative img {
  border-color: rgba(124, 58, 237, 0.6);
}
.title-fade {
  color: #ffffff;
}

