/* ═══════════════════════════════════════════════════════════
   NEX RZ — Deep Blue Tactical  |  Orbitron + Exo 2
   Palette: #020818 bg · #0ea5e9 blue · #06b6d4 cyan · #f59e0b gold
═══════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── TOKENS ── */
:root {
  --bg:      #010714;
  --bg2:     #03091c;
  --card:    #040d24;
  --card2:   #061228;
  --blue:    #0ea5e9;
  --blue2:   #38bdf8;
  --blue3:   #7dd3fc;
  --cyan:    #06b6d4;
  --gold:    #f59e0b;
  --gold2:   #fbbf24;
  --green:   #10b981;
  --discord: #5865F2;
  --text:    #e0f2fe;
  --text2:   #93c5fd;
  --muted:   #4a6080;
  --dim:     #1e3a5f;
  --border:  rgba(14,165,233,0.1);
  --border2: rgba(14,165,233,0.25);
  --glow:    rgba(14,165,233,0.35);
  --glow-sm: rgba(14,165,233,0.15);
  --gold-gl: rgba(245,158,11,0.3);
  --card-border: rgba(14,165,233,0.15);
}

/* ── BASE ── */
body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

/* ── AURORA BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%,  rgba(14,165,233,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%,  rgba(6,182,212,0.05)  0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 50%,  rgba(88,101,242,0.04) 0%, transparent 70%);
  animation: auroraShift 14s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0%   { opacity: 1;   transform: scale(1)    translateX(0);    }
  50%  { opacity: 0.7; transform: scale(1.05) translateX(30px); }
  100% { opacity: 1;   transform: scale(1)    translateX(-20px);}
}

/* ── LAYOUT ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; position: relative; }

/* ═══════════════════════════════════════════════════════════
   BOOT OVERLAY
═══════════════════════════════════════════════════════════ */
.boot-overlay {
  position: fixed; inset: 0; z-index: 100000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.boot-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.boot-logo {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: 6px;
  margin-bottom: 40px;
  text-shadow: 0 0 40px var(--blue);
}
.boot-logo span { color: var(--blue); }
.boot-bar {
  width: min(320px, 80vw); height: 3px;
  background: rgba(14,165,233,0.15);
  border-radius: 3px; overflow: hidden;
  margin-bottom: 16px;
}
.boot-progress {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 3px;
  box-shadow: 0 0 12px var(--blue);
  transition: width 0.08s linear;
}
.boot-status {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem; letter-spacing: 3px;
  color: var(--muted); text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   NOISE OVERLAY
═══════════════════════════════════════════════════════════ */
.noise-overlay {
  position: fixed; inset: 0; z-index: 99997;
  pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════════ */
.cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1.5px solid rgba(14,165,233,0.65); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}
.cursor-dot {
  position: fixed; width: 5px; height: 5px;
  background: var(--blue); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 8px var(--blue);
}
@media (hover: none) { .cursor-ring, .cursor-dot { display: none; } }

/* ═══════════════════════════════════════════════════════════
   HUD CORNERS (reusable class)
═══════════════════════════════════════════════════════════ */
.hc {
  position: absolute; width: 14px; height: 14px;
  --hc-c: var(--blue2);
}
.hc.tl { top: -1px;    left: -1px;  border-top: 2px solid var(--hc-c); border-left: 2px solid var(--hc-c); }
.hc.tr { top: -1px;    right: -1px; border-top: 2px solid var(--hc-c); border-right: 2px solid var(--hc-c); }
.hc.bl { bottom: -1px; left: -1px;  border-bottom: 2px solid var(--hc-c); border-left: 2px solid var(--hc-c); }
.hc.br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--hc-c); border-right: 2px solid var(--hc-c); }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
#navbar {
  position: relative;
  width: 100%;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s, transform 0.35s;
}
#navbar.scrolled {
  background: rgba(2,8,24,0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 70px;
}
.nav-logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.25rem; font-weight: 900;
  color: var(--text); text-decoration: none;
  letter-spacing: 2px;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(14,165,233,0.6));
  flex-shrink: 0;
}
.nav-logo-b   { color: var(--blue); opacity: 0.7; }
.nav-logo-acc { color: var(--blue); }
.nav-links {
  display: flex; list-style: none; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text2); text-decoration: none; padding: 8px 14px;
  border-radius: 4px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--blue); background: var(--glow-sm); }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: 16px; }
.nav-discord {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text2); text-decoration: none; padding: 7px 14px;
  border-radius: 4px; border: 1px solid rgba(88,101,242,0.3);
  transition: all 0.2s;
}
.nav-discord:hover { color: #fff; border-color: var(--discord); background: rgba(88,101,242,0.15); }
.btn-nav-join {
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--blue); color: #fff;
  padding: 8px 18px; border-radius: 5px; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(14,165,233,0.35);
  transition: all 0.2s;
}
.btn-nav-join:hover { background: var(--blue2); box-shadow: 0 0 30px rgba(14,165,233,0.55); transform: translateY(-1px); }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 34px; height: 34px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.28s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mob-menu {
  position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: rgba(2,8,24,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 2px; padding: 16px 24px 24px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.3s ease;
}
.mob-menu.open { opacity: 1; visibility: visible; transform: none; }
.mob-menu a {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem; letter-spacing: 2px;
  color: var(--text2); text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.mob-menu a:hover { color: var(--blue); }
.mob-div { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 0; }
.mob-dc { color: var(--blue) !important; border-bottom: none !important; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  padding-top: 110px;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse 120% 80% at 65% 40%, rgba(4,22,48,0.95) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(14,165,233,0.06) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}
/* Moving glow orb behind hero */
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.09) 0%, transparent 70%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(-50%) scale(1);    }
  50%      { transform: translateY(-55%) scale(1.08); }
}

/* Canvas */
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ── RADAR ── */
.radar-wrap {
  position: absolute;
  width: min(680px, 90vw); height: min(680px, 90vw);
  top: 50%; right: -5%;
  transform: translateY(-50%);
  pointer-events: none; z-index: 1; opacity: 0.5;
}
.radar-rings {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at 50% 50%,
      transparent 0,
      transparent calc(20% - 1px),
      rgba(14,165,233,0.1) calc(20% - 1px),
      rgba(14,165,233,0.1) 20%
    );
  border: 1px solid rgba(14,165,233,0.18);
}
.radar-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(14,165,233,0.0) 0deg,
    rgba(14,165,233,0.25) 45deg,
    transparent 75deg
  );
  animation: radarSpin 5s linear infinite;
}
@keyframes radarSpin { to { transform: rotate(360deg); } }
.radar-cross-h {
  position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: rgba(14,165,233,0.12); transform: translateY(-50%);
}
.radar-cross-v {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: rgba(14,165,233,0.12); transform: translateX(-50%);
}
.radar-blip {
  position: absolute; width: 7px; height: 7px;
  border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 10px var(--blue), 0 0 20px var(--blue);
  animation: blipPulse 2.5s ease-in-out infinite;
}
.radar-blip.b1 { top: 30%; left: 45%; animation-delay: 0s; }
.radar-blip.b2 { top: 55%; left: 65%; animation-delay: 0.8s; }
.radar-blip.b3 { top: 65%; left: 30%; animation-delay: 1.6s; }
@keyframes blipPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.2; transform: scale(0.5); }
}

/* ── HEX GRID ── */
.hex-grid {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 2L54 18v34L28 70 2 54V20z' fill='none' stroke='rgba(14,165,233,0.05)' stroke-width='1'/%3E%3Cpath d='M28 72l26 16v34L28 138 2 122V88z' fill='none' stroke='rgba(14,165,233,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

/* ── SCANLINES ── */
.scanlines {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.025) 3px,
    rgba(0,0,0,0.025) 4px
  );
}

/* ── HERO LAYOUT ── */
.hero-wrap {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; padding-top: 100px; padding-bottom: 80px;
  min-height: 100vh;
}
.hero-content { flex: 1; max-width: 620px; }

/* Tag */
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 28px;
}
.hero-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 10px var(--blue); }
  50%      { box-shadow: 0 0 22px var(--blue), 0 0 40px rgba(14,165,233,0.4); }
}

