
/* UNIVERSAL MODAL HIDDEN RULES */
.hidden,
.player-modal-backdrop.hidden,
.vip-modal-backdrop.hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800;900&family=Rajdhani:wght@500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --bg-dark: #050806;
  --bg-card: rgba(12, 18, 14, 0.82);
  --bg-card-hover: rgba(18, 28, 22, 0.95);
  --border-color: rgba(34, 197, 94, 0.22);
  --border-glow: rgba(0, 255, 115, 0.6);
  --primary: #00ff73;
  --primary-glow: rgba(0, 255, 115, 0.45);
  --primary-dark: #059669;
  --gold: #fbbf24;
  --gold-glow: rgba(251, 191, 36, 0.45);
  --red: #ef4444;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --font-heading: 'Orbitron', sans-serif;
  --font-sub: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 255, 115, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(0, 255, 115, 0.06) 0%, transparent 50%),
    linear-gradient(to bottom, #050806, #070c08 50%, #040705);
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: ' ';
  display: block;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 255, 0, 0.02));
  z-index: 999;
  background-size: 100% 3px, 6px 100%;
  pointer-events: none;
  opacity: 0.35;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #030504; }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); box-shadow: 0 0 12px var(--primary); }

#particles-canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}

.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 0.9rem 2.5rem;
  background: rgba(5, 8, 6, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 0.65rem 2.5rem;
  background: rgba(4, 7, 5, 0.96);
  border-bottom-color: var(--border-glow);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.85);
}
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--primary); box-shadow: 0 0 16px var(--primary-glow);
  object-fit: cover; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-brand:hover .nav-logo { transform: scale(1.08) rotate(6deg); box-shadow: 0 0 24px var(--primary); }
.nav-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 900; color: #fff; letter-spacing: 1.5px; }
.nav-title span { color: var(--primary); text-shadow: 0 0 12px var(--primary-glow); }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-family: var(--font-sub);
  font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  position: relative; padding: 6px 0; transition: all 0.25s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px;
  background: var(--primary); box-shadow: 0 0 8px var(--primary); transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.sfx-btn {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted); padding: 7px 14px; border-radius: 8px; font-family: var(--font-sub);
  font-size: 0.92rem; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.25s ease;
}
.sfx-btn:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.sfx-btn.active {
  background: rgba(0, 255, 115, 0.15); border-color: var(--primary);
  color: var(--primary); box-shadow: 0 0 12px var(--primary-glow);
}
.nav-btn {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #030805; font-family: var(--font-heading); font-size: 0.88rem; font-weight: 900;
  text-decoration: none; padding: 10px 20px; border-radius: 8px; display: inline-flex;
  align-items: center; gap: 8px; box-shadow: 0 0 20px var(--primary-glow); letter-spacing: 1px;
  transition: all 0.25s ease;
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--primary); }

.mobile-menu-btn {
  display: none; background: transparent; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; flex-direction: column;
  justify-content: space-between; z-index: 1002;
}
.mobile-menu-btn span { display: block; height: 3px; width: 100%; background: var(--primary); border-radius: 2px; transition: all 0.3s ease; }
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(6px); z-index: 998;
}
.nav-overlay.open { display: block; }

