body {
  font-family: "Inter", "Noto Sans Myanmar", sans-serif;
}

/* ─── Skip Link (a11y) ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

.gradient-overlay {
  background: linear-gradient(
    135deg,
    rgba(15, 30, 54, 0.95) 0%,
    rgba(30, 58, 138, 0.8) 100%
  );
}

.sticky-widget {
  position: sticky;
  top: 24px;
}

.glow-button {
  box-shadow: 0 4px 14px 0 rgba(242, 169, 0, 0.4);
  transition: all 0.3s ease;
}

.glow-button:hover {
  box-shadow: 0 6px 20px 0 rgba(242, 169, 0, 0.6);
  transform: translateY(-1px);
}

.faculty-hidden {
  display: none;
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 2rem;
}

.pagination-wrap .page-btn {
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.pagination-wrap .page-btn:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

.pagination-wrap .page-btn.active {
  background: rgba(242,169,0,0.15);
  border-color: rgba(242,169,0,0.3);
  color: #f2a900;
}

.pagination-wrap .page-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ═══════════════════════════════════════
   LUCIDE GLOBAL
   ═══════════════════════════════════════ */

.lucide {
  stroke: currentColor;
}

/* ═══════════════════════════════════════
   CARD SYSTEM
   ═══════════════════════════════════════ */

/* Base card — tonal layer above section bg, no shadow at rest */
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,184,0,0.25);
  transform: translateY(-6px);
}

/* ─── Faculty Card ─── */
.card-faculty {
  padding: 24px;
  text-align: center;
}
.faculty-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(245,184,0,0.2);
  margin: 0 auto 12px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(245,184,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-faculty:hover .faculty-avatar {
  border-color: rgba(245,184,0,0.5);
  box-shadow: 0 0 0 3px rgba(245,184,0,0.1);
}
.faculty-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faculty-avatar .initial {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
}
.card-faculty h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 2px;
  transition: color 0.3s;
}
.card-faculty:hover h3 {
  color: var(--gold-light);
}
.faculty-position {
  font-size: 0.75rem;
  color: rgba(245,184,0,0.65);
  line-height: 1.3;
  margin-bottom: 10px;
}
.faculty-degrees {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
  text-align: left;
}
.faculty-degrees li {
  list-style: none;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  padding: 2px 0;
}
.faculty-degrees li span {
  color: rgba(255,255,255,0.25);
}

/* ─── Alumni Card ─── */
.card-alumni {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.alumni-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(245,184,0,0.2);
  margin-bottom: 14px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(245,184,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-alumni:hover .alumni-avatar {
  border-color: rgba(245,184,0,0.5);
  box-shadow: 0 0 0 3px rgba(245,184,0,0.1);
  transform: scale(1.05);
}
.alumni-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.alumni-avatar .initial {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gold);
}
.card-alumni h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 2px;
  transition: color 0.3s;
}
.card-alumni:hover h3 {
  color: var(--gold-light);
}
.alumni-company {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.alumni-quote {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-style: italic;
}

/* ─── Career Card ─── */
.card-career {
  display: flex;
  flex-direction: column;
}
.card-career:hover .career-img img {
  transform: scale(1.08);
}
.career-img {
  height: 140px;
  overflow: hidden;
  position: relative;
}
.career-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,22,40,0.4) 100%);
  pointer-events: none;
}
.career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.career-img-placeholder {
  height: 140px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.career-img-placeholder i,
.career-img-placeholder svg {
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.15);
}
.career-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.career-body h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  transition: color 0.3s;
}
.card-career:hover .career-body h3 {
  color: var(--gold-light);
}
.career-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 0.8125rem;
}
.career-meta .label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1px;
}
.career-meta .value {
  color: rgba(255,255,255,0.7);
}
.career-body .desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-top: 12px;
  flex: 1;
}

/* ─── Research Area Card ─── */
.card-area {
  padding: 24px;
  text-align: center;
}
.card-area:hover .area-icon-wrap {
  background: rgba(245,184,0,0.15);
  transform: scale(1.06);
  box-shadow: 0 0 0 3px rgba(245,184,0,0.08);
}
.area-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245,184,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-area .area-icon-wrap {
  color: var(--gold);
}
.card-area .area-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: none;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-area:hover .area-icon-wrap svg {
  transform: scale(1.08);
}
.card-area h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.card-area:hover h3 {
  color: var(--gold-light);
}
.card-area p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ─── Publication Card ─── */
.card-pub {
  display: flex;
  flex-direction: column;
}
.card-pub:hover .pub-img img {
  transform: scale(1.08);
}
.pub-img {
  height: 150px;
  overflow: hidden;
  position: relative;
}
.pub-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.5) 100%);
  pointer-events: none;
}
.pub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pub-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pub-area {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(245,184,0,0.1);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  align-self: flex-start;
  transition: background 0.3s;
}
.card-pub:hover .pub-area {
  background: rgba(245,184,0,0.18);
}
.pub-body h2,
.pub-body h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.card-pub:hover .pub-body h2,
.card-pub:hover .pub-body h3 {
  color: var(--gold-light);
}
.pub-body p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  flex: 1;
}
.pub-author {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ─── Empty State ─── */
.empty-state {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}
.empty-state i,
.empty-state svg {
  width: 36px;
  height: 36px;
  color: rgba(245,184,0,0.25);
  margin-bottom: 12px;
}
.empty-state p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}
.empty-state a {
  color: var(--gold);
  text-decoration: underline;
}

/* ─── Outline button for card sections ─── */
.btn-outline-card {
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline-card:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,184,0,0.1);
}

/* ─── Course Card (search results) ─── */
.course-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.course-card:hover {
  border-color: rgba(245,184,0,0.25);
  background: rgba(245,184,0,0.04);
  transform: translateY(-2px);
}
/* ─── Badge (standalone) ─── */
.badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(245,184,0,0.1);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}

.course-card .badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(245,184,0,0.1);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  white-space: nowrap;
}

/* ─── Story Card ─── */
.story-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.story-card:hover {
  transform: translateY(-6px);
}

/* ─── Stat Value (trust strip) ─── */
.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card *,
  .card::before,
  .card::after {
    transition: none !important;
    transform: none !important;
  }
}