/* Title */
.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(4rem, 11vw, 9.5rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -3px;
  margin-bottom: 32px;
  position: relative;
}
.ht-nex {
  display: block; color: var(--text);
  text-shadow: 0 0 80px rgba(14,165,233,0.2), 0 0 160px rgba(14,165,233,0.08);
  animation: titleReveal 0.9s cubic-bezier(0.16,1,0.3,1) 1.8s both;
}
.ht-rz {
  display: block;
  background: linear-gradient(120deg,
    var(--blue) 0%,
    #22d3ee 30%,
    var(--blue2) 55%,
    var(--cyan) 75%,
    var(--blue) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    titleReveal 0.9s cubic-bezier(0.16,1,0.3,1) 2s both,
    gradMove 5s ease infinite;
  filter: drop-shadow(0 0 30px rgba(14,165,233,0.4));
}
@keyframes titleReveal {
  from { opacity: 0; transform: translateY(40px) skewY(1deg); filter: blur(8px); }
  to   { opacity: 1; transform: none;              filter: blur(0); }
}
@keyframes gradMove {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Sub */
.hero-sub {
  font-size: 1.15rem; font-weight: 300; color: var(--text2);
  line-height: 1.6; margin-bottom: 36px;
  animation: titleReveal 0.8s ease-out 2.1s both;
}
.type-span { color: var(--blue); font-weight: 600; }
.type-cur  { color: var(--blue); animation: curBlink 0.8s step-end infinite; }
@keyframes curBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* IP Bar */
.ip-bar {
  position: relative; display: inline-flex; align-items: center;
  gap: 14px; padding: 14px 22px;
  background: rgba(14,165,233,0.05);
  border: 1px solid var(--border2);
  border-radius: 6px; margin-bottom: 36px;
  animation: titleReveal 0.8s ease-out 2.3s both;
}
.ip-lbl {
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted);
}
.ip-val {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 1px;
  color: var(--blue);
}
.ip-copy {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 0.58rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(14,165,233,0.15); border: 1px solid var(--border2);
  color: var(--blue2); padding: 7px 14px; border-radius: 4px;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.ip-copy:hover  { background: rgba(14,165,233,0.28); box-shadow: 0 0 18px var(--glow-sm); }
.ip-copy.copied { background: rgba(16,185,129,0.18); border-color: rgba(16,185,129,0.4); color: var(--green); }

/* Buttons */
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: titleReveal 0.8s ease-out 2.5s both;
}

/* ── HERO PANEL ── */
.hero-panel {
  position: relative; flex-shrink: 0;
  width: 290px; padding: 30px 26px 26px;
  background: linear-gradient(145deg, rgba(5,16,40,0.92) 0%, rgba(4,12,30,0.96) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: 16px;
  box-shadow:
    0 0 60px rgba(14,165,233,0.12),
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(14,165,233,0.12);
  animation: panelReveal 1s cubic-bezier(0.16,1,0.3,1) 2.2s both;
}
.hero-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.5), rgba(6,182,212,0.5), transparent);
  border-radius: 16px 16px 0 0;
}
@keyframes panelReveal {
  from { opacity: 0; transform: translateX(40px) translateY(10px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.panel-sig {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem; letter-spacing: 2px; color: var(--muted);
  text-transform: uppercase;
}
.srv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted); transition: background 0.3s, box-shadow 0.3s;
}
.srv-dot.online  { background: var(--green); box-shadow: 0 0 10px var(--green), 0 0 20px rgba(16,185,129,0.4); }
.srv-dot.offline { background: #ef4444; }
.panel-live {
  font-family: 'Orbitron', monospace;
  font-size: 0.5rem; letter-spacing: 2px; color: var(--blue);
  animation: liveBlink 2s step-end infinite;
}
@keyframes liveBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.panel-players {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 8px;
}
.panel-num-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 96px; height: 96px; flex-shrink: 0;
}
.panel-num-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(14,165,233,0.35);
  animation: numRingPulse 2.4s ease-in-out infinite;
}
.panel-num-ring2 {
  inset: -8px;
  border-color: rgba(14,165,233,0.15);
  animation-delay: 1.2s;
}
@keyframes numRingPulse {
  0%,100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.1); opacity: 0.3; }
}
.panel-sep-col {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
}
.panel-max-lbl {
  font-size: 0.6rem; letter-spacing: 2px; color: var(--muted); opacity: 0.6;
}
.panel-num {
  font-family: 'Orbitron', monospace;
  font-size: 2.6rem; font-weight: 900; color: var(--blue);
  line-height: 1;
  text-shadow: 0 0 20px rgba(14,165,233,0.7), 0 0 40px rgba(14,165,233,0.3);
  text-shadow: 0 0 30px rgba(14,165,233,0.5);
}
.panel-sep { font-size: 1.4rem; color: var(--dim); }
.panel-max { font-size: 1.1rem; color: var(--muted); font-weight: 600; }
.panel-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.72rem; color: var(--muted); letter-spacing: 1px;
  margin-bottom: 18px;
}
.panel-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: dotPulse 2s ease-in-out infinite; flex-shrink: 0;
}
.panel-bar-wrap { margin-bottom: 24px; }
.panel-bar-track {
  height: 4px; background: rgba(14,165,233,0.1); border-radius: 4px; overflow: hidden;
}
.panel-bar-fill {
  height: 100%; width: 0%; border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 8px var(--blue);
  transition: width 1s ease;
}
/* Panel info rows (replace metrics grid) */
.panel-info-rows {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.panel-info-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px;
  background: rgba(14,165,233,0.04);
  border: 1px solid rgba(14,165,233,0.08);
  border-radius: 6px;
  transition: background 0.2s;
}
.panel-info-row:hover { background: rgba(14,165,233,0.08); }
.pir-key {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Orbitron', monospace;
  font-size: 0.45rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.pir-val {
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem; font-weight: 700; color: var(--blue2);
}
.panel-join-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; padding: 11px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  color: #fff; border: none; border-radius: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(14,165,233,0.35);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.panel-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(14,165,233,0.55);
}

/* Legacy */
.panel-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.pm { text-align: center; }
.pm-k {
  display: block; font-family: 'Orbitron', monospace;
  font-size: 0.45rem; letter-spacing: 1.5px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 4px;
}
.pm-v { font-family: 'Orbitron', monospace; font-size: 0.85rem; font-weight: 700; color: var(--blue2); }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 0.5rem; letter-spacing: 3px; color: var(--muted);
  z-index: 3; animation: fadeUp 1s ease 3.5s both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateX(-50%) translateY(10px); } to { opacity: 1; transform: translateX(-50%); } }
.sh-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--blue));
  animation: lineDrop 1.5s ease-in-out infinite;
}
@keyframes lineDrop {
  0%,100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%,60% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS (global)
═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue) 0%, #0284c7 50%, var(--cyan) 100%);
  background-size: 200% 200%;
  color: #fff;
  padding: 14px 30px; border-radius: 8px; text-decoration: none;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  box-shadow: 0 0 28px rgba(14,165,233,0.5), 0 4px 20px rgba(14,165,233,0.2);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s, background-position 0.4s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-15deg);
  animation: btnShimmer 3s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%   { left: -75%; opacity: 0; }
  20%  { opacity: 1; }
  50%  { left: 125%; opacity: 0; }
  100% { left: 125%; opacity: 0; }
}
.btn-primary:hover {
  background-position: 100% 100%;
  transform: translateY(-3px);
  box-shadow: 0 0 48px rgba(14,165,233,0.7), 0 8px 30px rgba(14,165,233,0.3);
}
.btn-primary.btn-lg { padding: 17px 40px; font-size: 0.76rem; border-radius: 10px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(14,165,233,0.04); color: var(--blue2);
  padding: 13px 27px; border-radius: 8px; text-decoration: none;
  border: 1px solid rgba(14,165,233,0.3); cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.btn-outline:hover {
  background: rgba(14,165,233,0.12);
  border-color: var(--blue);
  color: var(--text);
  box-shadow: 0 0 28px rgba(14,165,233,0.2), inset 0 0 20px rgba(14,165,233,0.05);
  transform: translateY(-3px);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: transparent; color: var(--muted);
  padding: 13px 20px; border-radius: 6px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.07); cursor: pointer;
  transition: all 0.22s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.18); }

