@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;600;700;800&family=Share+Tech+Mono&display=swap');

:root {
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.15);
  --cyan-glow: rgba(0, 212, 255, 0.4);
  --purple: #7b2fbe;
  --purple-dim: rgba(123, 47, 190, 0.15);
  --green: #00ff88;
  --green-dim: rgba(0, 255, 136, 0.15);
  --red: #ff3b5c;
  --red-dim: rgba(255, 59, 92, 0.15);
  --magenta: #ff2d9b;
  --gold: #ffd700;
  --bg: #06060f;
  --bg-2: #0b0b18;
  --bg-3: #10101f;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #e8eaf6;
  --text-muted: #6b7db3;
  --text-dim: #3d4d7a;
}

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

html { scroll-behavior: smooth; }

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

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(0, 212, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(123, 47, 190, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  height: 70px;
  background: rgba(6, 6, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.4;
}

.nav-brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-brand-text span {
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
}

.nav-brand .nav-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-left: 8px;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links li a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}

.nav-links li a:hover {
  color: var(--cyan);
  background: var(--cyan-dim);
}

.nav-links li a.active {
  color: var(--cyan);
}

.btn-nav-cta {
  background: var(--cyan) !important;
  color: var(--bg) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 6px !important;
  box-shadow: 0 0 20px var(--cyan-glow);
  transition: box-shadow 0.2s, transform 0.2s !important;
}

.btn-nav-cta:hover {
  box-shadow: 0 0 35px var(--cyan-glow) !important;
  transform: translateY(-1px);
  background: var(--cyan) !important;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(123, 47, 190, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--cyan);
  text-shadow: 0 0 40px var(--cyan-glow), 0 0 80px rgba(0,212,255,0.2);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-status-bar {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.hero-status-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse-dot 2s infinite; }
.dot-cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.dot-gray { background: var(--text-dim); }

.hero-status-item strong { color: var(--text); }
.hero-status-item span { color: var(--text-muted); font-size: 0.8rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 25px var(--cyan-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--cyan-glow), 0 10px 30px rgba(0,0,0,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-dim);
  transform: translateY(-2px);
}

.btn-danger {
  background: var(--red);
  color: var(--text);
  box-shadow: 0 0 20px var(--red-dim);
}

/* ─── SECTION ─── */
.section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 0;
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-4px);
  background: rgba(0,212,255,0.03);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ─── STATS ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 4rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: var(--cyan);
  opacity: 0.5;
}

.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 30px var(--cyan-glow);
  line-height: 1;
}

.stat-unit {
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ─── STAFF ─── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.staff-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.staff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s;
}

.staff-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-5px);
}

.staff-card:hover::before { opacity: 1; }

.staff-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.staff-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  object-fit: cover;
  transition: border-color 0.3s;
}

.staff-card:hover .staff-avatar img {
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.staff-info h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.staff-role {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid;
}

.staff-role.owner, .staff-role.Owner {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.3);
}

.staff-role.admin, .staff-role.Admin {
  background: var(--red-dim);
  color: var(--red);
  border-color: rgba(255,59,92,0.3);
}

.staff-role.moderator, .staff-role.Moderator, .staff-role.mod, .staff-role.Mod {
  background: var(--purple-dim);
  color: #b060ff;
  border-color: rgba(123,47,190,0.3);
}

.staff-role.support, .staff-role.Support {
  background: var(--cyan-dim);
  color: var(--cyan);
  border-color: rgba(0,212,255,0.3);
}

.staff-role.developer, .staff-role.Developer, .staff-role.dev, .staff-role.Dev {
  background: var(--green-dim);
  color: var(--green);
  border-color: rgba(0,255,136,0.3);
}

.staff-no-members {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: var(--text-muted);
}

/* ─── RULES ─── */
.rules-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.rule-section {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.rule-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--cyan), transparent);
}

.rule-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rule-section h2 i { font-size: 1rem; opacity: 0.7; }

