
:root {
  --gold: #b8a48a;
  --gold-light: #CEBEA5;
  --gold-dark: #4a3d1e;
  --navy: #394D56;
  --navy-mid: #2d3e46;
  --navy-light: #4a6370;
  --silver: #C8CEC4;
  --bronze: #CD7F32;
  --diamond: #5DADA0;
  --bg: #1a2830;
  --card: rgba(255,255,255,0.05);
  --card-border: rgba(184,164,138,0.25);
  --text: #EEF2EC;
  --text-muted: #8fa0a8;
  --success: #2ECC71;
  --danger: #E74C3C;
  --warning: #F39C12;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── Stars Background ─── */
body::before {
  content:'';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(184,150,46,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(31,58,36,0.35) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Page Router ─── */
.page { display: none; animation: fadeIn 0.4s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* ─── Auth Page ─── */
#authPage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.auth-container {
  width: 100%;
  max-width: 460px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 40px;
}

.auth-logo .crest {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark, #0C1A0E));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 0 40px rgba(201,146,43,0.4);
}

.auth-logo h1 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.3;
}

.auth-logo p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

.auth-tabs {
  display: flex;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
  border: 1px solid var(--card-border);
}

.auth-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  color: var(--text-muted);
}

.auth-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,146,43,0.4);
}

.auth-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(20px);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--silver);
  font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,146,43,0.15);
}

.form-group select option { background: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  width: 100%;
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,146,43,0.45); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover { background: rgba(201,146,43,0.1); }

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }

/* ─── Main Layout ─── */
#mainApp { display: none; min-height: 100vh; }
#mainApp.active { display: flex; }

/* ─── Sidebar ─── */
.sidebar {
  width: 260px;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--navy) 0%, #060E08 100%);
  border-left: 1px solid rgba(201,146,43,0.2);
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  transition: transform 0.3s;
}

.sidebar-logo {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(201,146,43,0.15);
  text-align: center;
}

.sidebar-logo .logo-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.sidebar-logo h2 {
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.4;
}

.sidebar-logo p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.sidebar-user {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}

.user-info { flex: 1; min-width: 0; }
.user-info .name { font-weight: 700; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-info .role { font-size: 0.75rem; color: var(--gold); }

.nav-menu { flex: 1; padding: 12px 12px; overflow-y: auto; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.nav-item:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.nav-item.active { background: linear-gradient(135deg, rgba(201,146,43,0.2), rgba(201,146,43,0.1)); color: var(--gold-light); border: 1px solid rgba(201,146,43,0.25); }
.nav-item .icon { font-size: 1.2rem; width: 22px; text-align: center; }

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ─── Main Content ─── */
.main-content {
  flex: 1;
  margin-right: 260px;
  min-height: 100vh;
  padding: 0;
  position: relative;
  z-index: 1;
}

.content-header {
  background: rgba(12,27,58,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,146,43,0.15);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.content-header h1 { font-family: 'Cairo', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--gold-light); }
.content-header p { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

.content-body { padding: 32px; }

/* ─── Cards ─── */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header h3 { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1.1rem; }
.card-body { padding: 24px; }

/* ─── Stats Grid ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(201,146,43,0.05));
}

.stat-card:hover { transform: translateY(-3px); }
.stat-card .icon { font-size: 2rem; margin-bottom: 12px; }
.stat-card .value { font-family: 'Cairo', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--gold-light); }
.stat-card .label { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

/* ─── Points Wheel / Progress ─── */
.score-hero {
  background: linear-gradient(135deg, rgba(201,146,43,0.1), rgba(36,54,112,0.3));
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}

.score-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,146,43,0.15), transparent 60%);
}

.score-ring {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  position: relative;
}

.score-ring svg { transform: rotate(-90deg); }
.score-ring .bg-circle { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 10; }
.score-ring .progress-circle { fill: none; stroke-width: 10; stroke-linecap: round; transition: stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1); }
.score-ring .score-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-ring .score-num { font-family: 'Cairo', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.score-ring .score-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.level-none { background: rgba(255,255,255,0.08); color: var(--text-muted); }
.level-bronze { background: linear-gradient(135deg, rgba(205,127,50,0.3), rgba(205,127,50,0.15)); color: var(--bronze); border: 1px solid rgba(205,127,50,0.4); }
.level-silver { background: linear-gradient(135deg, rgba(192,200,216,0.3), rgba(192,200,216,0.15)); color: var(--silver); border: 1px solid rgba(192,200,216,0.4); }
.level-gold { background: linear-gradient(135deg, rgba(240,200,96,0.3), rgba(201,146,43,0.15)); color: var(--gold-light); border: 1px solid rgba(240,200,96,0.4); }
.level-diamond { background: linear-gradient(135deg, rgba(79,195,247,0.3), rgba(79,195,247,0.15)); color: var(--diamond); border: 1px solid rgba(79,195,247,0.4); }

.next-level-bar { margin-top: 16px; }
.next-level-bar .bar-info { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.progress-bar { height: 10px; background: rgba(255,255,255,0.08); border-radius: 5px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); transition: width 1.2s ease; }

/* ─── Encouragement Message ─── */
.encourage-box {
  background: linear-gradient(135deg, rgba(46,204,113,0.1), rgba(46,204,113,0.05));
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.encourage-box .icon { font-size: 1.8rem; flex-shrink: 0; }

/* ─── Axes Grid ─── */
.axes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.axis-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px;
  transition: all 0.25s;
  cursor: pointer;
}

.axis-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.axis-card.needs-work { border-color: rgba(231,76,60,0.4); background: rgba(231,76,60,0.06); }
.axis-card.needs-work .axis-name { color: #E74C3C; }

.axis-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.axis-icon { font-size: 1.4rem; }
.axis-pts { font-family: 'Cairo', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--gold-light); }
.axis-name { font-weight: 600; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.axis-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.axis-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); transition: width 1s ease; }