.btn-discord {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--discord); color: #fff;
  padding: 14px 28px; border-radius: 6px; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 0 24px rgba(88,101,242,0.35);
  transition: all 0.22s;
}
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); box-shadow: 0 0 38px rgba(88,101,242,0.55); }
.btn-discord.btn-lg { padding: 16px 36px; font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════════════ */
.stats-strip {
  background: linear-gradient(180deg, rgba(3,9,28,0.98) 0%, rgba(4,13,32,0.95) 100%);
  border-top: 1px solid rgba(14,165,233,0.12);
  border-bottom: 1px solid rgba(14,165,233,0.12);
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,165,233,0.06) 0%, transparent 30%, transparent 70%, rgba(14,165,233,0.06) 100%),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(14,165,233,0.02) 80px, rgba(14,165,233,0.02) 81px);
  pointer-events: none;
}
.strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 36px 0; flex-wrap: wrap;
}
.strip-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 0 52px; text-align: center;
  position: relative;
}
.si-val {
  font-family: 'Orbitron', monospace;
  font-size: 2.4rem; font-weight: 900; color: var(--blue);
  text-shadow: 0 0 30px rgba(14,165,233,0.6), 0 0 60px rgba(14,165,233,0.2);
  line-height: 1;
}
/* Per-stat accent colors */
.strip-item:nth-child(1) .si-val { color: #f87171; text-shadow: 0 0 30px rgba(239,68,68,0.5); }
.strip-item:nth-child(3) .si-val { color: var(--blue); }
.strip-item:nth-child(5) .si-val { color: var(--green); text-shadow: 0 0 30px rgba(16,185,129,0.5); }
.strip-item:nth-child(7) .si-val { color: #a78bfa; text-shadow: 0 0 30px rgba(139,92,246,0.5); }
.si-key {
  font-family: 'Orbitron', monospace;
  font-size: 0.52rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted);
}
.strip-div {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, rgba(14,165,233,0.2), transparent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════════════ */
.sec-head { text-align: center; margin-bottom: 72px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 0.58rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
  padding: 7px 18px; border: 1px solid rgba(14,165,233,0.3);
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(14,165,233,0.08) 0%, rgba(6,182,212,0.05) 100%);
  box-shadow: 0 0 20px rgba(14,165,233,0.1), inset 0 0 20px rgba(14,165,233,0.03);
  position: relative; overflow: hidden;
}
.eyebrow::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-15deg);
  animation: eyebrowScan 4s ease-in-out infinite;
}
@keyframes eyebrowScan {
  0%   { left: -60%; }
  100% { left: 160%; }
}
.sec-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900;
  color: var(--text); line-height: 1.05; margin-bottom: 16px;
  letter-spacing: -1px;
}
.sec-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; }
.acc-blue {
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, rgba(5,16,38,0.9) 0%, rgba(4,12,28,0.95) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 16px; padding: 36px 28px;
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s, background 0.4s;
  cursor: default;
}
/* Animated border glow on hover via pseudo-element */
.feat-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg,
    rgba(14,165,233,0)   0%,
    rgba(14,165,233,0.5) 40%,
    rgba(6,182,212,0.5)  60%,
    rgba(14,165,233,0)   100%);
  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
  animation: borderSpin 4s linear infinite;
}
@keyframes borderSpin {
  0%   { background-position: 0% 50%;   }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%;   }
}
/* Cover back to hide border gradient except edges */
.feat-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(5,16,38,0.96) 0%, rgba(4,12,28,0.98) 100%);
  z-index: 0;
}
.feat-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 60px rgba(14,165,233,0.18), 0 2px 20px rgba(14,165,233,0.08);
  transform: translateY(-6px);
}
.feat-card:hover::before { opacity: 1; }

/* All card children above the pseudo overlay */
.feat-card > * { position: relative; z-index: 1; }

.fi-wrap {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(14,165,233,0.15) 0%, rgba(6,182,212,0.08) 100%);
  border: 1px solid rgba(14,165,233,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 22px;
  box-shadow: 0 0 20px rgba(14,165,233,0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}
.feat-card:hover .fi-wrap {
  box-shadow: 0 0 32px rgba(14,165,233,0.25);
  transform: scale(1.08) rotate(-3deg);
}
.feat-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.92rem; font-weight: 700; letter-spacing: 1.5px;
  color: var(--text); margin-bottom: 12px;
  transition: color 0.3s;
}
.feat-card:hover h3 { color: var(--blue2); }
.feat-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
.fc-glow {
  position: absolute; inset: 0; border-radius: 16px;
  background: radial-gradient(circle at 20% 110%, rgba(14,165,233,0.1) 0%, transparent 55%);
  pointer-events: none; z-index: 1;
  transition: opacity 0.4s;
}

/* ── FEATURE CARD COLOR VARIANTS ── */
.fc-gold  { --fc-r:245; --fc-g:158; --fc-b:11;  }
.fc-red   { --fc-r:239; --fc-g:68;  --fc-b:68;  }
.fc-cyan  { --fc-r:6;   --fc-g:182; --fc-b:212; }
.fc-green { --fc-r:16;  --fc-g:185; --fc-b:129; }
.fc-purple{ --fc-r:139; --fc-g:92;  --fc-b:246; }
.fc-blue  { --fc-r:14;  --fc-g:165; --fc-b:233; }

