/* src/modules/oracle/Oracle.css */

.oracle-slot {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.18);
  min-height: 58px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.8);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.oracle--glitch {
  animation: oracleGlitch 520ms linear both;
}

@keyframes oracleGlitch {
  0% { transform: translate3d(0,0,0); text-shadow: none; opacity: 1; }
  10% { transform: translate3d(-1px,0,0); text-shadow: 2px 0 rgba(130,255,210,0.35), -2px 0 rgba(190,230,255,0.25); }
  22% { transform: translate3d(1px,0,0); text-shadow: -2px 0 rgba(255,140,80,0.28), 2px 0 rgba(190,230,255,0.18); }
  45% { transform: translate3d(0,-1px,0); opacity: 0.95; }
  70% { transform: translate3d(0,1px,0); }
  100% { transform: translate3d(0,0,0); text-shadow: none; opacity: 1; }
}

@media (max-width: 620px) {
  .oracle-slot {
    font-size: 12px;
    padding: 10px 12px;
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oracle--glitch {
    animation: none;
  }
}