@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.stencil-text {
  font-family: 'Bebas Neue', cursive;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
}

.header-gradient {
  background: linear-gradient(135deg, #7f1d1d 0%, #1e3a8a 100%);
  border: 2px solid rgba(239, 68, 68, 0.3);
}

.dramatic-number {
  font-family: 'Bebas Neue', cursive;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse-button {
  animation: button-pulse 2s ease-in-out infinite;
}

@keyframes button-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
  }
}

.result-card {
  animation: fadeIn 0.5s ease-in;
}

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

.tip-fade {
  animation: tipFade 5s ease-in-out infinite;
}

@keyframes tipFade {
  0%, 20%, 100% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(to right, #dc2626, #eab308, #22c55e);
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.text-gold {
  color: #ffd700;
}

.border-gold {
  border-color: #ffd700;
}

body {
  background-attachment: fixed;
}