:root {
  --neon-blue: #00f0ff;
  --neon-gold: #ffaa00;
  --neon-green: #39ff14;
  --neon-red: #ff3366;
  --bg-dark: #040811;
  --glass-bg: rgba(6, 17, 33, 0.75);
  --hud-border: rgba(0, 240, 255, 0.25);
  --hud-shadow: 0 0 25px rgba(0, 240, 255, 0.15);
  --font-cyber: 'Orbitron', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'Rajdhani', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  /* Fallback color and generated high-tech control center background image */
  background: radial-gradient(circle, rgba(5, 15, 30, 0.45) 0%, rgba(3, 7, 14, 0.96) 100%), 
              url('assets/bg.png') no-repeat center center / cover;
  color: #e2f1ff;
  font-family: var(--font-body);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ==========================================================================
   HUD SCREEN OVERLAYS (CRT, Grid, Scanlines, Flicker)
   ========================================================================== */

.screen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}

.scanlines {
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%,
    rgba(0, 0, 0, 0.3) 50%
  );
  background-size: 100% 4px;
  opacity: 0.45;
}

.grid-overlay {
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.8;
}

.crt-flicker {
  background: rgba(18, 16, 16, 0);
  opacity: 0.15;
  animation: crt-flicker-anim 0.15s infinite;
}

.vignette {
  background: radial-gradient(circle, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
}

@keyframes crt-flicker-anim {
  0% { opacity: 0.07; }
  50% { opacity: 0.09; }
  100% { opacity: 0.07; }
}

/* ==========================================================================
   MAIN DASHBOARD WRAPPER & FRAME
   ========================================================================== */

.dashboard-wrapper {
  position: relative;
  width: 95vw;
  height: 90vh;
  max-width: 1440px;
  max-height: 860px;
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}

.hud-frame {
  position: relative;
  flex: 1;
  height: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid var(--hud-border);
  box-shadow: var(--hud-shadow), inset 0 0 35px rgba(0, 240, 255, 0.08);
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  grid-template-rows: auto 1fr auto;
  gap: 15px;
  padding: 25px;
  transition: transform 0.5s ease;
}

/* Corners */
.hud-corner {
  position: absolute;
  width: 25px;
  height: 25px;
  border-color: var(--neon-blue);
  border-style: solid;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.7));
  pointer-events: none;
  z-index: 10;
}
.hud-corner-tl { top: -2px; left: -2px; border-width: 3px 0 0 3px; }
.hud-corner-tr { top: -2px; right: -2px; border-width: 3px 3px 0 0; }
.hud-corner-bl { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; }
.hud-corner-br { bottom: -2px; right: -2px; border-width: 0 3px 3px 0; }

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */

.hud-header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  padding-bottom: 15px;
  margin-bottom: 5px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-emblem-wrapper {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--neon-blue);
  border-radius: 50%;
  padding: 4px;
  background: rgba(0, 240, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-emblem {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.5));
}

.header-text {
  display: flex;
  flex-direction: column;
}

.org-title {
  font-family: var(--font-cyber);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.sub-title {
  font-family: var(--font-cyber);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--neon-blue);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
  text-transform: uppercase;
  margin-top: 1px;
}

.accent-gold {
  color: var(--neon-gold);
  text-shadow: 0 0 8px rgba(255, 170, 0, 0.5);
}

.control-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* HUD Buttons */
.hud-btn {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid var(--neon-blue);
  border-radius: 4px;
  color: var(--neon-blue);
  font-family: var(--font-cyber);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.1);
}

.hud-btn:hover {
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  text-shadow: 0 0 5px var(--neon-blue);
  transform: translateY(-1px);
}

.hud-btn:active {
  transform: translateY(1px);
}

