:root {
  --gold: #d4a842;
  --gold-light: #f0d078;
  --gold-dark: #b08930;
  --gold-glow: rgba(212, 168, 66, 0.3);
  --gold-glow-strong: rgba(212, 168, 66, 0.6);
  --bg-primary: #0a0a0f;
  --bg-secondary: #0f0f18;
  --bg-card: #12121e;
  --bg-card-hover: #1a1a2e;
  --bg-navbar: rgba(10, 10, 15, 0.95);
  --text-primary: #e8e8f0;
  --text-secondary: #8888a0;
  --text-muted: #555570;
  --border: rgba(212, 168, 66, 0.15);
  --border-hover: rgba(212, 168, 66, 0.35);
  --success: #2ecc71;
  --danger: #e74c3c;
  --warning: #f39c12;
  --info: #3498db;
  --font-display: 'Orbitron', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.gold-text { color: var(--gold); }
.gold { color: var(--gold); }
.gold-link { color: var(--gold); text-decoration: none; font-weight: 600; }
.gold-link:hover { text-decoration: underline; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-navbar);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 66, 0.1);
  box-shadow: 0 0 20px var(--gold-glow);
}

.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  min-width: 120%;
  min-height: 120%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  opacity: 0.75;
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 66, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 168, 66, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.85) 50%, var(--bg-primary) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.server-console {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 168, 66, 0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.console-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-glow-strong);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--gold-glow-strong); }
  50% { opacity: 0.5; box-shadow: 0 0 20px var(--gold-glow); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(212, 168, 66, 0.2);
}

.hero-title-outline {
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 8px;
  margin-bottom: 0.5rem;
}

.hero-powered {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 30px var(--gold-glow-strong);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 66, 0.1);
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.75rem;
}

.hero-stats-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.stat-check i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ===================== STATUS CARD ===================== */
.status-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.status-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--text-secondary);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.status-indicator.online { color: var(--success); }
.status-indicator.offline { color: var(--danger); }

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.3s ease;
}

.status-indicator.online .status-dot {
  background: var(--success);
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
  animation: pulse 2s infinite;
}