/* HERO */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
  padding: 135px 20px 65px;
  background: linear-gradient(180deg, rgba(5, 8, 6, 0.45) 0%, rgba(5, 8, 6, 0.98) 96%), url('images/banner.jpg') no-repeat center center / cover;
  text-align: center; overflow: hidden;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, transparent 35%, rgba(5, 8, 6, 0.96) 100%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 980px; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0, 255, 115, 0.1); border: 1px solid var(--border-glow);
  padding: 8px 22px; border-radius: 50px; font-family: var(--font-sub); font-size: 1rem;
  font-weight: 700; color: var(--primary); margin-bottom: 24px; text-transform: uppercase;
  letter-spacing: 1.5px; box-shadow: 0 0 20px rgba(0, 255, 115, 0.18);
  animation: floatBadge 3.2s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.pulse-dot, .pulse-beacon {
  width: 10px; height: 10px; background-color: var(--primary); border-radius: 50%;
  box-shadow: 0 0 12px var(--primary); display: inline-block; animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 255, 115, 0.8); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 12px rgba(0, 255, 115, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 255, 115, 0); }
}
.hero-title {
  font-family: var(--font-heading); font-size: 4.2rem; font-weight: 900; line-height: 1.08;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(0, 255, 115, 0.4);
}
.hero-title span {
  background: linear-gradient(135deg, #ffffff 25%, var(--primary) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(0, 255, 115, 0.45));
}
.hero-desc {
  font-size: 1.22rem; color: var(--text-muted); margin-bottom: 36px;
  max-width: 760px; margin-left: auto; margin-right: auto; line-height: 1.65;
}

.ip-container {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  background: rgba(14, 22, 18, 0.92); border: 1px solid var(--border-glow);
  padding: 14px 28px; border-radius: 14px; margin: 0 auto 36px;
  box-shadow: 0 0 32px rgba(0, 255, 115, 0.22), inset 0 0 15px rgba(0, 255, 115, 0.06);
  transition: all 0.3s ease;
}
.ip-container:hover {
  border-color: var(--primary); box-shadow: 0 0 45px rgba(0, 255, 115, 0.4); transform: translateY(-2px);
}
.ip-text { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 900; color: #fff; letter-spacing: 1px; }

.copy-btn {
  background: rgba(0, 255, 115, 0.16); border: 1px solid var(--primary); color: var(--primary);
  padding: 10px 18px; border-radius: 8px; cursor: pointer; font-family: var(--font-sub);
  font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 8px; transition: all 0.25s ease;
}
.copy-btn:hover { background: var(--primary); color: #030805; box-shadow: 0 0 20px var(--primary); transform: scale(1.04); }
.copy-btn.copied { background: var(--primary); color: #030805; }

.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn {
  padding: 15px 30px; border-radius: 10px; font-family: var(--font-heading); font-weight: 800;
  font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center;
  gap: 10px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer; position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #040805; box-shadow: 0 0 25px var(--primary-glow);
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 0 42px var(--primary); }
.btn-discord { background: #5865F2; color: #fff; box-shadow: 0 0 22px rgba(88, 101, 242, 0.45); }
.btn-discord:hover { background: #4752C4; transform: translateY(-4px); box-shadow: 0 0 38px rgba(88, 101, 242, 0.7); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.18); border-color: #fff; transform: translateY(-4px); }

/* STATS BAR */
.stats-bar {
  background: rgba(10, 16, 13, 0.92); border: 1px solid var(--border-color);
  border-radius: 18px; padding: 30px; max-width: 1120px; margin: -40px auto 65px;
  position: relative; z-index: 10; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85); backdrop-filter: blur(16px);
}
.stat-item { text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.08); padding: 0 10px; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading); font-size: 2.6rem; font-weight: 900; color: var(--primary);
  text-shadow: 0 0 18px var(--primary-glow); display: block;
}
.stat-label {
  font-family: var(--font-sub); font-size: 1.05rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
}

/* SECTIONS */
.section { padding: 85px 20px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-subtitle {
  font-family: var(--font-sub); font-size: 1.15rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 2.5px; display: block; margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading); font-size: 2.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px;
}

/* SERVER MONITOR GRID */
.server-monitor-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: stretch; }
.server-monitor-card {
  background: var(--bg-card); border: 1px solid var(--border-glow); border-radius: 20px;
  padding: 34px; box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7); position: relative;
  overflow: hidden; backdrop-filter: blur(14px);
}
.monitor-header {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 18px; margin-bottom: 24px;
}
.monitor-title { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 800; color: #fff; }
.live-status-pill {
  background: rgba(0, 255, 115, 0.15); border: 1px solid var(--primary); color: var(--primary);
  padding: 6px 14px; border-radius: 20px; font-family: var(--font-sub); font-size: 0.9rem;
  font-weight: 700; display: flex; align-items: center; gap: 8px; box-shadow: 0 0 12px var(--primary-glow);
}
.monitor-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 26px; }
.spec-box {
  background: rgba(0, 0, 0, 0.35); border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 18px; border-radius: 12px;
}
.spec-label {
  font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase;
  font-family: var(--font-sub); font-weight: 600; letter-spacing: 1px;
}
.spec-val { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #fff; margin-top: 4px; }
.spec-val.accent { color: var(--primary); }

.live-player-bar-container { margin-bottom: 24px; }
.live-bar-header {
  display: flex; justify-content: space-between; font-family: var(--font-sub); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px;
}
.live-bar-bg { width: 100%; height: 12px; background: rgba(255, 255, 255, 0.08); border-radius: 6px; overflow: hidden; }
.live-player-bar-fill {
  height: 100%; width: 44%; background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  border-radius: 6px; box-shadow: 0 0 15px var(--primary-glow); transition: width 1s ease;
}
.connect-console-box {
  background: #020403; border: 1px solid rgba(34, 197, 94, 0.4); border-radius: 10px;
  padding: 12px 18px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.95rem; color: var(--primary);
}
.connect-console-box code { color: #fff; }

.map-preview-card {
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}
.map-img-box { height: 210px; background: url('images/gameplay.jpg') no-repeat center center / cover; position: relative; }
.map-tag {
  position: absolute; top: 14px; left: 14px; background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--primary); color: var(--primary); padding: 6px 14px; border-radius: 6px;
  font-family: var(--font-sub); font-size: 0.9rem; font-weight: 700; text-transform: uppercase;
}
.map-info-body { padding: 24px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }

/* VIP NOCTURNO COUNTDOWN HUD */
.vip-countdown-hud {
  background: linear-gradient(135deg, rgba(20, 28, 22, 0.92), rgba(12, 18, 14, 0.96));
  border: 2px solid var(--primary); border-radius: 22px; padding: 40px 30px; text-align: center;
  position: relative; box-shadow: 0 0 35px rgba(0, 255, 115, 0.25); margin-bottom: 50px; overflow: hidden;
}
.vip-countdown-hud.event-active {
  border-color: var(--gold); box-shadow: 0 0 45px rgba(251, 191, 36, 0.35);
  background: linear-gradient(135deg, rgba(28, 22, 12, 0.95), rgba(16, 12, 8, 0.95));
}
.badge-fire {
  background: linear-gradient(90deg, #ef4444, #f59e0b); color: #fff; padding: 6px 16px;
  border-radius: 20px; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 900;
  letter-spacing: 1px; display: inline-block; margin-bottom: 12px; box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
  animation: pulseFire 1.5s infinite;
}
@keyframes pulseFire {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.vip-clock-digits {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900; color: #fff;
  margin: 18px 0; letter-spacing: 4px; display: flex; justify-content: center; align-items: center; gap: 12px;
}
.clock-segment {
  display: inline-flex; flex-direction: column; align-items: center; background: rgba(0, 0, 0, 0.5);
  padding: 8px 18px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); min-width: 90px;
}
.clock-segment strong {
  font-size: 3.2rem; line-height: 1; color: var(--primary); text-shadow: 0 0 15px var(--primary-glow);
}
.vip-countdown-hud.event-active .clock-segment strong {
  color: var(--gold); text-shadow: 0 0 15px var(--gold-glow);
}
.clock-segment small {
  font-size: 0.8rem; font-family: var(--font-sub); color: var(--text-muted); letter-spacing: 1.5px; margin-top: 4px;
}

/* FEATURES GRID */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border-color); padding: 32px 28px;
  border-radius: 16px; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); position: relative;
  overflow: hidden; backdrop-filter: blur(10px);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: translateX(-100%); transition: transform 0.5s ease;
}
.feature-card:hover::before { transform: translateX(0); }
.feature-card:hover {
  transform: translateY(-8px); border-color: var(--border-glow);
  box-shadow: 0 16px 36px rgba(0, 255, 115, 0.18); background: var(--bg-card-hover);
}
.feature-icon { font-size: 2.8rem; margin-bottom: 18px; display: inline-block; transition: transform 0.3s ease; }
.feature-card:hover .feature-icon { transform: scale(1.15) rotate(6deg); }
.feature-title { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; color: #fff; }
.feature-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }

/* WEAPON ARSENAL TABS & CARDS */
.weapon-tabs, .zombie-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.tab-btn {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted); padding: 10px 22px; border-radius: 30px; font-family: var(--font-sub);
  font-size: 1.05rem; font-weight: 700; cursor: pointer; letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.25s ease;
}
.tab-btn:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.tab-btn.active {
  background: var(--primary); color: #030805; border-color: var(--primary); box-shadow: 0 0 20px var(--primary-glow);
}
.weapons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }
.weapon-card {
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 18px;
  overflow: hidden; transition: all 0.35s ease; backdrop-filter: blur(10px); display: flex; flex-direction: column;
}
.weapon-card:hover {
  transform: translateY(-8px); border-color: var(--border-glow); box-shadow: 0 20px 42px rgba(0, 0, 0, 0.75);
}
.weapon-header {
  padding: 22px 26px; background: rgba(0, 255, 115, 0.06); border-bottom: 1px solid var(--border-color);
  display: flex; justify-content: space-between; align-items: center;
}
.weapon-tag {
  background: rgba(0, 255, 115, 0.2); color: var(--primary); font-family: var(--font-sub);
  font-weight: 700; font-size: 0.88rem; padding: 5px 12px; border-radius: 6px; text-transform: uppercase;
}
.weapon-tag.gold { background: rgba(251, 191, 36, 0.2); color: var(--gold); }
.weapon-tag.defense { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.weapon-body { padding: 26px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }

.stat-bar-container { margin-bottom: 14px; }
.stat-bar-header {
  display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 5px;
}
.stat-bar-bg { width: 100%; height: 7px; background: rgba(255, 255, 255, 0.1); border-radius: 4px; overflow: hidden; }
.stat-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  border-radius: 4px; box-shadow: 0 0 10px var(--primary-glow); transition: width 1.2s ease-in-out;
}
.stat-bar-fill.gold {
  background: linear-gradient(90deg, #d97706, var(--gold)); box-shadow: 0 0 10px var(--gold-glow);
}
.stat-bar-fill.blue {
  background: linear-gradient(90deg, #2563eb, #60a5fa); box-shadow: 0 0 10px rgba(96, 165, 250, 0.45);
}
.weapon-stats {
  list-style: none; margin-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 14px;
}
.weapon-stats li { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.92rem; color: #e5e7eb; }

/* ZOMBIE CODEX */
.zombies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.zombie-card {
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px;
  padding: 24px; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.zombie-card:hover {
  border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
}
.zombie-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.zombie-avatar {
  font-size: 2.4rem; background: rgba(0, 255, 115, 0.08); border: 1px solid var(--border-color);
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; border-radius: 12px;
}
.zombie-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #fff; }
.zombie-key {
  display: inline-block; background: var(--primary); color: #040805; font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 900; padding: 2px 6px; border-radius: 4px; margin-left: 6px;
}
.zombie-cooldown {
  display: inline-flex; align-items: center; gap: 4px; font-size: 0.82rem; color: #f59e0b;
  font-family: var(--font-mono); margin-bottom: 12px;
}

/* BINDS TERMINAL */
.binds-terminal {
  background: #040605; border: 1px solid var(--border-glow); border-radius: 20px;
  padding: 34px; box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
}
.terminal-header {
  display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px; margin-bottom: 24px;
}
.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ef4444; } .dot-yellow { background: #f59e0b; } .dot-green { background: #10b981; }
.terminal-title { font-family: var(--font-mono); font-size: 1rem; color: var(--text-muted); margin-left: 10px; }
.binds-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.bind-card {
  background: rgba(14, 22, 17, 0.65); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px;
  padding: 16px 20px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: all 0.25s ease;
}
.bind-card:hover {
  border-color: var(--primary); background: rgba(20, 32, 24, 0.85); transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 255, 115, 0.12);
}
.bind-cmd { font-family: var(--font-mono); font-size: 1rem; font-weight: 700; color: var(--primary); display: block; }
.bind-desc { font-size: 0.86rem; color: var(--text-muted); margin-top: 4px; display: block; }
.bind-copy-btn {
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); color: #fff;
  padding: 6px 12px; border-radius: 6px; font-family: var(--font-sub); font-size: 0.85rem; font-weight: 700;
}

/* COMPARATIVE VIP TABLE */
.table-responsive {
  overflow-x: auto; margin-top: 36px; border-radius: 16px; border: 1px solid var(--border-color);
  background: var(--bg-card);
}
.compare-table { width: 100%; border-collapse: collapse; text-align: left; }
.compare-table th, .compare-table td { padding: 16px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.compare-table th {
  background: rgba(0, 0, 0, 0.4); font-family: var(--font-heading); font-size: 0.98rem; color: #fff; text-transform: uppercase;
}
.compare-table th.highlight { color: var(--gold); border-top: 2px solid var(--gold); background: rgba(251, 191, 36, 0.08); }
.compare-table td.center { text-align: center; }
.compare-table tr:hover td { background: rgba(255, 255, 255, 0.02); }
.check-green { color: var(--primary); font-weight: bold; }
.cross-gray { color: #6b7280; }

/* VIP TIENDA CARDS */
.vip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; margin-top: 50px; }
.vip-card {
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px;
  padding: 38px 28px; text-align: center; position: relative; transition: all 0.35s ease; backdrop-filter: blur(10px);
}
.vip-card:hover { transform: translateY(-8px); border-color: var(--border-glow); }
.vip-card.featured { border-color: var(--gold); box-shadow: 0 0 35px var(--gold-glow); transform: scale(1.04); }
.vip-card.featured:hover { transform: scale(1.06) translateY(-8px); box-shadow: 0 0 50px var(--gold); }
.vip-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold);
  color: #050805; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 900; padding: 5px 20px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 1.5px; box-shadow: 0 0 15px var(--gold-glow);
}
.vip-name { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; margin-bottom: 12px; }
.vip-features { list-style: none; text-align: left; margin: 28px 0; }
.vip-features li {
  padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-size: 1rem; color: #e5e7eb;
  display: flex; align-items: center; gap: 12px;
}
.vip-features li::before { content: '✔'; color: var(--primary); font-weight: bold; }

/* SCROLL REVEAL & TOAST */
.reveal { opacity: 1; transform: none; transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

#toast {
  visibility: hidden; min-width: 300px; max-width: 440px; background-color: #0a120e; color: #fff;
  border-radius: 12px; position: fixed; z-index: 9999; bottom: 28px; right: 28px;
  font-family: var(--font-sub); border: 1px solid var(--primary); box-shadow: 0 0 30px var(--primary-glow);
  opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  overflow: hidden;
}
#toast.show { visibility: visible; opacity: 1; transform: translateY(0); }
.toast-inner { padding: 16px 20px; position: relative; }
.toast-content { font-size: 1.05rem; font-weight: 600; }
.toast-bar {
  position: absolute; bottom: 0; left: 0; height: 3px; width: 100%; background: var(--primary);
  animation: toastProgress linear forwards;
}
@keyframes toastProgress { 0% { width: 100%; } 100% { width: 0%; } }

/* FOOTER */
.footer {
  background: #030504; border-top: 1px solid var(--border-color); padding: 60px 20px 35px;
  text-align: center; color: var(--text-muted);
}
.footer-logo {
  width: 68px; height: 68px; border-radius: 50%; margin-bottom: 18px; border: 2px solid var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}
.footer-links {
  display: flex; justify-content: center; gap: 24px; margin: 24px 0; list-style: none; flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted); text-decoration: none; font-family: var(--font-sub);
  font-size: 1.1rem; font-weight: 600; transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

/* RESPONSIVE */
@media (max-width: 992px) {
  .server-monitor-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: rgba(5, 8, 6, 0.98); backdrop-filter: blur(20px); flex-direction: column;
    padding: 90px 30px; gap: 20px; border-left: 1px solid var(--border-glow);
    transition: right 0.35s ease; z-index: 1001;
  }
  .nav-links.open { right: 0; }
  .mobile-menu-btn { display: flex; }
  .vip-card.featured { transform: none; }
  .vip-card.featured:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.7rem; }
  .ip-container { flex-direction: column; width: 100%; padding: 16px 20px; }
  .vip-clock-digits { font-size: 2.2rem; }
  .clock-segment { min-width: 65px; padding: 6px 10px; }
  .clock-segment strong { font-size: 2.2rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 14px; }
}