.rule-section ol {
  padding-left: 0;
  list-style: none;
  counter-reset: rules;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rule-section ol li {
  counter-increment: rules;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.rule-section ol li::before {
  content: counter(rules, decimal-leading-zero);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--cyan);
  opacity: 0.6;
  min-width: 28px;
  padding-top: 3px;
}

/* ─── STATUS PAGE ─── */
.status-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.status-main-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.status-main-card.online { border-color: rgba(0,255,136,0.2); }
.status-main-card.offline { border-color: rgba(255,59,92,0.2); }

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.status-server-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.status-badge.online {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.3);
}

.status-badge.offline {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(255,59,92,0.3);
}

.status-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse-dot 2s infinite; }

.status-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.status-stat {
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.status-stat .value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 20px var(--cyan-glow);
}

.status-stat .label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.status-player-bar {
  margin-top: 2rem;
}

.player-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.player-bar-track {
  height: 6px;
  background: var(--bg-3);
  border-radius: 3px;
  overflow: hidden;
}

.player-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 10px var(--cyan-glow);
  transition: width 1s ease;
}

.status-offline-msg {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.status-offline-msg i {
  font-size: 3rem;
  color: var(--red);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}

/* ─── APPLY ─── */
.apply-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.apply-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
}

/* ─── FORMS ─── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

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

/* ─── PAGE HEADER ─── */
.page-hero {
  position: relative;
  padding: 5rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,255,0.06) 0%, transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.page-hero .eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--cyan);
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.75rem;
  position: relative;
}

.page-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

.page-hero p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1rem;
  position: relative;
}

/* ─── ALERT ─── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-error {
  background: var(--red-dim);
  border: 1px solid rgba(255,59,92,0.3);
  color: var(--red);
}

.alert-success {
  background: var(--green-dim);
  border: 1px solid rgba(0,255,136,0.3);
  color: var(--green);
}

.alert-warning {
  background: rgba(255,159,67,0.1);
  border: 1px solid rgba(255,159,67,0.3);
  color: #ff9f43;
}

.alert-danger {
  background: var(--red-dim);
  border: 1px solid rgba(255,59,92,0.3);
  color: var(--red);
}

/* ─── FOOTER ─── */
/* old footer replaced — see new footer block below */

/* ─── APPLY SUCCESS ─── */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.success-card {
  background: var(--glass);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
}

.success-icon {
  font-size: 3rem;
  color: var(--green);
  text-shadow: 0 0 30px var(--green);
  margin-bottom: 1.5rem;
}

.success-card h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.success-card p { color: var(--text-muted); }

/* ─── LOGIN ─── */
.login-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.login-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 440px;
}

.login-card h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.login-card .sub { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.9rem; }

/* ─── JOIN SECTION ─── */
.join-section {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}

.join-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,212,255,0.04) 0%, transparent 70%);
}

.join-section .section-title { position: relative; }
.join-section .section-sub { margin: 1rem auto 2.5rem; position: relative; }

/* ─── NAVBAR DROPDOWN ─── */
.nav-dropdown-parent {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s;
}

.nav-dropdown-parent:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 240px;
  z-index: 1500;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

