@import url(https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap);

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #05070c;
  color: #f1f5f9;
  margin: 0;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
.serif {
  font-family: "Playfair Display", serif;
}
.gold-text {
  color: #dfba73;
}
.gold-border {
  border-color: rgba(223, 186, 115, 0.5);
}
.glass-card {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #dfba73;
  border-radius: 50%;
  box-shadow: 0 0 15px #dfba73;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 0 0 22px #dfba73;
  }
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
}
.chart-segment {
  transition:
    stroke-dasharray 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    stroke-dashoffset 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.strategy-active {
  background: rgba(223, 186, 115, 0.15);
  border-color: rgba(223, 186, 115, 0.6);
  color: #dfba73;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: #dfba73;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -9px;
  box-shadow: 0 0 18px #dfba73;
  border: 2px solid #05070c;
}
.spinner {
  border-top-color: #dfba73;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