.fc-gold, .fc-red, .fc-cyan, .fc-green, .fc-purple, .fc-blue {
  border-color: rgba(var(--fc-r), var(--fc-g), var(--fc-b), 0.12);
}
.fc-gold .fi-wrap, .fc-red .fi-wrap, .fc-cyan .fi-wrap,
.fc-green .fi-wrap, .fc-purple .fi-wrap, .fc-blue .fi-wrap {
  background: linear-gradient(135deg,
    rgba(var(--fc-r),var(--fc-g),var(--fc-b),0.15) 0%,
    rgba(var(--fc-r),var(--fc-g),var(--fc-b),0.06) 100%);
  border-color: rgba(var(--fc-r),var(--fc-g),var(--fc-b),0.3);
  box-shadow: 0 0 18px rgba(var(--fc-r),var(--fc-g),var(--fc-b),0.12);
}
.fc-gold::before, .fc-red::before, .fc-cyan::before,
.fc-green::before, .fc-purple::before, .fc-blue::before {
  background: linear-gradient(135deg,
    rgba(var(--fc-r),var(--fc-g),var(--fc-b),0)   0%,
    rgba(var(--fc-r),var(--fc-g),var(--fc-b),0.45) 40%,
    rgba(var(--fc-r),var(--fc-g),var(--fc-b),0.3)  60%,
    rgba(var(--fc-r),var(--fc-g),var(--fc-b),0)   100%);
}
.fc-gold .fc-glow, .fc-red .fc-glow, .fc-cyan .fc-glow,
.fc-green .fc-glow, .fc-purple .fc-glow, .fc-blue .fc-glow {
  background: radial-gradient(circle at 20% 110%,
    rgba(var(--fc-r),var(--fc-g),var(--fc-b),0.12) 0%, transparent 55%);
}
.fc-gold:hover, .fc-red:hover, .fc-cyan:hover,
.fc-green:hover, .fc-purple:hover, .fc-blue:hover {
  box-shadow:
    0 8px 60px rgba(var(--fc-r),var(--fc-g),var(--fc-b),0.2),
    0 2px 20px rgba(var(--fc-r),var(--fc-g),var(--fc-b),0.08);
}
.fc-gold:hover h3  { color: #f59e0b; }
.fc-red:hover h3   { color: #f87171; }
.fc-cyan:hover h3  { color: #22d3ee; }
.fc-green:hover h3 { color: #34d399; }
.fc-purple:hover h3{ color: #a78bfa; }
.fc-blue:hover h3  { color: var(--blue2); }

/* ═══════════════════════════════════════════════════════════
   LEADERBOARD
═══════════════════════════════════════════════════════════ */
.lb-section { position: relative; }
.lb-bg-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(14,165,233,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.lb-card {
  position: relative;
  background: linear-gradient(145deg, rgba(5,16,40,0.9) 0%, rgba(4,12,28,0.95) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(14,165,233,0.12);
  border-radius: 18px; overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.3), 0 0 60px rgba(14,165,233,0.04);
}
.lb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.4), rgba(6,182,212,0.3), transparent);
}

/* ── SUMMARY ROW ── */
.lb-summary-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; border-bottom: 1px solid var(--border);
}
.lb-sum-card {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.lb-sum-card:last-child { border-right: none; }
.lb-sum-card:hover { background: rgba(14,165,233,0.03); }
.lb-sum-icon { font-size: 1.6rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.lb-sum-val {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 1.6rem; font-weight: 900; color: var(--blue);
  line-height: 1; margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(14,165,233,0.4);
}
.lb-sum-lbl {
  display: block;
  font-size: 0.72rem; color: var(--muted); letter-spacing: 0.5px;
}

/* ── TABLE HEADER ── */
.lb-thead {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
}
.lbth {
  font-family: 'Orbitron', monospace;
  font-size: 0.5rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.r-rank  { }
.r-name  { }
.r-stats { text-align: right; }

/* ── PLAYER ROWS ── */
.lb-row {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  align-items: center; padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0; transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s;
  gap: 8px;
}
.lb-row.lb-vis  { opacity: 1; transform: none; }
.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: rgba(14,165,233,0.05); }
.lb-row.row-gold { background: rgba(245,158,11,0.04); }
.lb-row.row-gold:hover { background: rgba(245,158,11,0.07); }

/* Rank badges */
.lb-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem; font-weight: 700; padding: 5px 10px;
  border-radius: 5px; white-space: nowrap;
}
.lb-badge.gold   { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3); color: var(--gold2); }
.lb-badge.silver { background: rgba(148,163,184,0.12); border: 1px solid rgba(148,163,184,0.25); color: #94a3b8; }
.lb-badge.bronze { background: rgba(180,120,80,0.12); border: 1px solid rgba(180,120,80,0.25); color: #cd7f4a; }
.lb-badge.normal { background: rgba(14,165,233,0.07); border: 1px solid var(--border); color: var(--muted); }

/* Player cell (avatar + name) */
.lb-player {
  display: flex; align-items: center; gap: 14px; min-width: 0;
}
.lb-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--border2);
  background: var(--card2);
}
.lb-avatar-placeholder {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--card2), var(--dim));
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', monospace; font-size: 0.75rem;
  font-weight: 700; color: var(--blue); flex-shrink: 0;
  text-transform: uppercase;
}
.lb-player-name {
  font-weight: 600; font-size: 0.95rem; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lb-row.row-gold .lb-player-name { color: var(--gold2); }

/* Stats cell */
.lb-stats-cell {
  display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
}
.lb-stats-main {
  font-family: 'Orbitron', monospace;
  font-size: 0.78rem; font-weight: 700; color: var(--blue2);
  letter-spacing: 0.5px;
}
.lb-stats-sub {
  font-size: 0.72rem; color: var(--muted);
}

/* ── SKELETON ── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.lb-skel-wrap { padding: 4px 0; }
.lb-skel-row {
  display: grid;
  grid-template-columns: 90px 1fr 100px 110px 120px;
  align-items: center; padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.03); gap: 12px;
}
.lb-skel-row-v2 {
  display: grid;
  grid-template-columns: 80px 1fr 160px;
  align-items: center; padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.03); gap: 16px;
}
.lb-skel-player {
  display: flex; align-items: center; gap: 12px;
}
.lb-skel {
  height: 13px; border-radius: 5px;
  background: linear-gradient(90deg,
    rgba(14,165,233,0.04) 0%,
    rgba(14,165,233,0.12) 40%,
    rgba(14,165,233,0.04) 80%
  );
  background-size: 600px 100%;
  animation: shimmer 1.6s infinite linear;
}
.s-sm { width: 65%; }
.s-lg { width: 75%; height: 15px; }
.s-xs { width: 50%; margin: 0 auto; }
.lb-skel-avatar {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
}

/* ── ERROR STATE ── */
.lb-error {
  text-align: center; padding: 52px 24px;
  color: var(--muted); font-size: 0.9rem; line-height: 1.7;
}
.lb-error-icon { font-size: 2.5rem; display: block; margin-bottom: 14px; opacity: 0.3; }

/* CTA */
.lb-cta { text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .lb-summary-row { grid-template-columns: 1fr; }
  .lb-sum-card { border-right: none; border-bottom: 1px solid var(--border); }
  .lb-sum-card:last-child { border-bottom: none; }
  .lb-thead { display: none; }
  .lb-row { grid-template-columns: 70px 1fr; }
  .lb-stats-cell { display: none; }
  .lb-skel-row-v2 { grid-template-columns: 60px 1fr; }
  .lb-skel-row-v2 > *:last-child { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   MODES
═══════════════════════════════════════════════════════════ */
.modes-sec {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(14,165,233,0.03) 50%, transparent);
}
.modes-sec::before {
  content: '';
  position: absolute;
  top: 50%; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.04) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
  animation: orbFloat 9s ease-in-out infinite;
}
.modes-sec::after {
  content: '';
  position: absolute;
  top: 30%; right: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,68,68,0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 11s ease-in-out infinite reverse;
}
.modes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mode-card {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, rgba(5,16,38,0.92) 0%, rgba(4,12,28,0.96) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 18px; padding: 44px 32px 36px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
/* Corner accent */
.mode-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: conic-gradient(from 225deg at 100% 0%,
    rgba(14,165,233,0.15) 0deg, transparent 90deg);
  border-radius: 0 18px 0 80px;
  transition: opacity 0.4s;
}
.mode-card:hover {
  border-color: rgba(14,165,233,0.28);
  box-shadow: 0 12px 60px rgba(14,165,233,0.18), 0 2px 20px rgba(14,165,233,0.08);
  transform: translateY(-8px);
}
.mode-card:hover::after { opacity: 1.5; }
.mc-num {
  font-family: 'Orbitron', monospace;
  font-size: 4rem; font-weight: 900;
  color: rgba(14,165,233,0.06); line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.mode-card:hover .mc-num { color: rgba(14,165,233,0.12); }
.mc-emoji { font-size: 2.2rem; margin-bottom: 18px; }
.mc-title {
  font-family: 'Orbitron', monospace;
  font-size: 1rem; font-weight: 900; letter-spacing: 2px;
  color: var(--text); margin-bottom: 12px;
}
.mode-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.mc-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.mc-tags span {
  font-family: 'Orbitron', monospace;
  font-size: 0.5rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
  background: rgba(14,165,233,0.08); border: 1px solid var(--border);
  color: var(--blue2);
}
.mc-1v1::before  { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(245,158,11,0.1) 0%, transparent 55%); pointer-events: none; }
.mc-dm::before   { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(239,68,68,0.1)  0%, transparent 55%); pointer-events: none; }
.mc-team::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(14,165,233,0.1)  0%, transparent 55%); pointer-events: none; }

.mc-1v1 { border-color: rgba(245,158,11,0.15); }
.mc-dm  { border-color: rgba(239,68,68,0.15); }
.mc-1v1:hover { border-color: rgba(245,158,11,0.35); box-shadow: 0 12px 60px rgba(245,158,11,0.15); }
.mc-dm:hover  { border-color: rgba(239,68,68,0.35);  box-shadow: 0 12px 60px rgba(239,68,68,0.15); }
.mc-team:hover{ border-color: rgba(14,165,233,0.35); }
.mc-1v1 .mc-title { color: #fbbf24; }
.mc-dm  .mc-title { color: #f87171; }
.mc-1v1 .mc-num { color: rgba(245,158,11,0.1); }
.mc-dm  .mc-num { color: rgba(239,68,68,0.1); }
.mc-1v1:hover .mc-num { color: rgba(245,158,11,0.2); }
.mc-dm:hover  .mc-num { color: rgba(239,68,68,0.2); }
.mc-1v1 .mc-tags span { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.25); color: #fbbf24; }
.mc-dm  .mc-tags span { background: rgba(239,68,68,0.1);  border-color: rgba(239,68,68,0.25);  color: #f87171; }
.mc-1v1::after { background: conic-gradient(from 225deg at 100% 0%, rgba(245,158,11,0.2) 0deg, transparent 90deg); }
.mc-dm::after  { background: conic-gradient(from 225deg at 100% 0%, rgba(239,68,68,0.2) 0deg, transparent 90deg); }

/* ═══════════════════════════════════════════════════════════
   DISCORD — FULL REDESIGN
═══════════════════════════════════════════════════════════ */

/* ── Accent purple for heading ── */
.acc-purple {
  background: linear-gradient(120deg, #a78bfa 0%, #818cf8 50%, #5865F2 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.discord-sec {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg,
    rgba(4,10,28,0) 0%,
    rgba(8,5,24,0.6) 50%,
    rgba(4,10,28,0) 100%);
}

/* Animated grid overlay */
.dc-grid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(88,101,242,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88,101,242,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 80% at 60% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 60% 50%, black 0%, transparent 100%);
}

/* Ambient blobs */
.dc-blob {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.dc-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(88,101,242,0.09) 0%, transparent 65%);
  top: -150px; right: -80px;
  filter: blur(60px);
  animation: orbFloat 12s ease-in-out infinite;
}
.dc-blob-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(139,92,246,0.07) 0%, transparent 65%);
  bottom: -80px; left: 5%;
  filter: blur(70px);
  animation: orbFloat 16s ease-in-out infinite reverse;
}