/* Invisible bridge covers the gap between the trigger and dropdown
   so the mouse never leaves the hover area while moving downward */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown-parent:hover .nav-dropdown {
  display: block;
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-dropdown-item:hover {
  background: var(--glass);
}

.nav-dropdown-item > i {
  color: var(--cyan);
  font-size: 0.95rem;
  margin-top: 0.15rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.nav-dropdown-item div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-dropdown-item strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.nav-dropdown-item span {
  font-size: 0.73rem;
  color: var(--text-dim);
}

/* ─── FOOTER ENHANCED ─── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--glass-border);
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-col {}

.footer-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.footer-brand span {
  color: var(--cyan);
  text-shadow: 0 0 16px var(--cyan-glow);
}

.footer-brand-sub {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--cyan-dim);
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.3);
}

.footer-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.15s;
}

.footer-links-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-powered {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1px;
}

/* ─── NAVBAR USER ─── */
.nav-login-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(88, 101, 242, 0.18);
  color: #8b9cf7;
  border: 1px solid rgba(88, 101, 242, 0.35);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s;
  margin-left: 0.75rem;
  white-space: nowrap;
}

.nav-login-btn:hover {
  background: rgba(88, 101, 242, 0.32);
  color: #aab4f8;
  border-color: rgba(88, 101, 242, 0.55);
}

.nav-user {
  position: relative;
  margin-left: 0.75rem;
}

.nav-user-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-user-info:hover {
  background: var(--cyan-dim);
  border-color: rgba(0, 212, 255, 0.25);
}

.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan);
  object-fit: cover;
  flex-shrink: 0;
}

.nav-username {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-role-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
}

.nav-user-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 180px;
  z-index: 2000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav-user.open .nav-user-menu {
  display: block;
}

.nav-user-info.open {
  background: var(--cyan-dim);
  border-color: rgba(0, 212, 255, 0.25);
}

.nav-session-timer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 0.4rem;
  font-family: 'Share Tech Mono', monospace;
}

.nav-session-timer i {
  font-size: 0.7rem;
}

.nav-menu-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.15s;
}

.nav-menu-item:hover {
  background: var(--glass);
  color: var(--text);
}

.nav-menu-item i {
  width: 16px;
  color: var(--text-dim);
}

.nav-menu-logout {
  color: var(--red);
  margin-top: 0.25rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 0.65rem;
}

.nav-menu-logout:hover {
  background: var(--red-dim);
  color: var(--red);
}

/* ─── NAVBAR SCROLLED STATE ─── */
.navbar.scrolled {
  background: rgba(6, 6, 15, 0.97);
  box-shadow: 0 4px 40px rgba(0, 212, 255, 0.08);
}

/* ─── GLITCH ANIMATION ─── */
@keyframes glitch-clip-1 {
  0%   { clip-path: inset(12% 0 72% 0); transform: translate(-3px, 0); }
  33%  { clip-path: inset(58% 0 8% 0);  transform: translate(3px, 0); }
  66%  { clip-path: inset(30% 0 42% 0); transform: translate(-2px, 0); }
  100% { clip-path: inset(12% 0 72% 0); transform: translate(0, 0); }
}

@keyframes glitch-clip-2 {
  0%   { clip-path: inset(65% 0 5% 0);  transform: translate(3px, 0); }
  33%  { clip-path: inset(20% 0 55% 0); transform: translate(-3px, 0); }
  66%  { clip-path: inset(80% 0 2% 0);  transform: translate(2px, 0); }
  100% { clip-path: inset(65% 0 5% 0);  transform: translate(0, 0); }
}

.hero-content h1 {
  position: relative;
}

.hero-content h1.glitch-active::before,
.hero-content h1.glitch-active::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--cyan);
  pointer-events: none;
}

.hero-content h1.glitch-active::before {
  text-shadow: -2px 0 var(--magenta);
  animation: glitch-clip-1 0.12s steps(1) 3;
}