.hud-btn .icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Audio Toggle On/Off classes */
.hud-btn.audio-on {
  color: var(--neon-gold);
  border-color: var(--neon-gold);
  background: rgba(255, 170, 0, 0.08);
  box-shadow: 0 0 8px rgba(255, 170, 0, 0.15);
}
.hud-btn.audio-on:hover {
  background: rgba(255, 170, 0, 0.2);
  box-shadow: 0 0 15px rgba(255, 170, 0, 0.4);
  text-shadow: 0 0 5px var(--neon-gold);
}

.menu-btn {
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 34px;
  padding: 7px;
}

.burger-bar {
  width: 20px;
  height: 2px;
  background-color: var(--neon-blue);
  transition: all 0.3s ease;
}

.menu-btn:hover .burger-bar {
  background-color: #fff;
  box-shadow: 0 0 8px var(--neon-blue);
}

/* Telemetry Status block */
.telemetry-block {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 240, 255, 0.15);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 3px;
}

.grid-dot {
  width: 5px;
  height: 5px;
  background: rgba(0, 240, 255, 0.2);
  border-radius: 50%;
}

.grid-dot.active {
  background: var(--neon-blue);
  box-shadow: 0 0 6px var(--neon-blue);
}

.telemetry-content {
  display: flex;
  flex-direction: column;
}

.tel-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
}

.tel-value {
  font-size: 0.75rem;
  color: var(--neon-blue);
}

/* ==========================================================================
   SIDEBAR READOUT PANELS
   ========================================================================== */

.hud-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
}

.tel-panel {
  background: rgba(0, 10, 20, 0.4);
  border: 1px solid rgba(0, 240, 255, 0.12);
  border-left: 3px solid var(--neon-blue);
  border-radius: 2px;
  padding: 12px;
  font-family: var(--font-mono);
  box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.02);
}

.panel-header {
  font-size: 0.75rem;
  font-family: var(--font-cyber);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--neon-blue);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.panel-body {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(226, 241, 255, 0.85);
}

.scrolling-tel-item {
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.highlight-blue {
  color: var(--neon-blue);
  font-weight: bold;
}

.highlight-green {
  color: var(--neon-green);
  text-shadow: 0 0 5px rgba(57, 255, 20, 0.4);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.stat-label {
  color: rgba(226, 241, 255, 0.55);
}

.stat-val {
  font-weight: 600;
}

/* Radar Hud (Right Panel) */
.radar-hud {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, rgba(0,0,0,0.5) 100%);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 5px;
  box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.radar-hud::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 240, 255, 0.2);
}

.radar-hud::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 240, 255, 0.2);
}

.radar-sweep {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: conic-gradient(from 0deg, rgba(0, 240, 255, 0.3) 0deg, rgba(0, 240, 255, 0) 120deg);
  border-radius: 50%;
  transform-origin: center;
  animation: sweep 4s linear infinite;
}

.radar-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--neon-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-blue);
  opacity: 0;
}

.dot-1 {
  top: 30%;
  left: 70%;
  animation: radar-blip-1 4s linear infinite;
}

.dot-2 {
  top: 65%;
  left: 25%;
  animation: radar-blip-2 4s linear infinite;
}

@keyframes sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes radar-blip-1 {
  0%, 30% { opacity: 0; }
  31% { opacity: 1; }
  50% { opacity: 0.1; }
  100% { opacity: 0; }
}

@keyframes radar-blip-2 {
  0%, 65% { opacity: 0; }
  66% { opacity: 1; }
  85% { opacity: 0.1; }
  100% { opacity: 0; }
}

/* ==========================================================================
   CENTER MAIN AREA (Orbital rings, Emblem, System Under Maintenance)
   ========================================================================== */