/* Layout */
.dc-wrap {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.dc-left .eyebrow { display: inline-flex; text-align: left; margin-bottom: 20px; }
.dc-left .sec-title { text-align: left; margin-bottom: 16px; }
.dc-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }

/* ── STAT BOXES ── */
.dc-statbox-row {
  display: flex; gap: 14px; margin-bottom: 28px;
}
.dc-statbox {
  position: relative; flex: 1; overflow: hidden;
  background: linear-gradient(145deg, rgba(10,8,28,0.9) 0%, rgba(8,6,22,0.95) 100%);
  border-radius: 14px; padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 4px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.dc-sb-purple {
  border: 1px solid rgba(88,101,242,0.22);
  box-shadow: 0 0 0 1px rgba(88,101,242,0.06) inset;
}
.dc-sb-green {
  border: 1px solid rgba(16,185,129,0.22);
  box-shadow: 0 0 0 1px rgba(16,185,129,0.06) inset;
}
.dc-statbox:hover { transform: translateY(-4px); }
.dc-sb-purple:hover { box-shadow: 0 10px 40px rgba(88,101,242,0.18); }
.dc-sb-green:hover  { box-shadow: 0 10px 40px rgba(16,185,129,0.18); }
.dc-sb-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.dc-sb-purple .dc-sb-icon { background: rgba(88,101,242,0.14); color: #a78bfa; }
.dc-sb-green  .dc-sb-icon { background: rgba(16,185,129,0.14); color: var(--green); }
.dc-sb-val {
  font-family: 'Orbitron', monospace;
  font-size: 1.9rem; font-weight: 900; line-height: 1;
  color: #a78bfa;
  text-shadow: 0 0 24px rgba(139,92,246,0.55);
}
.dc-sb-green-val {
  color: var(--green) !important;
  text-shadow: 0 0 24px rgba(16,185,129,0.55) !important;
}
.dc-sb-lbl { font-size: 0.7rem; color: var(--muted); }
.dc-sb-glow {
  position: absolute; bottom: -12px; left: 0; right: 0;
  height: 40px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(88,101,242,0.18) 0%, transparent 70%);
  filter: blur(8px); pointer-events: none;
}
.dc-sb-glow-green {
  background: radial-gradient(ellipse, rgba(16,185,129,0.18) 0%, transparent 70%);
}

/* ── FEATURE LIST ── */
.dc-feat-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 32px;
}
.dc-feat-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--text2);
  animation: featSlide 0.5s ease both;
}
.dc-feat-item:nth-child(1) { animation-delay: 0.1s; }
.dc-feat-item:nth-child(2) { animation-delay: 0.2s; }
.dc-feat-item:nth-child(3) { animation-delay: 0.3s; }
.dc-feat-item:nth-child(4) { animation-delay: 0.4s; }
@keyframes featSlide {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: none; }
}
.dc-feat-bullet {
  flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #5865F2);
  box-shadow: 0 0 8px rgba(139,92,246,0.7);
}

/* ── FLOATING NOTIFICATION CARD ── */
.dc-right {
  position: relative;
}
.dc-notif {
  position: absolute;
  top: -18px; right: -16px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(8,6,22,0.96);
  border: 1px solid rgba(88,101,242,0.32);
  border-radius: 12px;
  padding: 10px 14px 10px 10px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(88,101,242,0.25), 0 0 0 1px rgba(88,101,242,0.08);
  animation: notifFloat 5s ease-in-out infinite;
  z-index: 12; pointer-events: none;
}
@keyframes notifFloat {
  0%,100% { transform: translateY(0) rotate(-0.5deg); }
  50%      { transform: translateY(-9px) rotate(0.5deg); }
}
.dc-notif-dot {
  position: absolute; top: 7px; right: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: dotPulse 2s ease-in-out infinite;
}
.dc-notif-av {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #5865F2, #4752c4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', monospace; font-size: 0.6rem;
  font-weight: 700; color: #fff;
}
.dc-notif-name {
  font-family: 'Orbitron', monospace; font-size: 0.58rem; letter-spacing: 0.5px;
  color: #a5b4fc; display: block; margin-bottom: 3px;
}
.dc-notif-msg { font-size: 0.78rem; color: var(--text); white-space: nowrap; }

/* ── WIDGET ── */
.dc-widget {
  position: relative;
  background: linear-gradient(180deg, #0c0e20 0%, #090b1a 100%);
  border: 1px solid rgba(88,101,242,0.22);
  border-radius: 16px; overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(88,101,242,0.07),
    0 0 60px rgba(88,101,242,0.06) inset;
  transition: box-shadow 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.dc-widget:hover {
  box-shadow:
    0 30px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(88,101,242,0.15),
    0 0 80px rgba(88,101,242,0.1) inset;
  transform: translateY(-4px);
}

/* Banner */
.dcw-banner {
  height: 82px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #160d3a 0%, #0d0f2e 40%, #1a0a3a 100%);
}
.dcw-banner-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 120% at 25% 50%, rgba(88,101,242,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 100% at 80% 30%, rgba(139,92,246,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 90% 90%, rgba(14,165,233,0.2) 0%, transparent 50%);
  animation: bannerShift 6s ease-in-out infinite alternate;
}
@keyframes bannerShift {
  from { opacity: 0.8; transform: scale(1) translateX(0); }
  to   { opacity: 1;   transform: scale(1.08) translateX(-15px); }
}
.dcw-banner-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 12px,
    rgba(255,255,255,0.025) 12px, rgba(255,255,255,0.025) 13px
  );
}

/* Header */
.dcw-head {
  display: flex; align-items: flex-end; gap: 14px;
  padding: 0 20px 16px; margin-top: -28px;
  position: relative; z-index: 1;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dcw-icon-wrap { position: relative; flex-shrink: 0; }
.dcw-icon-ring {
  position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #5865F2, #a78bfa, #5865F2) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  animation: ringRotate 4s linear infinite;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }
.dcw-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(14,165,233,0.55);
  position: relative; z-index: 1;
  overflow: hidden;
}
.dcw-info { flex: 1; padding-top: 30px; }
.dcw-info strong {
  display: block; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px;
  font-family: 'Exo 2', sans-serif;
}
.dcw-badges { display: flex; gap: 6px; align-items: center; }
.dcw-badge-live {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Orbitron', monospace;
  font-size: 0.46rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 20px;
  background: rgba(16,185,129,0.13); border: 1px solid rgba(16,185,129,0.28);
  color: var(--green);
}
.dcw-live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 7px var(--green);
  animation: dotPulse 2s ease-in-out infinite;
}