.hero-content h1.glitch-active::after {
  text-shadow: 2px 0 var(--cyan);
  animation: glitch-clip-2 0.12s steps(1) 3;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .navbar { padding: 0 1.25rem; }
  .nav-links { gap: 0; }
  .nav-links li a { padding: 0.4rem 0.5rem; font-size: 0.75rem; }
  .hero h1 { font-size: 2.8rem; }
  .hero-status-bar { gap: 1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .status-header { flex-direction: column; }
}

/* ═══════════════════════════════════════
   CHANGELOG PAGE
═══════════════════════════════════════ */
.cl-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.cl-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cl-filter-btn {
  padding: 0.45rem 1.1rem;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  color: var(--text-muted);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
}

.cl-filter-btn:hover { border-color: rgba(0,212,255,0.3); color: var(--text); }
.cl-filter-btn.active { background: var(--cyan-dim); color: var(--cyan); border-color: rgba(0,212,255,0.4); }

.cl-filter--major.active   { background: rgba(255,215,0,0.12); color: #ffd700; border-color: rgba(255,215,0,0.3); }
.cl-filter--feature.active { background: var(--cyan-dim); color: var(--cyan); border-color: rgba(0,212,255,0.4); }
.cl-filter--balance.active { background: var(--purple-dim); color: #a855f7; border-color: rgba(168,85,247,0.4); }
.cl-filter--hotfix.active  { background: var(--red-dim); color: var(--red); border-color: rgba(255,59,92,0.4); }

.cl-list { display: flex; flex-direction: column; }

.cl-card {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.cl-card-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
}

.cl-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 2px solid;
}

.cl-icon--major   { background: rgba(255,215,0,0.12); border-color: #ffd700; color: #ffd700; }
.cl-icon--feature { background: var(--cyan-dim); border-color: var(--cyan); color: var(--cyan); }
.cl-icon--balance { background: var(--purple-dim); border-color: #a855f7; color: #a855f7; }
.cl-icon--hotfix  { background: var(--red-dim); border-color: var(--red); color: var(--red); }

.cl-connector-line {
  flex: 1;
  width: 2px;
  background: var(--glass-border);
  margin: 8px 0;
  min-height: 1.5rem;
}

.cl-card:last-child .cl-connector-line { display: none; }

.cl-card-body {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}

.cl-card-body:hover { border-color: rgba(0,212,255,0.2); }

.cl-card--major  .cl-card-body:hover { border-color: rgba(255,215,0,0.25); }
.cl-card--balance .cl-card-body:hover { border-color: rgba(168,85,247,0.25); }
.cl-card--hotfix  .cl-card-body:hover { border-color: rgba(255,59,92,0.25); }

.cl-card-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.cl-type-tag {
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.18rem 0.65rem;
  border-radius: 20px;
  border: 1px solid;
}

.cl-type-tag--major   { background: rgba(255,215,0,0.12); color: #ffd700; border-color: rgba(255,215,0,0.25); }
.cl-type-tag--feature { background: var(--cyan-dim); color: var(--cyan); border-color: rgba(0,212,255,0.25); }
.cl-type-tag--balance { background: var(--purple-dim); color: #a855f7; border-color: rgba(168,85,247,0.25); }
.cl-type-tag--hotfix  { background: var(--red-dim); color: var(--red); border-color: rgba(255,59,92,0.25); }

.cl-version {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

.cl-date {
  font-size: 0.77rem;
  color: var(--text-dim);
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cl-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.cl-summary {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.cl-changes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cl-changes li {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cl-changes li i {
  color: var(--cyan);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ═══════════════════════════════════════
   JOBS PAGE
═══════════════════════════════════════ */
.jobs-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.jobs-legend-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.jobs-legend-types { display: flex; gap: 0.65rem; flex-wrap: wrap; align-items: center; }

.jl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid;
}

.jl-open       { background: rgba(0,255,136,0.08); color: var(--green); border-color: rgba(0,255,136,0.2); }
.jl-whitelisted { background: var(--cyan-dim); color: var(--cyan); border-color: rgba(0,212,255,0.25); }
.jl-illegal    { background: var(--purple-dim); color: #a855f7; border-color: rgba(168,85,247,0.25); }

.jobs-legend-pay {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}

.jl-label { font-weight: 700; color: var(--text-muted); }

.pay-tier {
  font-family: 'Share Tech Mono', monospace;
  color: var(--gold);
  font-size: 0.78rem;
  margin-right: 0.15rem;
}

.jcat {
  margin-bottom: 3rem;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
}

.jcat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--glass-border);
}

.jcat-header--red    { border-top: 3px solid var(--red); }
.jcat-header--blue   { border-top: 3px solid #5865f2; }
.jcat-header--cyan   { border-top: 3px solid var(--cyan); }
.jcat-header--purple { border-top: 3px solid #a855f7; }

.jcat-header-left { display: flex; align-items: flex-start; gap: 1rem; }

.jcat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 1px solid var(--glass-border);
}

.jcat-icon--red    { background: var(--red-dim); color: var(--red); }
.jcat-icon--blue   { background: rgba(88,101,242,0.12); color: #8b9cf7; }
.jcat-icon--cyan   { background: var(--cyan-dim); color: var(--cyan); }
.jcat-icon--purple { background: var(--purple-dim); color: #a855f7; }

.jcat-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.jcat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 520px;
}

.jcat-count {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  background: var(--bg-2);
}

.job-card {
  padding: 1.25rem;
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.2s;
}

.job-card:hover { background: var(--bg-3); }

.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.job-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.job-icon--red    { background: var(--red-dim); color: var(--red); }
.job-icon--blue   { background: rgba(88,101,242,0.12); color: #8b9cf7; }
.job-icon--cyan   { background: var(--cyan-dim); color: var(--cyan); }
.job-icon--purple { background: var(--purple-dim); color: #a855f7; }

.job-badges { display: flex; flex-direction: column; align-items: flex-end; gap: 0.3rem; }

.job-type {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  border: 1px solid;
  white-space: nowrap;
}

.job-type--open       { background: rgba(0,255,136,0.08); color: var(--green); border-color: rgba(0,255,136,0.2); }
.job-type--whitelisted { background: var(--cyan-dim); color: var(--cyan); border-color: rgba(0,212,255,0.2); }
.job-type--illegal    { background: var(--purple-dim); color: #a855f7; border-color: rgba(168,85,247,0.25); }

.job-pay {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.job-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.job-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.jobs-cta {
  text-align: center;
  padding: 3.5rem 2rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(0,212,255,0.04), rgba(123,47,190,0.04));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.jobs-cta h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  margin: 0.75rem 0 0.5rem;
}

.jobs-cta p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════
   LEADERBOARD PAGE
═══════════════════════════════════════ */
.lb-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.lb-global {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 600px) { .lb-global { grid-template-columns: 1fr; } }

.lb-global-stat {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.lb-global-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.lb-global-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.lb-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 960px) { .lb-layout { grid-template-columns: 1fr; } }

.lb-section-header {
  margin-bottom: 1rem;
}

.lb-section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.lb-section-header h2 i { color: var(--cyan); }

.lb-list {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.lb-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}

.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: rgba(255,255,255,0.02); }
.lb-row--top-0 { background: rgba(255,215,0,0.04); }
.lb-row--top-1 { background: rgba(192,192,192,0.03); }
.lb-row--top-2 { background: rgba(205,127,50,0.03); }

.lb-rank-cell { width: 36px; text-align: center; flex-shrink: 0; }

.lb-medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.9rem;
}

.lb-medal--gold   { background: rgba(255,215,0,0.15); color: #ffd700; box-shadow: 0 0 12px rgba(255,215,0,0.25); }
.lb-medal--silver { background: rgba(192,192,192,0.12); color: #c0c0c0; }
.lb-medal--bronze { background: rgba(205,127,50,0.15); color: #cd7f32; }

.lb-rank-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.lb-avatar-wrap { flex-shrink: 0; }

.lb-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--glass-border);
  display: block;
}

.lb-avatar--placeholder {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.lb-player { flex: 1; min-width: 0; }

.lb-player-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lb-player-stats {
  display: flex;
  gap: 0.75rem;
  font-size: 0.74rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

.lb-player-stats i { color: var(--cyan); margin-right: 0.2rem; }

.lb-score-cell { text-align: right; flex-shrink: 0; }

.lb-score-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.lb-score-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lb-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem;
  gap: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.lb-empty i { font-size: 2rem; }
.lb-empty p { font-size: 0.88rem; }

/* Side panels */
.lb-side { display: flex; flex-direction: column; gap: 1.25rem; }

.lb-panel {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.lb-panel-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--glass-border);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}

.lb-panel-header i { color: var(--cyan); }

.lb-mini-list { padding: 0.4rem 0.5rem; }

.lb-mini-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.lb-mini-row:hover { background: var(--glass); }

.lb-mini-rank {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
  width: 24px;
  flex-shrink: 0;
}

.lb-mini-name {
  flex: 1;
  font-size: 0.84rem;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lb-mini-score {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

.lb-mini-unit {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-dim);
  font-weight: 400;
}

.lb-empty-sm {
  padding: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Leaderboard — full-width list */
.lb-list--full {
  max-width: 100%;
}

/* Leaderboard — empty hint */
.lb-empty-hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  opacity: 0.7;
}

/* Leaderboard — tab switcher */
.lb-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0;
}

.lb-tab {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.2rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.lb-tab i { font-size: 0.85rem; }

.lb-tab:hover { color: var(--text); }

.lb-tab.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

/* Leaderboard — tab panels */
.lb-tab-panel { }
.lb-hidden { display: none !important; }

/* Leaderboard — personal rank card */
.lb-my-rank {
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(0,212,255,0.02));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.lb-my-rank-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cyan);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lb-my-rank-cells {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.lb-my-cell { }

.lb-my-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 16px var(--cyan-glow);
}

.lb-my-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

.lb-my-sub i { color: var(--cyan); margin-right: 0.2rem; }

/* ═══════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════ */
.faq-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.faq-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  margin-bottom: 2.5rem;
  transition: border-color 0.2s;
}

.faq-search-wrap:focus-within { border-color: rgba(0,212,255,0.4); }

.faq-search-wrap i { color: var(--text-dim); flex-shrink: 0; }

.faq-search-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
}

.faq-search-wrap input::placeholder { color: var(--text-dim); }

.faq-content { display: flex; flex-direction: column; gap: 2rem; }

.faq-section { }

.faq-section-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--glass-border);
}

.faq-section-label i { color: var(--cyan); width: 16px; text-align: center; }

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: rgba(0,212,255,0.3); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  gap: 1rem;
  transition: color 0.15s;
}

.faq-question:hover { color: var(--cyan); }
.faq-item.open .faq-question { color: var(--cyan); }

.faq-chevron {
  color: var(--text-dim);
  flex-shrink: 0;
  font-size: 0.78rem;
  transition: transform 0.3s ease, color 0.15s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--cyan); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  border-top: 1px solid var(--glass-border);
  padding-top: 0.85rem;
  margin: 0 1.25rem 1.25rem;
  border-radius: 0;
}

.faq-cta-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(123,47,190,0.05));
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
}

.faq-cta-icon {
  width: 52px;
  height: 52px;
  background: var(--cyan-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.faq-cta-text { flex: 1; }
.faq-cta-text h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 0.2rem; }
.faq-cta-text p { color: var(--text-muted); font-size: 0.86rem; }

/* ═══════════════════════════════════════
   STATUS PAGE
═══════════════════════════════════════ */
.stat-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Hero card */
.stat-hero-card {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.stat-hero-card--online  { border-top: 3px solid var(--cyan); }
.stat-hero-card--offline { border-top: 3px solid var(--red); }

.stat-hero-card--online::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, rgba(0,212,255,0.05) 0%, transparent 100%);
  pointer-events: none;
}

.stat-hero-card--offline::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, rgba(255,59,92,0.05) 0%, transparent 100%);
  pointer-events: none;
}

.stat-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.stat-server-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

.stat-uptime-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 24px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid;
}

.stat-pill--online  { background: rgba(0,255,136,0.08); color: var(--green); border-color: rgba(0,255,136,0.25); }
.stat-pill--offline { background: var(--red-dim); color: var(--red); border-color: rgba(255,59,92,0.3); }

.stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-pill--online .stat-dot  { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse-dot 2s infinite; }
.stat-pill--offline .stat-dot { background: var(--red); }

/* Metrics row */
.stat-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.stat-metric {
  flex: 1;
  padding: 1.1rem 1rem;
  text-align: center;
  min-width: 80px;
}

.stat-metric-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-metric-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.stat-metric-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
  flex-shrink: 0;
}

/* Player bar */
.stat-bar-wrap { margin-bottom: 1.5rem; }

.stat-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.stat-bar-track {
  height: 6px;
  background: var(--bg-3);
  border-radius: 3px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), rgba(0,212,255,0.6));
  border-radius: 3px;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px var(--cyan-glow);
}

