/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at center, #0b1220, #020409);
  color: #e5e7eb;
  min-height: 100vh;
}

/* ================= NAVBAR ================= */
.navbar {
  height: 72px;
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.logo-dot {
  width: 14px;
  height: 14px;
  background: #ff3b3b;
  border-radius: 50%;
  box-shadow: 0 0 20px #ff3b3b;
}

.logo small {
  font-size: 10px;
  letter-spacing: 3px;
  opacity: 0.7;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #e5e7eb;
}

.nav-btn {
  background: linear-gradient(135deg, #ff3b3b, #ff6a6a);
  padding: 10px 18px;
  border-radius: 12px;
}

/* ================= PAGE ================= */
.missing-page {
  position: relative;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

/* GLOWS */
.bg-glow {
  position: absolute;
  filter: blur(140px);
  opacity: 0.35;
}

.bg-glow.blue {
  width: 520px;
  height: 520px;
  background: #3b82f6;
  left: 6%;
  top: 20%;
}

.bg-glow.red {
  width: 380px;
  height: 380px;
  background: #ff3b3b;
  right: 12%;
  bottom: 20%;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

/* ================= HEADER ================= */
.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 800;
}

.page-header p {
  margin-top: 14px;
  max-width: 700px;
  margin-inline: auto;
  color: #cbd5f5;
}

/* ================= FILTERS ================= */
.filters {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.filters input,
.filters select {
  flex: 1;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(147,197,253,0.25);
  background: rgba(255,255,255,0.04);
  color: #e5e7eb;
}

/* ================= GRID ================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.person-card {
  background: rgba(10,15,30,0.75);
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(147,197,253,0.25);
  box-shadow: 0 0 30px rgba(147,197,253,0.25);
  position: relative;
  transition: 0.3s ease;
}

.person-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.photo {
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #020409;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.info h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.info p {
  font-size: 13px;
  color: #cbd5f5;
}

/* STATUS BADGE */
.status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.status.yellow {
  background: rgba(250,204,21,0.15);
  color: #facc15;
}

.status.blue {
  background: rgba(59,130,246,0.15);
  color: #3b82f6;
}

.status.green {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

/* BUTTON */
.view-btn {
  display: block;
  margin-top: 16px;
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(147,197,253,0.4);
  color: #e5e7eb;
  text-decoration: none;
}

/* DISCLAIMER */
.disclaimer {
  margin-top: 80px;
  text-align: center;
  font-size: 13px;
  color: #cbd5f5;
  line-height: 1.6;
}