/* Stats */
.dcw-stats {
  display: flex; align-items: center; gap: 0;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dcw-stat-item { display: flex; align-items: center; gap: 10px; flex: 1; }
.dcw-stat-sep  { width: 1px; height: 32px; background: rgba(255,255,255,0.07); margin: 0 16px; }
.dcw-si-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dcw-si-members { background: rgba(88,101,242,0.16); color: #a5b4fc; }
.dcw-si-online  { background: rgba(16,185,129,0.16); color: var(--green); }
.dcw-si-val {
  display: block; font-family: 'Orbitron', monospace;
  font-size: 1.2rem; font-weight: 900; color: #c4c9ff; line-height: 1;
}
.dcw-si-green { color: var(--green); text-shadow: 0 0 14px rgba(16,185,129,0.5); }
.dcw-si-lbl   { display: block; font-size: 0.66rem; color: rgba(255,255,255,0.3); margin-top: 3px; }

/* ── ACTIVITY FEED ── */
.dcw-activity { border-bottom: 1px solid rgba(255,255,255,0.05); }
.dcw-act-head {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 0.45rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  padding: 12px 20px 6px;
}
.dcw-act-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: dotPulse 2s ease-in-out infinite; flex-shrink: 0;
}
.dcw-act-list { display: flex; flex-direction: column; }
.dcw-act-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 20px;
  opacity: 0;
  animation: actIn 0.45s ease calc(var(--act-i,0) * 200ms + 1s) both;
  transition: background 0.15s;
}
.dcw-act-item:hover { background: rgba(255,255,255,0.04); }
@keyframes actIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: none; }
}
/* Avatar wrapper (valós kép VAGY betű placeholder) */
.dcw-act-av-wrap {
  position: relative; flex-shrink: 0;
  width: 28px; height: 28px; margin-top: 2px;
}
.dcw-act-av-img {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; display: block;
}
/* Valós status dot a kép jobb-alsó sarkán */
.dcw-av-status {
  position: absolute; bottom: -1px; right: -1px;
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid #0c0e20;
  transition: background 0.3s;
}
/* Letter placeholder avatars */
.dcw-act-av {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', monospace; font-size: 0.58rem; font-weight: 700; color: #fff;
}
.dcw-av-1     { background: linear-gradient(135deg, #5865F2, #4752c4); }
.dcw-av-2     { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.dcw-av-3     { background: linear-gradient(135deg, #f59e0b, #d97706); }
.dcw-av-admin { background: linear-gradient(135deg, #f59e0b, #d97706); }
/* LIVE / AFK / DND badge az activity időnél */
.dcw-act-time {
  font-size: 0.48rem !important;
  letter-spacing: 0.5px;
}
.dcw-act-body {
  flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px;
}
.dcw-act-name { font-family: 'Orbitron', monospace; font-size: 0.58rem; color: rgba(255,255,255,0.72); }
.dcw-act-ch   { font-size: 0.64rem; color: #7289da; }
.dcw-act-msg  { font-size: 0.78rem; color: rgba(255,255,255,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dcw-act-time { font-size: 0.58rem; color: rgba(255,255,255,0.2); flex-shrink: 0; margin-top: 3px; }

/* Typing dots */
.dcw-typing {
  display: inline-flex; gap: 3px; align-items: center; height: 16px; margin-top: 2px;
}
.dcw-typing span {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.38);
  animation: typeBounce 1.4s ease-in-out infinite;
}
.dcw-typing span:nth-child(2) { animation-delay: 0.22s; }
.dcw-typing span:nth-child(3) { animation-delay: 0.44s; }
@keyframes typeBounce {
  0%,60%,100% { transform: translateY(0); opacity: 0.35; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

/* Channels */
.dcw-channels { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dcw-ch-head {
  font-family: 'Orbitron', monospace;
  font-size: 0.46rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.22); padding: 4px 20px 6px;
}
.dcw-ch-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 20px; font-size: 0.84rem; color: rgba(255,255,255,0.4);
  border-radius: 4px; margin: 0 8px; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.dcw-ch-item:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.78); }
.dcw-ch-hash  { font-size: 1rem; color: rgba(255,255,255,0.22); font-weight: 700; line-height: 1; }
.dcw-ch-new   { margin-left: auto; font-family: 'Orbitron', monospace; font-size: 0.4rem; letter-spacing: 1px; background: var(--discord); color: #fff; padding: 2px 6px; border-radius: 4px; }
.dcw-ch-bell  { margin-left: auto; font-size: 0.72rem; opacity: 0.45; }

/* Footer */
.dcw-footer { padding: 14px; }
.dcw-join {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
  color: #fff; padding: 13px 20px; border-radius: 10px; text-decoration: none;
  font-family: 'Orbitron', monospace; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(88,101,242,0.45);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.dcw-join::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  animation: btnShimmer 3s ease-in-out infinite 1s;
}
.dcw-join:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(88,101,242,0.65); }
.dcw-invite-hint {
  text-align: center; margin-top: 8px;
  font-size: 0.68rem; color: rgba(255,255,255,0.18);
  font-family: 'Orbitron', monospace; letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1060px) {
  .dc-wrap { grid-template-columns: 1fr; gap: 52px; }
  .dc-right { max-width: 460px; }
  .dc-left .sec-title { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .dc-notif { display: none; }
}
@media (max-width: 480px) {
  .dc-statbox-row { flex-direction: column; }
  .dc-stats-row { gap: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════ */
.cta-sec {
  position: relative; overflow: hidden;
  padding: 140px 28px; text-align: center;
  border-top: 1px solid rgba(14,165,233,0.1);
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(14,165,233,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 20%, rgba(6,182,212,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(88,101,242,0.04) 0%, transparent 60%);
  pointer-events: none;
  animation: ctaBgShift 10s ease-in-out infinite alternate;
}
@keyframes ctaBgShift {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.05); }
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900;
  color: var(--text); line-height: 1; margin-bottom: 18px;
  letter-spacing: -2px;
  text-shadow: 0 0 60px rgba(14,165,233,0.15);
}
.cta-sub { font-size: 1.05rem; color: var(--text2); margin-bottom: 40px; opacity: 0.8; }
.cta-ip {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 16px 32px; border-radius: 10px;
  background: rgba(14,165,233,0.07);
  border: 1px solid rgba(14,165,233,0.25);
  margin-bottom: 44px;
  box-shadow: 0 0 40px rgba(14,165,233,0.1), inset 0 0 30px rgba(14,165,233,0.03);
  animation: ipGlow 3s ease-in-out infinite;
}
@keyframes ipGlow {
  0%,100% { box-shadow: 0 0 30px rgba(14,165,233,0.1), inset 0 0 30px rgba(14,165,233,0.03); }
  50%      { box-shadow: 0 0 60px rgba(14,165,233,0.2), inset 0 0 40px rgba(14,165,233,0.06); }
}
.cta-ip-lbl {
  font-family: 'Orbitron', monospace;
  font-size: 0.52rem; letter-spacing: 2.5px; color: var(--muted);
}
.cta-ip code {
  font-family: 'Orbitron', monospace;
  font-size: 1.35rem; font-weight: 700; color: var(--blue); letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(14,165,233,0.5);
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, #020916 0%, #010610 100%);
  border-top: 1px solid rgba(14,165,233,0.08);
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.3), transparent);
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 48px;
  flex-wrap: wrap; padding: 60px 0 52px;
}
.footer-logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem; font-weight: 900; margin-bottom: 14px;
  letter-spacing: 2px;
  display: flex; align-items: center; gap: 12px;
}
.footer-logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 10px rgba(14,165,233,0.5));
  flex-shrink: 0;
}
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; max-width: 260px; }
.footer-cols { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.fc-head {
  font-family: 'Orbitron', monospace;
  font-size: 0.5rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--dim); margin-bottom: 6px;
}
.footer-col a { font-size: 0.88rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bot { border-top: 1px solid rgba(255,255,255,0.04); }
.footer-bot-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; padding: 18px 0;
  font-size: 0.75rem; color: var(--dim);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(4px);
  transition:
    opacity  0.75s cubic-bezier(0.16,1,0.3,1),
    transform 0.75s cubic-bezier(0.16,1,0.3,1),
    filter   0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* 3D TILT */
.tilt-card { transform-style: preserve-3d; will-change: transform; }

/* ═══════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 99999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--blue2));
  box-shadow: 0 0 10px var(--blue);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(14,165,233,0.15);
  border: 1px solid var(--border2);
  color: var(--blue); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.back-to-top.visible { opacity: 1; transform: none; }
.back-to-top:hover {
  background: rgba(14,165,233,0.3);
  box-shadow: 0 0 24px rgba(14,165,233,0.4);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR — hide on scroll down, show on scroll up
═══════════════════════════════════════════════════════════ */
#siteHeader.nav-hidden { transform: translateY(-100%); }

/* ═══════════════════════════════════════════════════════════
   EXTRA ANIMATIONS
═══════════════════════════════════════════════════════════ */

/* Floating cards */
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.feat-card:nth-child(1) { animation: floatCard 6s ease-in-out 0s   infinite; }
.feat-card:nth-child(2) { animation: floatCard 6s ease-in-out 0.8s infinite; }
.feat-card:nth-child(3) { animation: floatCard 6s ease-in-out 1.6s infinite; }
.feat-card:nth-child(4) { animation: floatCard 6s ease-in-out 0.4s infinite; }
.feat-card:nth-child(5) { animation: floatCard 6s ease-in-out 1.2s infinite; }
.feat-card:nth-child(6) { animation: floatCard 6s ease-in-out 2.0s infinite; }
/* Pause on hover */
.feat-card:hover { animation-play-state: paused; }

/* Glow pulse on lb-sum-val */
@keyframes valPulse {
  0%,100% { text-shadow: 0 0 20px rgba(14,165,233,0.4); }
  50%      { text-shadow: 0 0 40px rgba(14,165,233,0.8), 0 0 80px rgba(14,165,233,0.3); }
}
.lb-sum-val { animation: valPulse 3s ease-in-out infinite; }

/* Button ripple */
.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0); animation: rippleAnim 0.55s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}
.btn-primary, .btn-outline, .btn-discord, .btn-ghost { position: relative; overflow: hidden; }

/* Mode card number count-up shimmer */
@keyframes mcNumReveal {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.mode-card.visible .mc-num { animation: mcNumReveal 0.5s ease both; }

/* Stats strip counter glow */
@keyframes countGlow {
  0%   { text-shadow: 0 0 0 transparent; }
  50%  { text-shadow: 0 0 30px rgba(14,165,233,0.7); }
  100% { text-shadow: 0 0 20px rgba(14,165,233,0.4); }
}
.si-val.counted { animation: countGlow 1s ease forwards; }

/* Hero tag slide in */
@keyframes tagSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: none; }
}
.hero-tag { animation: tagSlide 0.7s ease-out 1.6s both; }

/* IP bar border glow pulse */
@keyframes ipGlow {
  0%,100% { box-shadow: 0 0 0 rgba(14,165,233,0); border-color: var(--border2); }
  50%      { box-shadow: 0 0 20px rgba(14,165,233,0.2); border-color: var(--blue); }
}
.ip-bar { animation: ipGlow 4s ease-in-out 3s infinite; }

/* Section eyebrow scan line */
@keyframes eyebrowScan {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}
.eyebrow::after {
  content: '';
  position: absolute; inset: 0; border-radius: 30px;
  background: linear-gradient(90deg, transparent 0%, rgba(14,165,233,0.3) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: eyebrowScan 3s ease-in-out infinite;
}
.eyebrow { position: relative; overflow: hidden; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TELJES MOBIL TÁMOGATÁS
═══════════════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-wrap {
    flex-direction: column; justify-content: center;
    text-align: center; padding-top: 100px; padding-bottom: 60px;
    gap: 32px;
  }
  .hero-content { max-width: 100%; }
  .hero-tag { justify-content: center; }
  .hero-btns { justify-content: center; }
  .ip-bar { justify-content: center; flex-wrap: wrap; }
  .hero-panel { width: 100%; max-width: 440px; margin: 0 auto; }
  .radar-wrap { display: none; }
  .hex-grid { opacity: 0.5; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .modes-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  /* floating animation kikapcsolva mobilon (teljesítmény) */
  .feat-card { animation: none !important; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .modes-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .strip-inner { gap: 0; flex-wrap: wrap; justify-content: center; }
  .strip-item { padding: 18px 28px; flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .strip-item:nth-child(1),.strip-item:nth-child(3) { border-right: 1px solid var(--border); }
  .strip-div { display: none; }
  .lb-thead { display: none; }
  .lb-summary-row { grid-template-columns: 1fr; }
  .lb-sum-card { border-right: none; border-bottom: 1px solid var(--border); }
  .lb-sum-card:last-child { border-bottom: none; }
  .lb-row { grid-template-columns: 64px 1fr; padding: 14px 16px; }
  .lb-stats-cell { display: none; }
  .lb-skel-row-v2 { grid-template-columns: 60px 1fr; padding: 14px 16px; }
  .lb-skel-row-v2 > *:last-child { display: none; }
  .footer-inner { flex-direction: column; gap: 32px; padding: 40px 0 32px; }
  .footer-cols { flex-direction: column; gap: 24px; }
  .footer-bot-inner { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-title { font-size: clamp(2rem, 9vw, 3.5rem); }
  .back-to-top { bottom: 18px; right: 18px; width: 40px; height: 40px; }
  .hero-panel { padding: 20px 18px; }
  .panel-num { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero-title { font-size: clamp(3.2rem, 18vw, 5.5rem); letter-spacing: -1px; }
  .hero-sub { font-size: 1rem; }
  .ip-bar { padding: 12px 16px; gap: 10px; }
  .ip-val { font-size: 0.95rem; }
  .ip-copy { padding: 6px 12px; font-size: 0.55rem; }
  .hero-btns { gap: 8px; }
  .btn-primary, .btn-outline, .btn-ghost { padding: 12px 20px; font-size: 0.65rem; }
  .cta-sec { padding: 72px 16px; }
  .cta-ip { padding: 12px 20px; gap: 12px; flex-direction: column; text-align: center; }
  .strip-item { flex: 0 0 100%; border-right: none !important; }
  .sec-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .feat-card { padding: 28px 20px; }
  .panel-metrics { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .pm-v { font-size: 0.75rem; }
}

/* ══════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════ */
/* siteHeader = ann-bar + navbar közös fixed burkoló */
#siteHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.ann-bar {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg,
    rgba(14,165,233,0.16) 0%,
    rgba(6,182,212,0.10) 50%,
    rgba(14,165,233,0.16) 100%);
  border-bottom: 1px solid rgba(14,165,233,0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease,
              padding 0.4s ease;
  max-height: 40px;
}
.ann-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
    transparent, transparent 80px,
    rgba(14,165,233,0.04) 80px, rgba(14,165,233,0.04) 81px);
  pointer-events: none;
}
.ann-bar.dismissed {
  max-height: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  border-bottom-width: 0;
}
.ann-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  padding: 0 44px 0 20px;
}
.ann-dot {
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: annPulse 2s ease-in-out infinite;
}
@keyframes annPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.65); }
}
.ann-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8rem;
  color: var(--text2);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}
.ann-text strong { color: var(--blue2); }
.ann-link {
  flex-shrink: 0;
  font-family: 'Orbitron', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue);
  text-decoration: none;
  border: 1px solid rgba(14,165,233,0.38);
  padding: 3px 9px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.ann-link:hover { background: var(--blue); color: #fff; }
.ann-close {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
  border-left: 1px solid rgba(14,165,233,0.1);
}
.ann-close:hover { color: var(--text); background: rgba(14,165,233,0.08); }
@media (max-width: 600px) {
  .ann-link { display: none; }
  .ann-text { font-size: 0.72rem; }
  .ann-inner { padding: 0 40px 0 14px; }
}

/* ══════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.faq-sec { background: var(--bg2); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover,
.faq-item.open {
  border-color: var(--border2);
}
.faq-item.open {
  box-shadow: 0 0 24px rgba(14,165,233,0.08);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue2); }
.faq-item.open .faq-q { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(14,165,233,0.35);
  position: relative;
  transition: border-color 0.3s, background 0.3s, transform 0.35s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--blue3);
  border-radius: 2px;
  transition: opacity 0.3s, transform 0.35s;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }
.faq-item.open .faq-icon {
  background: rgba(14,165,233,0.15);
  border-color: var(--blue);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px;
}
.faq-a p {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-a p a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(14,165,233,0.3);
  transition: border-color 0.2s;
}
.faq-a p a:hover { border-color: var(--blue); }
.faq-a p strong { color: var(--text); }

@media (max-width: 720px) {
  .faq-q { padding: 16px 18px; font-size: 0.9rem; }
  .faq-item.open .faq-a { padding: 0 18px 18px; }
}

/* ══════════════════════════════════════════════
   LUCIDE SVG ICON SIZING
══════════════════════════════════════════════ */

/* Feature card icon box */
.fi-wrap i[data-lucide],
.fi-wrap svg {
  width: 26px; height: 26px;
  stroke: rgba(var(--fc-r, 14), var(--fc-g, 165), var(--fc-b, 233), 0.88);
  stroke-width: 1.75;
  fill: none;
  display: block;
}

/* Mode card icon */
.mc-icon {
  margin-bottom: 18px;
  line-height: 1;
}
.mc-icon i[data-lucide],
.mc-icon svg {
  width: 34px; height: 34px;
  stroke: var(--blue2);
  stroke-width: 1.5;
  fill: none;
  display: block;
}
.mc-1v1 .mc-icon svg { stroke: #fbbf24; }
.mc-dm  .mc-icon svg { stroke: #f87171; }

/* Leaderboard summary icon wrappers */
.lb-sum-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  flex-shrink: 0;
}
.lb-sum-blue { background: rgba(14,165,233,0.12); }
.lb-sum-gold { background: rgba(245,158,11,0.12); }
.lb-sum-red  { background: rgba(239,68,68,0.12);  }
.lb-sum-blue svg { stroke: var(--blue); fill: none; }
.lb-sum-gold svg { stroke: var(--gold); fill: none; }
.lb-sum-red  svg { stroke: #f87171;    fill: none; }

/* Leaderboard summary value accent colors */
.lb-sum-val-gold {
  color: var(--gold2) !important;
  text-shadow: 0 0 20px rgba(245,158,11,0.45) !important;
  animation: valPulseGold 3s ease-in-out infinite !important;
}
.lb-sum-val-red {
  color: #f87171 !important;
  text-shadow: 0 0 20px rgba(239,68,68,0.45) !important;
  animation: valPulseRed 3s ease-in-out infinite !important;
}
@keyframes valPulseGold {
  0%,100% { text-shadow: 0 0 20px rgba(245,158,11,0.4); }
  50%      { text-shadow: 0 0 40px rgba(245,158,11,0.75), 0 0 80px rgba(245,158,11,0.25); }
}
@keyframes valPulseRed {
  0%,100% { text-shadow: 0 0 20px rgba(239,68,68,0.4); }
  50%      { text-shadow: 0 0 40px rgba(239,68,68,0.75), 0 0 80px rgba(239,68,68,0.25); }
}

/* ══════════════════════════════════════════════
   LEADERBOARD — LIVE REFRESH BAR
══════════════════════════════════════════════ */
.lb-refresh-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 16px;
  margin-bottom: 14px;
  background: rgba(16,185,129,0.04);
  border: 1px solid rgba(16,185,129,0.13);
  border-radius: 8px;
  gap: 12px;
}
.lbr-left {
  display: flex; align-items: center; gap: 8px;
}
.lbr-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.65); }
}
.lbr-text {
  font-family: 'Orbitron', monospace;
  font-size: 0.56rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green);
}
.lbr-right {
  display: flex; align-items: center; gap: 10px;
}
.lbr-label {
  font-size: 0.74rem; color: var(--muted);
}
.lbr-countdown {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem; font-weight: 700; color: var(--blue2);
  min-width: 30px; text-align: right;
  transition: color 0.3s;
}
.lbr-countdown.urgent { color: #f87171; }
.lbr-btn {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: 6px; cursor: pointer;
  color: var(--blue); transition: all 0.25s;
  padding: 0;
}
.lbr-btn:hover {
  background: rgba(14,165,233,0.18);
  border-color: rgba(14,165,233,0.4);
  box-shadow: 0 0 12px rgba(14,165,233,0.2);
}
.lbr-btn svg {
  stroke: currentColor; fill: none;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.lbr-btn:hover svg,
.lbr-btn.spinning svg {
  animation: iconSpin 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes iconSpin {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}
@media (max-width: 600px) {
  .lbr-label { display: none; }
}

/* ══════════════════════════════════════════════
   STATUS SECTION
══════════════════════════════════════════════ */
.status-sec { padding: 80px 0; }

.status-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

/* ── Chart side ── */
.status-chart-wrap {
  background: rgba(4,13,36,0.7);
  border: 1px solid rgba(14,165,233,0.12);
  border-radius: 20px;
  padding: 24px 24px 16px;
  position: relative;
  overflow: hidden;
}
.status-chart-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(14,165,233,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.sc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.sc-title {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--blue2);
}
.sc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 8px var(--blue);
  animation: dotPulse 2s ease-in-out infinite;
}
.sc-live-badge {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--green);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 20px; padding: 3px 10px;
}
.sc-live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: dotPulse 2s ease-in-out infinite;
}
.sc-canvas-wrap {
  position: relative;
  display: flex; gap: 8px;
}
.sc-y-labels {
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: 0.6rem; color: var(--muted); text-align: right;
  padding-bottom: 2px; flex-shrink: 0;
  min-width: 24px;
}
#statusChart {
  flex: 1; display: block;
  height: 180px; width: 100%;
  border-radius: 8px;
}
.sc-x-labels {
  display: flex; justify-content: space-between;
  font-size: 0.6rem; color: var(--muted);
  margin-top: 6px; padding-left: 32px;
}
.sc-current-badge {
  display: flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 0.78rem; color: var(--text2);
  border-top: 1px solid rgba(14,165,233,0.08);
  padding-top: 12px;
}
.sc-current-badge svg { color: var(--green); }
.sc-current-badge strong { color: var(--blue); font-family: 'Orbitron', monospace; }

