/* 🛸 K-OS CYBERPUNK 2077 TECH GAME NODE STYLES */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,700;0,900;1,800&display=swap');

:root {
  --bg: #03060c;
  --card-bg: rgba(6, 14, 28, 0.92);
  --border: rgba(0, 255, 204, 0.35);
  --primary: #00ffcc;
  --accent: #ff0055;
  --yellow: #ffe600;
  --purple: #aa00ff;
  --text: #f1f5f9;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none !important;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* Atmospheric 2077 Cyber Lighting */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 255, 204, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(255, 0, 85, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(170, 0, 255, 0.05) 0%, transparent 60%),
    radial-gradient(circle at center, transparent 30%, rgba(2, 4, 10, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0px, rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 2px);
  pointer-events: none;
  z-index: 2;
}

#root {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.tech-loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: var(--primary);
  font-family: var(--font-mono);
  gap: 20px;
}

.loading-bar {
  width: 260px;
  height: 4px;
  background: rgba(0, 255, 204, 0.1);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 12px rgba(0, 255, 204, 0.2);
}

.loading-bar .progress {
  width: 50%;
  height: 100%;
  background: var(--primary);
  box-shadow: 0 0 16px var(--primary);
  animation: loadingAnim 1.5s infinite ease-in-out;
}

@keyframes loadingAnim {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.tech-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
}

.tech-header {
  height: 58px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: rgba(4, 9, 20, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

.brand-title {
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 3px;
}

.status-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--primary);
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 255, 204, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.status-badge::before {
  content: "::";
  color: #48546a;
  font-weight: 900;
  letter-spacing: 1px;
}

.tech-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
  letter-spacing: 3px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-badge {
  font-size: 11px;
  color: var(--primary);
  padding: 4px 8px;
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid var(--border);
}

.tech-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}