/* ========================================================================== */
/* 2026 CYBER RULETA, LEADERBOARD, DOWNLOADS & VIP MODAL STYLES              */
/* ========================================================================== */

/* RULETA SECTION */
.nav-highlight {
  color: var(--gold) !important;
  text-shadow: 0 0 10px var(--gold-glow);
}
.roulette-container {
  max-width: 1080px; margin: 0 auto; padding: 0 1rem;
}
.roulette-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.roulette-card::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 115, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.wheel-area {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.wheel-pointer-container {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  z-index: 10;
}
.wheel-pointer {
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--gold);
  filter: drop-shadow(0 0 8px var(--gold));
}
#rouletteCanvas {
  max-width: 100%; height: auto;
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(0, 255, 115, 0.35), inset 0 0 25px rgba(0, 0, 0, 0.9);
  transition: transform 0.05s linear;
}
.wheel-center-hub {
  position: absolute; width: 80px; height: 80px; border-radius: 50%;
  background: #060b08; border: 3px solid var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  pointer-events: none;
}
.hub-logo { font-size: 1.4rem; line-height: 1; }
.hub-text { font-family: var(--font-heading); font-size: 0.65rem; color: var(--primary); font-weight: 900; letter-spacing: 1px; }

.roulette-controls { display: flex; flex-direction: column; gap: 1rem; }
.roulette-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 255, 115, 0.12); border: 1px solid var(--primary);
  color: var(--primary); font-family: var(--font-sub); font-weight: 700;
  font-size: 0.9rem; padding: 4px 14px; border-radius: 20px; align-self: flex-start;
}
.controls-title { font-family: var(--font-heading); font-size: 1.6rem; color: #fff; }
.controls-desc { color: var(--text-muted); font-size: 0.95rem; }

.roulette-form { display: flex; flex-direction: column; gap: 0.8rem; }
.roulette-form label { font-family: var(--font-sub); font-weight: 700; font-size: 1.05rem; color: #e5e7eb; }
.nick-input-wrap {
  position: relative; display: flex; align-items: center;
}
.nick-input-wrap .input-icon {
  position: absolute; left: 14px; font-size: 1.1rem; pointer-events: none;
}
.nick-input-wrap input {
  width: 100%; padding: 0.85rem 1rem 0.85rem 2.7rem;
  background: rgba(7, 12, 9, 0.85); border: 1px solid var(--border-color);
  border-radius: 10px; color: #fff; font-family: var(--font-mono); font-size: 1rem;
  outline: none; transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.nick-input-wrap input:focus {
  border-color: var(--primary); box-shadow: 0 0 15px var(--primary-glow);
}
.btn-spin {
  padding: 1rem; font-size: 1.15rem; font-weight: 800;
  letter-spacing: 1.5px; border-radius: 10px; justify-content: center;
  box-shadow: 0 0 25px var(--primary-glow);
}

.roulette-timer-box {
  display: flex; align-items: center; gap: 14px;
  background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 1rem 1.4rem; border-radius: 10px;
}
.timer-icon { font-size: 1.6rem; }
.timer-details { display: flex; flex-direction: column; }
.timer-label { font-size: 0.85rem; color: #f87171; }
.timer-val { font-family: var(--font-mono); font-size: 1.3rem; color: #fff; }

.prize-result-card {
  background: rgba(14, 25, 18, 0.95);
  border: 2px solid var(--primary);
  border-radius: 14px; padding: 1.4rem;
  box-shadow: 0 0 30px var(--primary-glow);
  display: flex; flex-direction: column; gap: 0.8rem;
  animation: prizePopup 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes prizePopup {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.prize-banner {
  font-family: var(--font-heading); font-size: 0.75rem; color: var(--primary);
  font-weight: 900; letter-spacing: 2px;
}
.prize-content { display: flex; align-items: center; gap: 14px; }
.prize-emoji { font-size: 2.2rem; }
.prize-name { font-family: var(--font-heading); font-size: 1.35rem; color: #fff; }
.prize-sub { color: var(--text-muted); font-size: 0.85rem; }
.claim-code-container {
  display: flex; justify-content: space-between; align-items: center;
  background: #040805; border: 1px dashed var(--primary);
  padding: 0.65rem 1rem; border-radius: 8px;
}
.claim-code-container code {
  font-family: var(--font-mono); font-size: 1.1rem; color: var(--gold); font-weight: 700;
}
.btn-copy-code {
  background: var(--primary-dark); border: none; color: #fff;
  font-family: var(--font-sub); font-weight: 700; padding: 4px 12px;
  border-radius: 6px; cursor: pointer; transition: background 0.2s;
}
.btn-copy-code:hover { background: var(--primary); color: #000; }
.claim-hint { font-size: 0.75rem; color: #9ca3af; }

/* RANKING LEADERBOARD */
.ranking-container {
  max-width: 1100px; margin: 0 auto; padding: 0 1rem;
}
.ranking-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.2rem;
}
.ranking-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.rank-tab-btn {
  background: rgba(12, 20, 15, 0.8); border: 1px solid var(--border-color);
  color: var(--text-muted); padding: 8px 16px; border-radius: 8px;
  font-family: var(--font-sub); font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all 0.2s ease;
}
.rank-tab-btn:hover, .rank-tab-btn.active {
  background: rgba(0, 255, 115, 0.15); border-color: var(--primary);
  color: #fff; box-shadow: 0 0 12px var(--primary-glow);
}
.ranking-search {
  position: relative; min-width: 260px;
}
.ranking-search .search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 0.9rem;
}
.ranking-search input {
  width: 100%; padding: 8px 12px 8px 34px;
  background: rgba(10, 16, 12, 0.85); border: 1px solid var(--border-color);
  border-radius: 8px; color: #fff; font-family: var(--font-body); font-size: 0.9rem;
  outline: none;
}
.ranking-search input:focus { border-color: var(--primary); }

.ranking-table-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 16px; overflow-x: auto; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65);
}
.ranking-table {
  width: 100%; border-collapse: collapse; text-align: left;
}
.ranking-table th {
  background: rgba(8, 14, 10, 0.95); padding: 14px 18px;
  font-family: var(--font-heading); font-size: 0.8rem; color: var(--primary);
  letter-spacing: 1px; border-bottom: 1px solid var(--border-color);
}
.ranking-table td {
  padding: 14px 18px; border-bottom: 1px solid rgba(34, 197, 94, 0.08);
  font-size: 0.95rem; font-family: var(--font-body);
}
.ranking-table tr:hover td {
  background: rgba(0, 255, 115, 0.05);
}
.rank-pos {
  font-family: var(--font-heading); font-weight: 900; font-size: 1.1rem;
}
.pos-1 { color: #fbbf24; text-shadow: 0 0 8px rgba(251, 191, 36, 0.6); }
.pos-2 { color: #e2e8f0; text-shadow: 0 0 8px rgba(226, 232, 240, 0.5); }
.pos-3 { color: #cd7f32; text-shadow: 0 0 8px rgba(205, 127, 50, 0.5); }
.player-badge-vip {
  background: rgba(251, 191, 36, 0.15); border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.75rem; font-weight: 700; padding: 2px 8px;
  border-radius: 12px; font-family: var(--font-mono);
}
.player-badge-comm {
  background: rgba(0, 255, 115, 0.1); border: 1px solid var(--primary);
  color: var(--primary); font-size: 0.75rem; font-weight: 700; padding: 2px 8px;
  border-radius: 12px; font-family: var(--font-mono);
}
.online-dot-mini {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 6px var(--primary); margin-right: 6px;
}

/* DOWNLOADS META */
.download-meta {
  display: flex; justify-content: space-between; margin-top: 14px;
  font-size: 0.82rem; color: var(--text-muted); font-family: var(--font-mono);
  border-top: 1px dashed rgba(255, 255, 255, 0.1); padding-top: 10px;
}

/* VIP MODAL */
.vip-modal-backdrop {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px);
  z-index: 2000; display: flex; justify-content: center; align-items: center;
  padding: 1.5rem; transition: opacity 0.25s ease;
}
.vip-modal-backdrop.hidden { display: none; }
.vip-modal-box {
  background: #0a110d; border: 2px solid var(--primary);
  border-radius: 20px; width: 100%; max-width: 520px;
  padding: 2rem; box-shadow: 0 0 50px rgba(0, 255, 115, 0.4);
  position: relative; animation: modalZoom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes modalZoom {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.vip-modal-close {
  position: absolute; top: 18px; right: 20px; background: none; border: none;
  color: #9ca3af; font-size: 1.8rem; cursor: pointer; transition: color 0.2s;
}
.vip-modal-close:hover { color: #fff; }
.modal-sub {
  font-family: var(--font-sub); font-weight: 700; color: var(--primary);
  font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase;
}
.modal-title { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin-top: 4px; }
.vip-modal-body { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.modal-field { display: flex; flex-direction: column; gap: 0.5rem; }
.modal-field label { font-family: var(--font-sub); font-weight: 700; font-size: 0.95rem; color: #e5e7eb; }
.modal-field input {
  padding: 0.8rem 1rem; background: rgba(5, 10, 7, 0.9);
  border: 1px solid var(--border-color); border-radius: 8px;
  color: #fff; font-family: var(--font-mono); font-size: 1rem; outline: none;
}
.modal-field input:focus { border-color: var(--primary); box-shadow: 0 0 12px var(--primary-glow); }
.payment-tabs { display: flex; flex-direction: column; gap: 8px; }
.pay-tab {
  background: rgba(10, 18, 13, 0.9); border: 1px solid var(--border-color);
  color: #d1d5db; padding: 10px 14px; border-radius: 8px; text-align: left;
  font-family: var(--font-sub); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 10px; transition: all 0.2s;
}
.pay-tab.active, .pay-tab:hover {
  background: rgba(0, 255, 115, 0.12); border-color: var(--primary);
  color: #fff; box-shadow: 0 0 10px var(--primary-glow);
}
.pay-info-card {
  background: #050a07; border: 1px solid var(--border-color);
  border-radius: 10px; padding: 1.2rem; display: flex; flex-direction: column; gap: 0.8rem;
}
.pay-card-header { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.instant-badge {
  background: rgba(0, 255, 115, 0.2); color: var(--primary);
  font-size: 0.7rem; font-weight: 800; padding: 2px 8px; border-radius: 10px;
}
.cvu-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(15, 24, 18, 0.9); padding: 8px 12px; border-radius: 6px;
}
.cvu-val { font-family: var(--font-mono); color: var(--gold); font-size: 1.05rem; }
.btn-copy-alias {
  background: var(--primary-dark); border: none; color: #fff;
  font-family: var(--font-sub); font-weight: 700; font-size: 0.8rem;
  padding: 4px 10px; border-radius: 5px; cursor: pointer;
}
.btn-copy-alias:hover { background: var(--primary); color: #000; }
.pay-note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

@media (max-width: 900px) {
  .roulette-card { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; }
  .ranking-toolbar { flex-direction: column; align-items: stretch; }
}


/* 2026 CYBER RULETA & RANKING ENHANCEMENTS */
#confettiCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99999;
}

#rouletteCanvas {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(0, 255, 115, 0.4), inset 0 0 25px rgba(0, 0, 0, 0.9);
  will-change: transform;
}

.wheel-pointer {
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 32px solid #ffd700;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.9));
  transform-origin: top center;
  transition: transform 0.05s ease-out;
}

.wheel-pointer.ticking {
  transform: rotate(-14deg) scale(1.08);
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.input-shake {
  animation: inputShake 0.4s ease;
  border-color: #ef4444 !important;
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.7) !important;
}

.ranking-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-refresh {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  background: rgba(0, 255, 115, 0.08);
  border: 1px solid var(--border-color);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-refresh:hover {
  background: rgba(0, 255, 115, 0.18);
  border-color: var(--primary);
  box-shadow: 0 0 14px var(--primary-glow);
}

.btn-refresh.spinning span {
  animation: spinRotate 0.8s linear infinite;
}

@keyframes spinRotate {
  100% { transform: rotate(360deg); }
}

.pos-1 {
  color: #ffd700 !important;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.pos-2 {
  color: #e2e8f0 !important;
  font-weight: 800;
}

.pos-3 {
  color: #f97316 !important;
  font-weight: 800;
}

.player-badge-vip {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  color: #000;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.5px;
}

.rank-sync-status {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-family: var(--font-mono);
}


/* PLAYER DOSSIER / PROFILE MODAL */
.player-modal-backdrop {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px);
  display: flex; justify-content: center; align-items: center;
  z-index: 100000; padding: 1rem;
}
.player-modal-box {
  background: #09120c; border: 2px solid var(--primary);
  box-shadow: 0 0 35px var(--primary-glow);
  border-radius: 18px; width: 100%; max-width: 500px;
  position: relative; overflow: hidden;
  animation: prizePopup 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.player-modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 1.8rem; color: #9ca3af;
  cursor: pointer; line-height: 1; transition: color 0.2s ease;
}
.player-modal-close:hover { color: #fff; }
.player-modal-header {
  display: flex; align-items: center; gap: 16px;
  padding: 1.8rem 1.8rem 1rem 1.8rem; border-bottom: 1px solid var(--border-color);
}
.player-avatar-badge {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(0, 255, 115, 0.1); border: 2px solid var(--primary);
  display: flex; justify-content: center; align-items: center;
  font-size: 2rem; box-shadow: 0 0 15px var(--primary-glow);
}
.player-modal-sub {
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px;
}
.player-modal-name {
  font-family: var(--font-heading); font-size: 1.6rem; color: #fff;
  margin-top: 2px;
}
.player-modal-body { padding: 1.8rem; display: flex; flex-direction: column; gap: 1.2rem; }
.player-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.player-stat-card {
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px; padding: 12px; display: flex; flex-direction: column; gap: 4px;
}
.pstat-label { font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-sub); letter-spacing: 0.5px; }
.pstat-val { font-family: var(--font-mono); font-size: 1.2rem; }
.pstat-val.gold { color: var(--gold); }
.pstat-val.primary { color: var(--primary); }
.pstat-val.cyan { color: #38bdf8; }

.player-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0, 255, 115, 0.06); border: 1px solid rgba(0, 255, 115, 0.2);
  padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; font-family: var(--font-mono);
}
.ranking-table tbody tr {
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ranking-table tbody tr:hover {
  background: rgba(0, 255, 115, 0.08);
  transform: translateX(4px);
}
