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

body {
  height: 100vh;
  background: radial-gradient(circle at center, #0b0f12, #050608);
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  color: #d8f6ff;
  overflow: hidden;
}

/* Canvas background */
#web-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
}

/* Animus grid */
.animus-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,220,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,220,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
}

/* Core layout */
.animus-core {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Titles */
.animus-title {
  font-size: 3.6rem;
  letter-spacing: 10px;
  font-weight: 300;
  color: #9fe9ff;
}

.animus-subtitle {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #7aa6b2;
  margin-top: 6px;
}

/* Animus bed */
.animus-bed {
  position: relative;
  width: 320px;
  height: 80px;
  margin-top: 50px;
  border: 1px solid rgba(0,180,220,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 45px rgba(0,180,220,0.7);
  animation: pulse 2.5s infinite;
}

.online {
  color: #9fe9ff;
}

/* Access panel */
.access-panel {
  margin-top: 40px;
  border-left: 2px solid rgba(0,180,220,0.6);
  padding-left: 20px;
  max-width: 480px;
}

/* Flag */
.flag-box {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(5,20,25,0.85);
  border: 1px solid rgba(0,180,220,0.6);
  font-family: "Courier New", monospace;
  letter-spacing: 1px;
  color: #9fe9ff;
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