.hud-main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Central Emblem Rotating Rings */
.central-emblem-system {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.orbit-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-rings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ring {
  fill: none;
  stroke: var(--neon-blue);
  stroke-width: 1.5px;
  transform-origin: center;
}

.ring-outer {
  stroke-width: 1px;
  opacity: 0.35;
  animation: rotate-cw 50s linear infinite;
}

.ring-middle {
  stroke: var(--neon-gold);
  stroke-width: 2px;
  opacity: 0.5;
  animation: rotate-ccw 35s linear infinite;
}

.ring-inner {
  stroke-width: 1.5px;
  opacity: 0.7;
  animation: rotate-cw 20s linear infinite;
}

.ring-guide {
  stroke-width: 0.5px;
  stroke-dasharray: 4 4;
  opacity: 0.2;
}

/* Eagle Emblem */
.eagle-center-wrapper {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(0,0,0,0.4) 75%);
  border: 1px solid rgba(0, 240, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 25px rgba(0, 240, 255, 0.1);
}

.glowing-eagle {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  animation: eagle-pulse-anim 5s ease-in-out infinite;
}

/* Extra decorative glow rings */
.hud-glow-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.08;
}

.ring-glow-blue {
  width: 270px;
  height: 270px;
  border: 3px solid var(--neon-blue);
  box-shadow: 0 0 35px var(--neon-blue), inset 0 0 35px var(--neon-blue);
  animation: pulse-glow-slow 6s infinite;
}

.ring-glow-gold {
  width: 210px;
  height: 210px;
  border: 2px dashed var(--neon-gold);
  animation: rotate-cw 80s linear infinite;
}

@keyframes rotate-cw {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate-ccw {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes eagle-pulse-anim {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5)) drop-shadow(0 0 20px rgba(0, 240, 255, 0.3)) brightness(1);
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 18px rgba(0, 240, 255, 0.8)) drop-shadow(0 0 30px rgba(255, 170, 0, 0.4)) brightness(1.15);
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5)) drop-shadow(0 0 20px rgba(0, 240, 255, 0.3)) brightness(1);
  }
}

@keyframes pulse-glow-slow {
  0%, 100% { opacity: 0.04; transform: scale(1); }
  50% { opacity: 0.09; transform: scale(1.02); }
}

/* Maintenance Typography */
.maintenance-info {
  text-align: center;
  width: 100%;
}

.maintenance-heading {
  font-family: var(--font-cyber);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--neon-blue);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.6), 0 0 25px rgba(0, 240, 255, 0.2);
  margin-bottom: 8px;
}

.restoration-stat {
  font-family: var(--font-cyber);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 12px;
}

/* ==========================================================================
   PROGRESS BAR SECTION
   ========================================================================== */

.progress-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 15px auto;
  gap: 4px;
}

.bar-edge {
  width: 6px;
  height: 24px;
  border: 1px solid rgba(0, 240, 255, 0.4);
  background: rgba(0, 240, 255, 0.08);
}

.bar-edge-left {
  border-right: none;
  border-radius: 4px 0 0 4px;
}

.bar-edge-right {
  border-left: none;
  border-radius: 0 4px 4px 0;
}

.progress-bar-inner {
  flex-grow: 1;
  height: 24px;
  border: 1px solid rgba(0, 240, 255, 0.4);
  background: rgba(4, 12, 24, 0.6);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.progress-bar-inner canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.maintenance-subtitle {
  font-family: var(--font-cyber);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--neon-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 8px rgba(255, 170, 0, 0.3);
}

.warning-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-gold);
  animation: warning-pulse 1.2s infinite;
}

@keyframes warning-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.hud-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 240, 255, 0.15);
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(226, 241, 255, 0.5);
  margin-top: 5px;
}

.footer-center {
  letter-spacing: 1px;
  color: rgba(0, 240, 255, 0.4);
}

.footer-right {
  color: var(--neon-blue);
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
}

/* ==========================================================================
   SYSTEM LOGS PANEL (DRAWER)
   ========================================================================== */

.logs-drawer {
  position: absolute;
  top: 0;
  right: -340px;
  width: 340px;
  height: 100%;
  background: rgba(3, 10, 18, 0.96);
  border-left: 2px solid var(--neon-blue);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.95);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.logs-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  background: rgba(0, 240, 255, 0.02);
}