/* Join row */
.stat-join-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-join-hint {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Offline block */
.stat-offline-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1rem;
  gap: 0.85rem;
  text-align: center;
}

.stat-offline-icon {
  width: 60px;
  height: 60px;
  background: var(--red-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.stat-offline-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 400px;
  line-height: 1.6;
}

/* Info grid */
.stat-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 700px) {
  .stat-info-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-metrics { flex-direction: column; }
  .stat-metric-divider { width: 100%; height: 1px; }
}

.stat-info-card {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.stat-info-card--auto { cursor: default; }

.stat-info-icon {
  width: 38px;
  height: 38px;
  background: var(--cyan-dim);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.stat-info-body { min-width: 0; }

.stat-info-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.2rem;
}

.stat-info-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Chart section */
.stat-section-header {
  margin-bottom: 1rem;
}

.stat-section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.stat-section-header h2 i { color: var(--cyan); }

.stat-chart-wrap {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

/* ─── HOME PAGE ─── */

.home-section-centered {
  text-align: center;
}

.section-sub--centered {
  margin-left: auto;
  margin-right: auto;
}

.home-cta-link {
  text-align: center;
  margin-top: 2rem;
}

.home-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.home-ghost-link:hover {
  color: var(--cyan);
}

/* Careers Preview */
.careers-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: left;
}

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

@media (max-width: 500px) {
  .careers-preview-grid { grid-template-columns: 1fr; }
}

.career-prev-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.15rem;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  text-decoration: none;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.15s;
}