/* ─── Evidence Upload ─── */
.upload-section {
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(201,146,43,0.3);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  margin-bottom: 16px;
}

.upload-section:hover { border-color: var(--gold); background: rgba(201,146,43,0.05); }
.upload-section .up-icon { font-size: 2.5rem; margin-bottom: 10px; }
.upload-section h4 { font-weight: 700; margin-bottom: 6px; }
.upload-section p { color: var(--text-muted); font-size: 0.85rem; }

.criteria-select {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  padding: 4px;
}

.criteria-opt {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
}

.criteria-opt:hover { border-color: var(--gold); }
.criteria-opt.selected { border-color: var(--gold); background: rgba(201,146,43,0.12); color: var(--gold-light); }
.criteria-opt .pts { font-weight: 700; color: var(--gold); font-size: 0.9rem; }

/* ─── Submissions List ─── */
.submission-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sub-icon { font-size: 1.5rem; flex-shrink: 0; }
.sub-info { flex: 1; }
.sub-info h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.sub-info p { font-size: 0.8rem; color: var(--text-muted); }
.sub-status { padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; white-space: nowrap; }
.status-pending { background: rgba(243,156,18,0.15); color: var(--warning); border: 1px solid rgba(243,156,18,0.3); }
.status-approved { background: rgba(46,204,113,0.15); color: var(--success); border: 1px solid rgba(46,204,113,0.3); }
.status-rejected { background: rgba(231,76,60,0.15); color: var(--danger); border: 1px solid rgba(231,76,60,0.3); }

/* ─── Admin Panel ─── */
.admin-queue { }

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

.review-card .emp-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.review-card .emp-avatar { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--navy-light), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: var(--gold-light); }
.review-card .emp-details h4 { font-weight: 700; font-size: 1rem; }
.review-card .emp-details p { font-size: 0.8rem; color: var(--text-muted); }

.review-criteria { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 14px; margin-bottom: 14px; }
.review-criteria h5 { font-weight: 700; margin-bottom: 6px; color: var(--gold-light); }
.review-criteria p { font-size: 0.85rem; color: var(--text-muted); }

.pts-input-group { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.pts-input-group label { font-size: 0.9rem; font-weight: 600; white-space: nowrap; }
.pts-input-group input { width: 80px; padding: 8px 12px; text-align: center; }

.review-actions { display: flex; gap: 10px; margin-top: 14px; }

/* ─── Leaderboard ─── */
.lb-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}

.lb-item:hover { background: rgba(255,255,255,0.06); transform: translateX(-4px); }
.lb-item.rank-1 { background: linear-gradient(135deg, rgba(240,200,96,0.12), rgba(201,146,43,0.06)); border-color: rgba(240,200,96,0.3); }
.lb-item.rank-2 { background: linear-gradient(135deg, rgba(192,200,216,0.12), rgba(192,200,216,0.06)); border-color: rgba(192,200,216,0.25); }
.lb-item.rank-3 { background: linear-gradient(135deg, rgba(205,127,50,0.12), rgba(205,127,50,0.06)); border-color: rgba(205,127,50,0.3); }

.lb-rank { font-family: 'Cairo', sans-serif; font-size: 1.3rem; font-weight: 900; width: 32px; text-align: center; }
.lb-item.rank-1 .lb-rank { color: var(--gold-light); }
.lb-item.rank-2 .lb-rank { color: var(--silver); }
.lb-item.rank-3 .lb-rank { color: var(--bronze); }

.lb-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-light), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: var(--gold-light); flex-shrink: 0; }
.lb-name { flex: 1; font-weight: 600; font-size: 0.95rem; }
.lb-dept { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.lb-pts { font-family: 'Cairo', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--gold-light); }
.lb-level { font-size: 0.8rem; }

/* ─── Notification ─── */
.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: rgba(46,204,113,0.15);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(20px);
  white-space: nowrap;
}

.notification.show { transform: translateX(-50%) translateY(0); }
.notification.error { background: rgba(231,76,60,0.15); border-color: var(--danger); color: var(--danger); }

/* ─── Admin Stats ─── */
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

/* ─── Tooltip / Info ─── */
.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Analysis Chart ─── */
.radar-wrap { display: flex; justify-content: center; padding: 20px 0; }

canvas { max-width: 100%; }

/* ─── Mobile Toggle ─── */
.mobile-toggle {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 200;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,146,43,0.5);
}

@media (max-width: 768px) {
  .sidebar { transform: translateX(100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-right: 0; }
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .content-body { padding: 16px; }
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }

.section-title {
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.divider { height: 1px; background: rgba(255,255,255,0.06); margin: 24px 0; }

.empty-state { text-align: center; padding: 40px; color: var(--text-muted); }
.empty-state .icon { font-size: 3rem; margin-bottom: 12px; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-gold { background: rgba(201,146,43,0.2); color: var(--gold); }
.badge-blue { background: rgba(79,195,247,0.2); color: var(--diamond); }

.scrollable { max-height: 400px; overflow-y: auto; padding-left: 4px; }
.scrollable::-webkit-scrollbar { width: 4px; }
.scrollable::-webkit-scrollbar-track { background: transparent; }
.scrollable::-webkit-scrollbar-thumb { background: rgba(201,146,43,0.4); border-radius: 2px; }

.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-10 { gap: 10px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mb-16 { margin-bottom: 16px; }
.text-muted { color: var(--text-muted); font-size: 0.85rem; }
.text-gold { color: var(--gold); }
.font-bold { font-weight: 700; }
