/* Velora external stylesheet
   The full standalone fallback CSS is also retained in index.html so the site
   keeps working even when opened directly from a file browser. */

:root {
  --velora-bg: #07070b;
  --velora-panel: #12131c;
  --velora-accent: #7c6cff;
  --velora-text-muted: #a5a5b5;
}

/* Reusable external styles for future pages/components */
.focus-ring:focus-visible {
  outline: 2px solid #9b8eff;
  outline-offset: 3px;
}

.buy {
  letter-spacing: .01em;
  transition: background .2s ease, transform .2s ease;
}

.buy:active, .paid:active, .btn:active {
  transform: scale(.98);
}

.modal.open .payment-box {
  animation: payment-pop .24s ease-out;
}

@keyframes payment-pop {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.success .tick {
  animation: success-tick .45s ease-out both;
}

@keyframes success-tick {
  from { opacity: 0; transform: scale(.45) rotate(-35deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
