.staff-container {
  max-width: 1100px;
  margin: 0 auto 120px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.staff-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
  justify-content: center;
}

.staff-card {
  width: 280px;
  background: rgba(10, 8, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 32px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 25%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.skeleton-text {
  height: 20px;
  margin: 8px auto;
}

.skeleton-text.short {
  width: 60%;
}
.skeleton-text.medium {
  width: 80%;
}

.skeleton-role {
  height: 30px;
  width: 100px;
  margin: 12px auto 0;
  border-radius: 8px;
}

.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.staff-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--main);
}

.staff-avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 16px;
}

.staff-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.staff-role {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.staff-discord {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.staff-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  text-align: center;
}

.staff-section {
  margin-bottom: 40px;
  text-align: center;
}
