@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');

body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0A0A0A;
  color: #F5F0EB;
}

p, li, td, th, blockquote {
  text-align: justify;
}

input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(245, 240, 235, 0.3);
  border-radius: 999px;
  outline: none;
}

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #8B0000;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #F5F0EB;
  box-shadow: 0 2px 6px rgba(139, 0, 0, 0.3);
}

input[type='range']::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #8B0000;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #F5F0EB;
  box-shadow: 0 2px 6px rgba(139, 0, 0, 0.3);
}

.fade-in {
  animation: fadeIn 0.5s ease-out;
}

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

.count-up {
  animation: countReveal 0.6s ease-out;
}

@keyframes countReveal {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.bar-fill {
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F5F0EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
