html, body {
  margin: 0;
  padding: 0;
  background: #0B0B0C;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #C9A227;
  text-decoration: none;
}

button {
  font-family: 'Inter', sans-serif;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 760px) {
  .nav-links { display: none !important; }
  .nav-cta-wrap { display: none !important; }
  .nav-burger { display: flex !important; }
  .nav-mobile { display: flex !important; }
}