.drawer-title {
  font-family: var(--font-cyber);
  font-size: 0.95rem;
  color: var(--neon-blue);
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.close-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  border-radius: 50%;
}

.drawer-body {
  flex: 1;
  padding: 15px 20px;
  overflow: hidden;
  display: flex;
}

.terminal-container {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 240, 255, 0.1);
  padding: 15px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Custom Scrollbar for terminal logs */
.terminal-container::-webkit-scrollbar {
  width: 5px;
}

.terminal-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

.terminal-container::-webkit-scrollbar-thumb {
  background: var(--neon-blue);
  border-radius: 4px;
}

.terminal-output {
  line-height: 1.5;
  color: #c5e5ff;
}

.terminal-output p {
  margin-bottom: 8px;
  animation: scan-type 0.15s ease-out;
}

.log-time {
  color: rgba(226, 241, 255, 0.4);
  margin-right: 6px;
}

.log-success {
  color: var(--neon-green);
}

.log-warning {
  color: var(--neon-gold);
}

.log-error {
  color: var(--neon-red);
}

@keyframes scan-type {
  from { opacity: 0; transform: translateX(-5px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================================================== */

@media (max-width: 992px) {
  .hud-frame {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto auto;
    padding: 15px;
    height: auto;
    max-height: none;
    overflow-y: auto;
  }

  .dashboard-wrapper {
    width: 98vw;
    height: 98vh;
    max-height: none;
  }

  .hud-sidebar-left {
    grid-row: 2;
    flex-direction: row;
    justify-content: space-between;
  }

  .hud-sidebar-right {
    grid-row: 4;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .radar-hud {
    width: 80px;
    height: 80px;
  }

  .hud-main-content {
    grid-row: 3;
    padding: 15px 0;
  }

  .hud-sidebar .tel-panel {
    flex: 1;
  }
}

@media (max-width: 768px) {
  body {
    overflow-y: auto;
  }

  .dashboard-wrapper {
    height: auto;
    overflow-y: visible;
  }

  .hud-frame {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .hud-sidebar-left, .hud-sidebar-right {
    flex-direction: column;
  }

  .radar-hud {
    display: none;
  }

  .maintenance-heading {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }

  .central-emblem-system {
    width: 250px;
    height: 250px;
  }

  .eagle-center-wrapper {
    width: 130px;
    height: 130px;
  }

  .ring-glow-blue {
    width: 210px;
    height: 210px;
  }

  .hud-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Height based adjustments for small laptop viewports */
@media (max-height: 780px) {
  .dashboard-wrapper {
    height: 94vh;
  }
  .hud-frame {
    padding: 15px 25px;
    gap: 8px;
  }
  .central-emblem-system {
    width: 240px;
    height: 240px;
    margin-bottom: 12px;
  }
  .eagle-center-wrapper {
    width: 130px;
    height: 130px;
  }
  .ring-glow-blue {
    width: 200px;
    height: 200px;
  }
  .ring-glow-gold {
    width: 160px;
    height: 160px;
  }
  .maintenance-heading {
    font-size: 1.45rem;
    letter-spacing: 3px;
    margin-bottom: 4px;
  }
  .restoration-stat {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  .progress-bar-wrapper {
    margin-bottom: 6px;
  }
}

@media (max-height: 640px) {
  .dashboard-wrapper {
    height: 98vh;
  }
  .hud-frame {
    padding: 10px 20px;
    gap: 5px;
  }
  .central-emblem-system {
    width: 180px;
    height: 180px;
    margin-bottom: 5px;
  }
  .eagle-center-wrapper {
    width: 100px;
    height: 100px;
  }
  .ring-glow-blue {
    width: 150px;
    height: 150px;
  }
  .ring-glow-gold {
    width: 120px;
    height: 120px;
  }
  .maintenance-heading {
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 2px;
  }
  .restoration-stat {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
  .progress-bar-wrapper {
    margin-bottom: 4px;
  }
}

