/* Custom styles to complement Tailwind */
:root {
  --shf-primary: #b9271b;
  --shf-secondary: #1f1b2e;
  --shf-accent: #f5e6d3;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #0f0d17;
  color: #f9fafb;
}

body.light-mode {
  background-color: #f8fafc;
  color: #111827;
}

.gradient-text {
  background: linear-gradient(90deg, var(--shf-primary), #e1483b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(185, 39, 27, 0), rgba(185, 39, 27, 0.8), rgba(185, 39, 27, 0));
}

.card-shadow {
  box-shadow: 0 20px 45px -25px rgba(185, 39, 27, 0.65);
}

.blur-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(185, 39, 27, 0.35), rgba(15, 13, 23, 0.95));
  filter: blur(72px);
  pointer-events: none;
}

.spoiler-blur {
  filter: blur(10px);
  transition: filter 0.3s ease;
}

.spoiler-visible {
  filter: none;
}

.collectible-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(15, 13, 23, 0.65);
  border: 1px solid rgba(185, 39, 27, 0.35);
}

body.light-mode .collectible-item {
  background: rgba(248, 250, 252, 0.9);
  border-color: rgba(185, 39, 27, 0.25);
}

#backToTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: none;
}

@media (max-width: 768px) {
  .collectible-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.header-dropdown {
  position: relative;
  margin-top: 0 !important;
  padding-top: 12px;
}

.header-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
}