/* ── Status cards side ── */
.st-card {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(4,13,36,0.6);
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 14px; padding: 16px 20px;
  margin-bottom: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.st-card:hover {
  border-color: rgba(14,165,233,0.25);
  box-shadow: 0 4px 24px rgba(14,165,233,0.06);
}
.st-card-left {
  display: flex; align-items: center; gap: 14px;
}
.st-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.st-icon-blue   { background: rgba(14,165,233,0.12); color: var(--blue); }
.st-icon-cyan   { background: rgba(6,182,212,0.12);  color: var(--cyan); }
.st-icon-purple { background: rgba(88,101,242,0.12); color: #818cf8; }
.st-name  { font-weight: 700; font-size: 0.92rem; margin-bottom: 2px; }
.st-host  { font-size: 0.72rem; color: var(--muted); font-family: monospace; }
.st-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.st-status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--muted);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.st-status-dot.st-online  { background: var(--green); box-shadow: 0 0 10px rgba(16,185,129,0.6); animation: dotPulse 2s ease-in-out infinite; }
.st-status-dot.st-offline { background: #f87171; box-shadow: 0 0 10px rgba(248,113,113,0.5); }
.st-status-lbl { font-size: 0.75rem; font-weight: 600; color: var(--muted); transition: color 0.4s; }
.st-status-lbl.st-online-lbl  { color: var(--green); }
.st-status-lbl.st-offline-lbl { color: #f87171; }

/* Uptime row */
.st-uptime {
  display: flex; align-items: center;
  background: rgba(4,13,36,0.4);
  border: 1px solid rgba(14,165,233,0.08);
  border-radius: 14px; padding: 16px 20px;
  margin-top: 4px;
  gap: 0;
}
.stu-item { flex: 1; text-align: center; }
.stu-val  { display: block; font-family: 'Orbitron', monospace; font-size: 1.3rem; font-weight: 900; color: var(--blue); margin-bottom: 2px; }
.stu-val.stu-green { color: var(--green); text-shadow: 0 0 16px rgba(16,185,129,0.4); }
.stu-key  { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.05em; }
.stu-div  { width: 1px; background: rgba(14,165,233,0.1); align-self: stretch; margin: 0 8px; }

/* Responsive */
@media (max-width: 1060px) {
  .status-grid { grid-template-columns: 1fr; gap: 40px; }
  .status-chart-wrap { max-width: 100%; }
}

/* ── DISCORD IFRAME WIDGET SHELL ── */
.dc-iframe-shell {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1c2e;
  border: 1px solid rgba(88,101,242,0.25);
  box-shadow:
    0 0 0 1px rgba(88,101,242,0.08),
    0 24px 64px rgba(0,0,0,0.55),
    0 0 80px rgba(88,101,242,0.07);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.dc-iframe-shell:hover {
  border-color: rgba(88,101,242,0.45);
  box-shadow:
    0 0 0 1px rgba(88,101,242,0.15),
    0 28px 72px rgba(0,0,0,0.6),
    0 0 100px rgba(88,101,242,0.12);
}
.dc-iframe-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(88,101,242,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.dc-iframe-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 12px;
  background: rgba(88,101,242,0.08);
  border-bottom: 1px solid rgba(88,101,242,0.15);
}
.dc-iframe-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #a5b4fc;
}
.dc-iframe-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
}
.dc-iframe-body {
  position: relative;
  z-index: 1;
}
.dc-iframe-body iframe {
  display: block;
  border: none;
  width: 100%;
}
.dc-iframe-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(88,101,242,0.12);
}

/* ── DISCORD LOADING PULSE ── */
@keyframes discordPulse {
  0%,100% { opacity: 0.35; }
  50%      { opacity: 0.9;  }
}

/* ── PING ÉRTÉK FRISSÍTÉS ANIMÁCIÓ ── */
#stripPing {
  transition: color 0.4s ease, text-shadow 0.4s ease, opacity 0.3s ease;
  display: inline-block;
}
@keyframes pingUpdate {
  0%  { transform: scale(1.3); }
  100%{ transform: scale(1);   }
}
#stripPing.refreshed {
  animation: pingUpdate 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
