@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Orbitron', system-ui, sans-serif;
}

body {
  margin: 0;
  background: #05060a;
  color: #e5e7eb;
  overflow-x: hidden;
}

/* BACKGROUND ENERGY */
.energy-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at left, rgba(0,180,255,0.15), transparent 40%),
    radial-gradient(circle at right, rgba(255,120,0,0.15), transparent 40%);
  z-index: -1;
}

/* HEADER */
.hud-header {
  text-align: center;
  padding: 28px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(5,6,10,0.7);
  backdrop-filter: blur(12px);
}

.hud-header h1 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #00c8ff, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hud-sub {
  font-size: 0.75rem;
  opacity: 0.6;
  letter-spacing: 2px;
}

/* DASHBOARD */
.hud-dashboard {
  max-width: 1500px;
  margin: auto;
  padding: 40px 24px;
}

.operators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
}

/* OPERATOR CARD */
.operator-card {
  position: relative;
  background: linear-gradient(180deg, #070a14, #05060a);
  border-radius: 22px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.operator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(0,200,255,0.15),
    rgba(255,120,0,0.15),
    transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

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

.operator-glow-blue {
  box-shadow: 0 0 60px rgba(0,200,255,0.15);
}

.operator-glow-orange {
  box-shadow: 0 0 60px rgba(255,120,0,0.15);
}

/* HEADER */
.operator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.operator-name {
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.operator-tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  opacity: 0.6;
}

/* SECTIONS */
.section-title {
  margin: 18px 0 8px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  opacity: 0.6;
}

/* GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* STAT BOX */
.stat-box {
  background: rgba(10,15,30,0.7);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 12px;
  position: relative;
  overflow: hidden;
}

.stat-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.05), transparent);
  opacity: 0;
  transition: 0.3s;
}

.stat-box:hover::after {
  opacity: 1;
}

.stat-label {
  font-size: 0.6rem;
  opacity: 0.5;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 4px;
}
/* BACK BUTTON */
.back-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  padding: 12px 24px 0;
}

/* NAV BAR */
.nav-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 10px;
}

/* BACK BUTTON */
.back-home {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #e5f6ff;

  background: linear-gradient(
    135deg,
    rgba(0,200,255,0.15),
    rgba(255,120,0,0.12)
  );

  border: 1px solid rgba(0,200,255,0.35);
  backdrop-filter: blur(10px);

  box-shadow:
    0 0 25px rgba(0,200,255,0.15),
    inset 0 0 25px rgba(255,255,255,0.04);

  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Glow animation layer */
.back-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.back-home:hover::before {
  opacity: 1;
}

.back-home:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 45px rgba(0,200,255,0.35),
    0 0 60px rgba(255,120,0,0.25);
  border-color: rgba(255,255,255,0.5);
}

.arrow {
  font-size: 1rem;
  color: #00c8ff;
}

.text {
  font-weight: 600;
  color: #ffffff;
}

/* ============================= */
/* ===== CINEMATIC SMOKE FX ==== */
/* ============================= */

#smoke-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(85px);
  opacity: 0.7; /* 🔥 10% heller */
  overflow: hidden;
}

/* ============================= */
/* ===== NEXT LEVEL SMOKE FX === */
/* ============================= */

#smoke-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(85px);
  opacity: 0.85;
  overflow: hidden;
}

/* ============================= */
/* ===== MAIN SMOKE LAYERS ===== */
/* ============================= */

/* CYAN DOMINANT CORE */
#smoke-bg::before{
  content: "";
  position: absolute;
  inset: -70%;
  background:
    radial-gradient(circle at 15% 30%, rgba(0, 220, 255, 0.65), transparent 45%),
    radial-gradient(circle at 80% 35%, rgba(0, 200, 255, 0.55), transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(0, 190, 255, 0.60), transparent 55%),
    radial-gradient(circle at 10% 70%, rgba(0, 180, 255, 0.45), transparent 60%),
    radial-gradient(circle at 90% 60%, rgba(0, 210, 255, 0.40), transparent 65%);
  animation: smokeCyan 80s linear infinite;
}

/* ORANGE ACCENT (SECONDARY) */
#smoke-bg::after{
  content: "";
  position: absolute;
  inset: -70%;
  background:
    radial-gradient(circle at 30% 60%, rgba(255, 130, 0, 0.40), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(255, 140, 0, 0.35), transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(255, 120, 0, 0.38), transparent 55%);
  animation: smokeOrange 80s linear infinite;
}

/* ============================= */
/* ===== DEPTH FOG LAYER ======= */
/* ============================= */

#smoke-bg .fog-layer{
  position: absolute;
  inset: -70%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.06), transparent 65%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.07), transparent 65%);
  animation: fogDrift 160s linear infinite;
}

/* ============================= */
/* ===== ENERGY FLOW LAYER ===== */
/* ============================= */

#smoke-bg .energy-layer{
  position: absolute;
  inset: -70%;
  background:
    linear-gradient(120deg,
      transparent 0%,
      rgba(0,220,255,0.18) 20%,
      transparent 40%,
      rgba(255,120,0,0.12) 60%,
      transparent 80%);
  animation: energyFlow 60s linear infinite;
}

/* ============================= */
/* ===== PARALLAX DEPTH ======== */
/* ============================= */

#smoke-bg .parallax-layer{
  position: absolute;
  inset: -80%;
  background:
    radial-gradient(circle at 60% 40%, rgba(0,200,255,0.18), transparent 60%),
    radial-gradient(circle at 40% 70%, rgba(255,120,0,0.15), transparent 65%);
  animation: parallaxDrift 120s linear infinite;
}

/* ============================= */
/* ===== GPU NOISE OVERLAY ===== */
/* ============================= */

#smoke-bg .noise-layer{
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(circle,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 2px,
      transparent 4px);
  mix-blend-mode: overlay;
  opacity: 0.18;
  animation: noiseMove 25s linear infinite;
}

/* ============================= */
/* ===== ANIMATIONS ============ */
/* ============================= */

@keyframes smokeCyan{
  0%   { transform: translate(-30%, -30%) rotate(0deg); }
  50%  { transform: translate(30%, 20%) rotate(180deg); }
  100% { transform: translate(-30%, -30%) rotate(360deg); }
}

@keyframes smokeOrange{
  0%   { transform: translate(30%, 30%) rotate(360deg); }
  50%  { transform: translate(-30%, -20%) rotate(180deg); }
  100% { transform: translate(30%, 30%) rotate(0deg); }
}

@keyframes fogDrift{
  0%   { transform: translate(-10%, -10%) scale(1); }
  50%  { transform: translate(10%, 5%) scale(1.06); }
  100% { transform: translate(-10%, -10%) scale(1); }
}

@keyframes energyFlow{
  0%   { transform: translateX(-40%) rotate(0deg); }
  100% { transform: translateX(40%) rotate(360deg); }
}

@keyframes parallaxDrift{
  0%   { transform: translate(-15%, -15%); }
  50%  { transform: translate(15%, 10%); }
  100% { transform: translate(-15%, -15%); }
}

@keyframes noiseMove{
  0%   { transform: translate(0,0); }
  100% { transform: translate(120px, 120px); }
}

/* ============================= */
/* ===== FOREGROUND FIX ======== */
/* ============================= */

/* Alles liegt über dem Smoke */
body > *{
  position: relative;
  z-index: 1;
}
