.era-loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  background-color: #0a0a0a;
  font-family: 'JetBrains Mono', monospace;
}
.era-disc-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.era-disc-glow {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: rgba(59, 130, 246, 0.4);
  border-radius: 50%;
  filter: blur(20px);
  animation: era-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.era-disc-icon {
  width: 48px;
  height: 48px;
  color: #3b82f6;
  animation: era-spin 3s linear infinite;
  position: relative;
  z-index: 10;
}
.era-loader-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: era-pulse 1.5s ease-in-out infinite;
}
@keyframes era-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes era-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}