
/* ═══════════════════════════════════════════════════════════════
   AEGIS Shield — Base Styles
   Reset & Core HTML Elements
   Author: Claude & Tom Sanders | Silicon Networks
   ═══════════════════════════════════════════════════════════════ */

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

/* ── BASE HTML ── */
html, body {
  width: 100%;
  height: 100%;
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
  color: var(--aegis-text);
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   AEGIS Shield — Layout
   Layers, Main Container, Animations, Scrollbars
   Author: Claude & Tom Sanders | Silicon Networks
   ═══════════════════════════════════════════════════════════════ */

/* ── LAYER 1: Background + Shield Animation ── */
#aegis-layer-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--aegis-bg);
  z-index: 0;
  overflow: visible;
  transition: background 0.8s ease;
}

#aegis-shield-container {
  position: fixed;
  top: calc(50% + 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 125vh;
  height: 125vh;  pointer-events: none;
  overflow: visible;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* ── LAYER 2: Glass Dashboard (on top of shield) ── */
#aegis-layer-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  background: transparent;
  transition: all 0.5s ease;
}

/* ── MAIN CONTENT CONTAINER ── */
#aegis-main {
  flex: 1;
  padding: 24px 32px;
  overflow-y: auto;
}

.aegis-header {
  display: flex;  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 20px;
  -webkit-app-region: drag;
}

.aegis-header h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.aegis-header p {
  font-size: 13px;
  color: var(--aegis-text-soft);
  margin-top: 4px;
}

/* ── ANIMATIONS ── */
@keyframes aegisPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes aegisFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.25);
  border-radius: 3px;
}

/* ── UTILITY CLASSES ── */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
