:root {
  --elite-bg: #03050b;
  --elite-panel: rgba(9, 15, 28, .88);
  --elite-panel-strong: rgba(7, 12, 23, .96);
  --elite-cyan: #32dcff;
  --elite-blue: #597dff;
  --elite-magenta: #ff3ed1;
  --elite-amber: #ffd95a;
  --elite-text: #eef8ff;
  --elite-muted: #91a8bb;
  --elite-line: rgba(50, 220, 255, .2);
}

html { background: var(--elite-bg); }

body {
  position: relative;
  overflow-x: clip !important;
  color: var(--elite-text);
  background:
    radial-gradient(circle at var(--elite-pointer-x, 82%) var(--elite-pointer-y, 9%), rgba(255, 62, 209, .11), transparent 24rem),
    radial-gradient(circle at 12% 10%, rgba(51, 102, 255, .18), transparent 34rem),
    linear-gradient(rgba(50,220,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50,220,255,.022) 1px, transparent 1px),
    var(--elite-bg) !important;
  background-size: auto, auto, 34px 34px, 34px 34px, auto !important;
}

body::before {
  width: 100% !important;
  height: 100% !important;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 45%, rgba(50,220,255,.035) 50%, transparent 55%) !important;
  background-size: 220% 100% !important;
  animation: eliteSweep 12s linear infinite !important;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: .32;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.014) 4px);
}

@keyframes eliteSweep { to { background-position: -220% 0; } }

nav {
  min-height: 84px;
  padding: 13px 6% !important;
  border-bottom: 1px solid var(--elite-line) !important;
  background: rgba(3, 6, 14, .88) !important;
  box-shadow: 0 12px 45px rgba(0,0,0,.36), inset 0 -1px rgba(255,62,209,.08) !important;
}

nav::before {
  content: "CYBERIUM // NETWORK ONLINE";
  position: absolute;
  right: 6%;
  bottom: 4px;
  color: rgba(50,220,255,.54);
  font: 700 8px/1 Consolas, monospace;
  letter-spacing: .2em;
}

.logo-container img {
  height: 58px;
  filter: drop-shadow(0 0 12px rgba(50,220,255,.3));
}

nav ul { gap: clamp(13px, 1.7vw, 28px) !important; }
nav ul li a { color: #cddae5 !important; font-size: 13px !important; letter-spacing: .07em !important; }
nav ul li a:hover { color: #fff !important; }

.elite-access-btn {
  border-radius: 7px 1px 7px 1px !important;
  animation: eliteAccessPulse 2.8s ease-in-out infinite !important;
  background: linear-gradient(120deg, rgba(255,217,90,.16), rgba(255,62,209,.1)) !important;
}

.queue-system-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 20px;
  border: 1px solid rgba(255,217,90,.42);
  border-radius: 7px 1px 7px 1px;
  color: var(--elite-amber) !important;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700 !important;
  background: linear-gradient(120deg, rgba(255,217,90,.14), rgba(255,62,209,.09));
  box-shadow: inset 0 0 18px rgba(255,217,90,.045);
  overflow: hidden;
  animation: queueButtonPulse 2.8s ease-in-out infinite;
}

.queue-system-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.15) 48%, transparent 70%);
  transform: translateX(-130%);
  animation: queueScan 4.2s ease-in-out infinite;
}

.queue-system-btn:hover {
  color: #fff !important;
  border-color: var(--elite-amber);
  box-shadow: 0 0 22px rgba(255,217,90,.2), 0 0 18px rgba(255,62,209,.12);
}

@keyframes queueScan {
  0%,55% { transform: translateX(-130%); }
  85%,100% { transform: translateX(130%); }
}

@keyframes queueButtonPulse {
  0%,100% { box-shadow: 0 0 0 rgba(255,217,90,0), inset 0 0 18px rgba(255,217,90,.045); }
  50% { box-shadow: 0 0 20px rgba(255,217,90,.18), inset 0 0 18px rgba(255,217,90,.07); }
}

@keyframes eliteAccessPulse {
  0%,100% { box-shadow: 0 0 0 rgba(255,217,90,0); }
  50% { box-shadow: 0 0 20px rgba(255,217,90,.2); }
}

.dropdown-menu {
  border-radius: 10px 2px 10px 2px !important;
  border-color: var(--elite-line) !important;
  background: rgba(5,10,20,.98) !important;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 138px 7% 80px !important;
  isolation: isolate;
}

.hero::before {
  content: "OPERATIONS // PUBLIC TERMINAL 01";
  position: absolute;
  left: 7%;
  top: 112px;
  color: rgba(145,168,187,.66);
  font: 700 9px/1 Consolas, monospace;
  letter-spacing: .2em;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -10%;
  top: 12%;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(50,220,255,.1);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 44px, rgba(50,220,255,.045) 45px 46px);
  animation: eliteRadar 28s linear infinite;
}

@keyframes eliteRadar { to { transform: rotate(360deg); } }

.hero-content { max-width: 780px; }

.hero-badge {
  border-radius: 6px 1px 6px 1px !important;
  color: var(--elite-cyan) !important;
  font: 700 11px/1.2 Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: inset 3px 0 var(--elite-magenta);
}

.hero h1 {
  font-size: clamp(45px, 5.4vw, 78px) !important;
  letter-spacing: -.035em;
  text-shadow: 0 0 35px rgba(50,220,255,.2) !important;
}

