.staff-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 210, 118, 0.15), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(73, 217, 154, 0.1), transparent 32rem),
    linear-gradient(140deg, #07090d 0%, #111823 48%, #1e1113 100%);
}

.staff-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.staff-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.84);
  backdrop-filter: blur(18px);
}

.staff-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 78px) 0 88px;
}

.staff-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 210, 118, 0.14), transparent 20rem),
    linear-gradient(145deg, rgba(248, 237, 216, 0.08), transparent),
    rgba(13, 18, 25, 0.84);
  box-shadow: var(--shadow);
}

.staff-hero-card h1 {
  font-size: clamp(44px, 8vw, 92px);
}

.staff-hero-card p,
.staff-card p,
.staff-duties p,
.staff-duties li,
.staff-warning p {
  color: var(--muted);
  line-height: 1.7;
}

.staff-hero-card p {
  max-width: 760px;
  font-size: 22px;
}

.staff-note {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.55);
}

.staff-note span,
.staff-role {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.staff-note strong {
  display: block;
  margin: 8px 0;
  font-family: "Cinzel", serif;
  font-size: 28px;
}

.staff-note small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 22px 0;
}

.staff-card,
.staff-duties article,
.staff-warning {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(248, 237, 216, 0.08), transparent),
    rgba(13, 18, 25, 0.82);
  box-shadow: var(--shadow);
}

.staff-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
}

.staff-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 210, 118, 0.16);
  border-radius: 50%;
}

.staff-card h2 {
  font-size: 30px;
}

.staff-card.owner {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 210, 118, 0.18), transparent 14rem),
    linear-gradient(145deg, rgba(248, 237, 216, 0.08), transparent),
    rgba(13, 18, 25, 0.86);
}

.staff-card.admin {
  background:
    radial-gradient(circle at 85% 18%, rgba(157, 45, 37, 0.2), transparent 14rem),
    linear-gradient(145deg, rgba(248, 237, 216, 0.08), transparent),
    rgba(13, 18, 25, 0.86);
}

.staff-duties {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.staff-duties article,
.staff-warning {
  padding: 28px;
}

.staff-duties ul {
  margin: 20px 0 0;
  padding-left: 22px;
}

.staff-duties li {
  margin: 10px 0;
}

.staff-warning {
  margin-top: 22px;
  background:
    radial-gradient(circle at 90% 20%, rgba(157, 45, 37, 0.2), transparent 18rem),
    linear-gradient(145deg, rgba(248, 237, 216, 0.08), transparent),
    rgba(13, 18, 25, 0.82);
}

@media (max-width: 1100px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .staff-header,
  .staff-hero-card,
  .staff-duties {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .staff-shell {
    width: min(100% - 24px, 1180px);
  }

  .staff-grid {
    grid-template-columns: 1fr;
  }

  .staff-card,
  .staff-duties article,
  .staff-warning,
  .staff-note {
    padding: 22px;
  }
}