.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.imageContainer {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.image {
  object-fit: cover;
  filter: grayscale(50%) brightness(0.7);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { filter: grayscale(50%) brightness(0.7); }
  50% { filter: grayscale(30%) brightness(0.9); }
}

/* Aura Overlay */
.auraOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.auraRing {
  position: absolute;
  border: 2px solid var(--aura-electric);
  border-radius: 50%;
  opacity: 0;
  animation: expandRing 3s ease-out infinite;
}

.auraRing:nth-child(1) {
  width: 60%;
  height: 60%;
  animation-delay: 0s;
}

.auraRing:nth-child(2) {
  width: 80%;
  height: 80%;
  animation-delay: 1s;
}

.auraRing:nth-child(3) {
  width: 100%;
  height: 100%;
  animation-delay: 2s;
}

@keyframes expandRing {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Scan Line */
.scanLine {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent,
    var(--aura-electric),
    var(--aura-blue),
    var(--aura-electric),
    transparent
  );
  box-shadow: 0 0 20px var(--aura-glow), 0 0 40px var(--aura-glow);
  animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { top: 0; }
  50% { top: calc(100% - 4px); }
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 3px;
  background: var(--aura-electric);
  border-radius: 50%;
  animation: rise linear infinite;
  box-shadow: 0 0 6px var(--aura-electric);
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-400px) scale(0);
    opacity: 0;
  }
}

/* Glitch Effect */
.glitch {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    transparent 0%,
    rgba(74, 158, 255, 0.03) 50%,
    transparent 100%
  );
  animation: glitch 0.3s infinite;
  pointer-events: none;
}

@keyframes glitch {
  0%, 90%, 100% { opacity: 0; }
  92%, 94%, 96%, 98% {
    opacity: 1;
    transform: translateX(2px);
  }
  91%, 93%, 95%, 97%, 99% {
    opacity: 1;
    transform: translateX(-2px);
  }
}

/* Status */
.status {
  text-align: center;
}

.statusText {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.statusDot {
  width: 8px;
  height: 8px;
  background: var(--aura-electric);
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.statusSub {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}