.career-prev-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
}

.career-prev--red::before    { background: var(--red); }
.career-prev--cyan::before   { background: var(--cyan); }
.career-prev--blue::before   { background: #5865f2; }
.career-prev--purple::before { background: #a855f7; }

.career-prev-card:hover {
  transform: translateY(-2px);
}

.career-prev--red:hover    { border-color: rgba(255,59,92,0.3); }
.career-prev--cyan:hover   { border-color: rgba(0,212,255,0.3); }
.career-prev--blue:hover   { border-color: rgba(88,101,242,0.3); }
.career-prev--purple:hover { border-color: rgba(168,85,247,0.3); }

.career-prev-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.career-prev--red    .career-prev-icon { color: var(--red); }
.career-prev--cyan   .career-prev-icon { color: var(--cyan); }
.career-prev--blue   .career-prev-icon { color: #8b9cf7; }
.career-prev--purple .career-prev-icon { color: #a855f7; }

.career-prev-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.career-prev-info p {
  font-size: 0.74rem;
  color: var(--text-dim);
}

.career-prev-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  margin-top: 0.25rem;
  border: 1px solid;
}

.career-wl     { background: rgba(0,212,255,0.1);   color: var(--cyan);  border-color: rgba(0,212,255,0.2); }
.career-open   { background: rgba(0,255,136,0.1);   color: var(--green); border-color: rgba(0,255,136,0.2); }
.career-illegal{ background: rgba(168,85,247,0.12); color: #a855f7;      border-color: rgba(168,85,247,0.2); }

/* Latest Updates */
.home-updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: left;
}

@media (max-width: 768px) {
  .home-updates-grid { grid-template-columns: 1fr; }
}

.home-update-card {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.home-update-card:hover {
  border-color: rgba(0,212,255,0.2);
}

.home-update-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.home-update-version {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.home-update-date {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-left: auto;
}

.home-update-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.home-update-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* How To Join Steps */
.home-steps-row {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-step-card {
  flex: 1;
  min-width: 200px;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.home-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.home-step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0,212,255,0.08);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
  pointer-events: none;
}

.home-step-icon {
  font-size: 1.4rem;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.home-step-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.home-step-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-step-arrow {
  color: var(--text-dim);
  font-size: 1.2rem;
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 768px) {
  .home-steps-row { flex-direction: column; }
  .home-step-arrow { transform: rotate(90deg); align-self: center; }
}

/* ─── ACCOUNT PAGE ─── */

.account-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.account-user-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.account-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
  object-fit: cover;
  flex-shrink: 0;
}

.account-user-info {
  flex: 1;
  min-width: 0;
}

.account-username {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

.account-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 0.2rem;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-top: 0.5rem;
}

.account-badge.staff {
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.25);
}

.account-steam-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  margin-top: 0.5rem;
  color: var(--text-muted);
}

.account-steam-link i { color: #c6d4df; }

.account-steam-link a {
  color: #c6d4df;
  text-decoration: none;
  transition: color 0.2s;
}

.account-steam-link a:hover { color: #fff; text-decoration: underline; }

.account-steam-id-val {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-dim);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
}

.account-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Steam ID panel */
.account-steam-panel {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.account-steam-body {
  padding: 1.5rem;
}

.steam-help-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.steam-help-text strong { color: var(--text); }

.steam-help-link {
  color: var(--cyan);
  text-decoration: none;
  margin-left: 0.4rem;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.steam-help-link:hover { color: #fff; }

.steam-input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.steam-input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 240px;
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.steam-input-wrap:focus-within {
  border-color: rgba(198,212,223,0.4);
}

.steam-prefix {
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  color: #c6d4df;
  background: var(--glass);
  border-right: 1px solid var(--glass-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.steam-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.88rem;
  padding: 0.65rem 0.85rem;
  outline: none;
}

.steam-input::placeholder { color: var(--text-dim); }

/* Account grid */
.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 700px) {
  .account-grid { grid-template-columns: 1fr; }
}

.account-section {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.account-section-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.account-section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.account-list { padding: 0.5rem; }

.account-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.2s;
}

.account-list-item:last-child { border-bottom: none; }
.account-list-item:hover { background: var(--glass); }

.account-item-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticket-category {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.account-item-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.account-item-right { flex-shrink: 0; }

.account-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2.5rem 1rem;
  color: var(--text-dim);
  text-align: center;
}

.account-empty i { font-size: 2rem; color: var(--text-dim); }
.account-empty p  { font-size: 0.9rem; }

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  white-space: nowrap;
}

.status-pending  { background: rgba(255,215,0,0.12);   color: var(--gold);       border: 1px solid rgba(255,215,0,0.25); }
.status-review   { background: rgba(0,212,255,0.12);   color: var(--cyan);       border: 1px solid rgba(0,212,255,0.25); }
.status-approved { background: rgba(0,255,136,0.12);   color: var(--green);      border: 1px solid rgba(0,255,136,0.25); }
.status-denied   { background: rgba(255,59,92,0.12);   color: var(--red);        border: 1px solid rgba(255,59,92,0.25); }
.status-open     { background: rgba(0,212,255,0.12);   color: var(--cyan);       border: 1px solid rgba(0,212,255,0.25); }
.status-claimed  { background: rgba(123,47,190,0.15);  color: #a855f7;           border: 1px solid rgba(123,47,190,0.3); }
.status-closed   { background: rgba(107,125,179,0.12); color: var(--text-muted); border: 1px solid var(--glass-border); }

.btn-sm {
  padding: 0.4rem 0.9rem !important;
  font-size: 0.8rem !important;
}
