/* public/noticed.css */

.noticed-app {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.noticed-counter {
  position: absolute;
  top: 40px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.noticed-stage {
  width: 100%;
  max-width: 800px;
  padding: 0 24px;
  perspective: 1000px;
}

.noticed-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 100%;
  max-width: 600px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.noticed-card.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.noticed-card.is-past {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.05);
}

.noticed-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--text-primary);
  line-height: 1.5;
  text-shadow: 0 0 30px rgba(206,147,216,0.3); /* using --accent-noticed */
}

.noticed-hint {
  position: absolute;
  bottom: 40px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: hint-pulse 2s infinite ease-in-out;
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.final-card .noticed-text {
  color: var(--accent-noticed);
  font-style: italic;
  text-shadow: 0 0 40px rgba(206,147,216,0.5);
}
