html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.font-display {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

::selection {
  background-color: #bae6fd;
  color: #0c4a6e;
}

.feed-entry {
  transition: background-color 0.15s ease;
}

.feed-entry:hover {
  background-color: #f3f0ea;
}

.pill-tag {
  transition: background-color 0.15s ease, color 0.15s ease;
}

.game-icon-frame {
  box-shadow: 0 0 0 1px rgba(12, 74, 110, 0.12);
}

#cookie-banner {
  animation: cookie-rise 0.35s ease;
}

@keyframes cookie-rise {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