.status-indicator.offline .status-dot {
  background: var(--danger);
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.status-item {
  text-align: center;
  padding: 1rem 0.5rem;
  background: rgba(212, 168, 66, 0.05);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.status-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.status-value .unit {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.status-desc {
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.status-time {
  text-align: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.time-display {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
  letter-spacing: 3px;
}

.time-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.discord-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.discord-header {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.discord-header i {
  color: #5865F2;
}

.scroll-indicator {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.scroll-arrow {
  margin-top: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-darker {
  background: var(--bg-primary);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 168, 66, 0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 1rem;
  display: block;
  width: fit-content;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.section-title-large {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
}

.title-bar {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* ===================== TARGET CARDS ===================== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.target-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.target-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-4px);
}

.target-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
}

.icon-gold {
  background: linear-gradient(135deg, rgba(212, 168, 66, 0.2), rgba(212, 168, 66, 0.1));
  color: var(--gold);
  border: 1px solid rgba(212, 168, 66, 0.3);
}

.icon-amber {
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(243, 156, 18, 0.1));
  color: var(--warning);
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.target-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.target-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.target-cta {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===================== FEATURES ===================== */
.features-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card, .why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover, .why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(212, 168, 66, 0.2), rgba(212, 168, 66, 0.1));
  color: var(--gold);
  border: 1px solid rgba(212, 168, 66, 0.3);
}

.feature-card h3, .why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p, .why-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-underline {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0.5rem auto 0;
  border-radius: 1px;
}

/* ===================== JOBS ON DUTY ===================== */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.job-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-name i {
  color: var(--gold);
}

.job-count {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(212, 168, 66, 0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
}

.job-members {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-member {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.jobs-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.jobs-empty i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  opacity: 0.3;
}

/* ===================== ANNOUNCEMENTS ===================== */
.announcements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.announcement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.announcement-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.announcement-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.announcement-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.badge-update {
  background: rgba(212, 168, 66, 0.15);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 66, 0.3);
}

.badge-event {
  background: rgba(231, 76, 60, 0.15);
  color: var(--danger);
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.badge-maintenance {
  background: rgba(243, 156, 18, 0.15);
  color: var(--warning);
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.announcement-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.announcement-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.announcement-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 8px;
}

/* ===================== MODAL ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.modal-players {
  max-width: 520px;
}

.modal-players .modal-body {
  max-height: 65vh;
  overflow-y: auto;
}

.modal-players .modal-body::-webkit-scrollbar { width: 4px; }
.modal-players .modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-players .modal-body::-webkit-scrollbar-thumb { background: rgba(212,168,66,0.3); border-radius: 4px; }

.player-count-header {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.modal-search {
  position: relative;
  margin-bottom: 1rem;
}

.modal-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.modal-search input {
  width: 100%;
  padding: 9px 12px 9px 34px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,66,0.12);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}

.modal-search input::placeholder { color: var(--text-muted); }
.modal-search input:focus { border-color: var(--gold); }

.players-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.player-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.player-item:hover {
  border-color: var(--border);
  background: rgba(212, 168, 66, 0.06);
}

.player-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,168,66,0.25);
  flex-shrink: 0;
}

.player-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,168,66,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 2px solid rgba(212,168,66,0.15);
}

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

.player-info-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

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

.player-fivem-name {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-info-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-job-badge {
  font-size: 0.68rem;
  padding: 1px 7px;
  border-radius: 4px;
  background: rgba(212,168,66,0.1);
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.player-job-badge.on-duty {
  background: rgba(46,204,113,0.12);
  color: #2ecc71;
}

.player-id {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.player-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.player-ping {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.player-ping.ping-good { color: #2ecc71; }
.player-ping.ping-mid { color: #f39c12; }
.player-ping.ping-bad { color: #e74c3c; }

.player-status-badge {
  font-size: 0.62rem;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.player-status-badge.afk {
  background: rgba(231,76,60,0.12);
  color: #e74c3c;
}

.player-status-badge.active {
  background: rgba(46,204,113,0.12);
  color: #2ecc71;
}

.players-empty {
  text-align: center;
  padding: 30px 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.players-empty i {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: rgba(212,168,66,0.2);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-right {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===================== MUSIC PLAYER ===================== */
.music-player {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 500;
}

.music-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--gold-glow);
}

.music-toggle:hover {
  background: rgba(212, 168, 66, 0.1);
  transform: scale(1.1);
}

.music-toggle.active {
  background: var(--gold);
  color: var(--bg-primary);
}

/* Panel */
.music-panel {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  animation: musicSlideUp 0.3s ease;
}

.music-panel.open {
  display: flex;
}

@keyframes musicSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.music-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.music-panel-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.music-radio-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(212, 168, 66, 0.15);
  border: 1px solid rgba(212, 168, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.music-radio-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

.music-radio-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.music-panel-actions {
  display: flex;
  gap: 4px;
}

.music-panel-minimize,
.music-panel-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.music-panel-minimize:hover,
.music-panel-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

/* Now Playing */
.music-now-playing {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(212, 168, 66, 0.05);
  border-bottom: 1px solid var(--border);
}

.music-track-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 168, 66, 0.2), rgba(212, 168, 66, 0.08));
  border: 1px solid rgba(212, 168, 66, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.music-track-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

.music-track-status {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.music-track-status.playing {
  color: var(--gold);
}

/* Playlist */
.music-playlist {
  max-height: 140px;
  overflow-y: auto;
  border-bottom: 1px solid var(--border);
}

.music-playlist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.music-playlist-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.music-playlist-item.active {
  background: rgba(212, 168, 66, 0.1);
  color: var(--gold);
}

.music-playlist-item i {
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}

/* Controls */
.music-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px 8px;
}

.music-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.music-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.music-btn-play {
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 1.1rem;
}

.music-btn-play:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
  transform: scale(1.08);
}

/* Volume */
.music-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.music-volume-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.music-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 8px var(--gold-glow);
}

.music-volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 8px var(--gold-glow);
}

.music-volume-val {
  font-family: var(--font-display);
  font-size: 0.7rem;
  min-width: 30px;
  text-align: right;
}

@keyframes fa-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fa-spin-slow {
  animation: fa-spin-slow 4s linear infinite;
}

.fa-spin-slow.paused {
  animation-play-state: paused;
}

/* ===================== ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-desc {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats-mini {
    align-items: center;
  }

  .target-grid, .features-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .announcements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-navbar);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .target-grid, .features-grid, .why-grid {
    grid-template-columns: 1fr;
  }

  .section-title-large {
    font-size: 2rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