.hero h1 span { color: var(--elite-magenta) !important; text-shadow: 0 0 24px rgba(255,62,209,.45); }
.hero p { color: #aabdcf !important; }
.hero p span { color: var(--elite-cyan) !important; }

.hero-stats { gap: 12px !important; }
.stat-box {
  min-width: 132px;
  padding: 15px 20px;
  border: 1px solid rgba(50,220,255,.15);
  border-radius: 8px 2px 8px 2px;
  background: rgba(8,15,29,.72);
}
.stat-box h2 { color: var(--elite-cyan) !important; font-size: 34px !important; }
.stat-box small { color: var(--elite-muted) !important; text-transform: uppercase; letter-spacing: .08em; }

.btn-primary, .btn-secondary, .btn, .wa-group-btn, .wa-admin-btn {
  position: relative;
  overflow: hidden;
  border-radius: 7px 1px 7px 1px !important;
  font: 800 11px/1.2 'Orbitron', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important;
}

.btn-primary, .wa-admin-btn {
  color: #031018 !important;
  background: linear-gradient(115deg, var(--elite-cyan), #8aeeff) !important;
}

.btn-secondary { border-color: rgba(255,62,209,.55) !important; color: #ff83e2 !important; }
.btn-primary:hover, .btn-secondary:hover, .btn:hover, .wa-group-btn:hover, .wa-admin-btn:hover { transform: translateY(-3px); }

.hero-image { position: relative; }
.hero-image::before {
  content: "LIVE RENDER // RTX READY";
  position: absolute;
  right: 10%;
  bottom: 2%;
  padding: 7px 10px;
  border: 1px solid rgba(50,220,255,.2);
  color: var(--elite-cyan);
  background: rgba(3,8,16,.8);
  font: 700 8px/1 Consolas, monospace;
  letter-spacing: .14em;
}
.hero-image img { filter: drop-shadow(0 0 45px rgba(50,220,255,.28)) drop-shadow(0 0 70px rgba(255,62,209,.12)) !important; }

section { position: relative; padding: 104px 7% !important; }
section:nth-of-type(even) { background: linear-gradient(90deg, rgba(50,220,255,.018), rgba(255,62,209,.018)); }

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
}

.container > section {
  min-width: 0;
  padding: 30px 22px !important;
}

.title {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  color: var(--elite-text) !important;
  font-size: clamp(27px, 3vw, 42px) !important;
  letter-spacing: -.02em;
  text-shadow: none !important;
}

.title::before {
  content: "// ";
  color: var(--elite-magenta);
}

.title::after {
  content: "";
  display: block;
  width: 82px;
  height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--elite-magenta), var(--elite-cyan));
  box-shadow: 0 0 16px rgba(50,220,255,.35);
}

.grid { gap: 22px !important; }

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(50,220,255,.16) !important;
  border-radius: 12px 2px 12px 2px !important;
  background: linear-gradient(145deg, rgba(12,21,37,.9), rgba(5,10,20,.94)) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.23), inset 0 1px rgba(255,255,255,.025);
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 62px;
  height: 2px;
  background: var(--elite-cyan);
  box-shadow: 0 0 12px var(--elite-cyan);
}

.card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255,62,209,.16);
  transform: rotate(45deg);
}

.card:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(50,220,255,.42) !important;
  box-shadow: 0 22px 55px rgba(0,0,0,.35), 0 0 28px rgba(50,220,255,.1) !important;
}

.card h3 { color: var(--elite-cyan) !important; }
.card p { color: #a9bdce !important; }

.stats {
  gap: 12px;
  padding: 25px;
  border: 1px solid rgba(50,220,255,.14);
  border-radius: 10px 2px 10px 2px;
  background: rgba(8,14,26,.72);
}
.stats > div { flex: 1; min-width: 130px; }
.stats h2 { color: var(--elite-cyan) !important; font-family: 'Orbitron', sans-serif; }

.gallery img {
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid rgba(50,220,255,.17);
  border-radius: 9px 2px 9px 2px !important;
  filter: saturate(.86) contrast(1.06);
}
.gallery img:hover { transform: scale(1.025) !important; filter: saturate(1.15) contrast(1.08); box-shadow: 0 0 28px rgba(50,220,255,.14); }

.map-card iframe { border-radius: 8px 2px 8px 2px !important; filter: saturate(.7) contrast(1.08); }

footer {
  border-top: 1px solid var(--elite-line);
  color: var(--elite-muted) !important;
  background: #03060c !important;
  font: 700 11px/1.5 Consolas, monospace;
  letter-spacing: .09em;
}

.elite-motion-ready .elite-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.elite-motion-ready .elite-reveal.elite-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  nav { align-items: flex-start !important; flex-direction: column; padding: 10px 18px 8px !important; }
  nav::before { display: none; }
  .logo-container { width: 100%; justify-content: center; }
  .logo-container img { height: 43px !important; }
  nav ul { width: 100%; flex-wrap: nowrap !important; justify-content: flex-start !important; overflow-x: auto; padding: 5px 2px 9px; scrollbar-width: none; }
  nav ul::-webkit-scrollbar { display: none; }
  nav ul li { flex: 0 0 auto; }
  .hero { padding-top: 160px !important; }
  .hero::before { top: 137px; }
}

@media (max-width: 768px) {
  section { padding: 72px 16px !important; }
  .hero { padding: 165px 18px 68px !important; }
  .hero::before { left: 18px; top: 145px; font-size: 7px; }
  .hero h1 { font-size: clamp(34px, 11vw, 48px) !important; }
  .hero-stats { display: grid !important; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .stat-box { min-width: 0; padding: 12px 6px; }
  .stat-box h2 { font-size: 24px !important; }
  .stat-box small { font-size: 9px !important; }
  .stats { flex-direction: column; }
  .container { padding: 0 16px; }
  .container > section { padding: 26px 0 !important; }
  .hero-image::before { right: 0; }
  .card { padding: 22px !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .elite-motion-ready .elite-reveal { opacity: 1; transform: none; }
}
