@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&family=Outfit:wght@400;600;700;900&display=swap');

*, ::before, ::after {
  --tw-space-y-reverse: 0;
  --tw-border-style: solid;
}

body {
  font-family: 'Noto Sans TC', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  background: #000;
}

.font-display {
  font-family: 'Outfit', 'Noto Sans TC', ui-sans-serif, system-ui, sans-serif;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-pulse-soft {
  animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-fade-in-up {
  animation: fade-in-up 0.35s ease-out forwards;
}

.pref-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.pref-card:active {
  transform: scale(0.98);
}

.pref-card.selected {
  border-color: rgb(236 72 153) !important;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.15);
  background-color: rgba(0, 0, 0, 0.6);
}

.pref-card.selected .pref-check {
  display: flex;
}

.pref-check {
  display: none;
}

.match-ticker-item {
  animation: fade-in-up 0.35s ease-out forwards;
}
