/* Scale entire site to 75% permanently */
body {
  transform: scale(0.75);
  transform-origin: top left;
  width: 133.33%;
  min-height: 133.33vh;
  overflow-x: hidden;
}

/* Custom animations and overrides */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

.timer-bar {
  transition: width 1s linear, background-color 1s ease;
}

/* Custom component classes */
.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem;
}

.btn-primary {
  background: linear-gradient(to right, #9333ea, #7e22ce);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #e5e7eb;
}

/* No Helping Warning */
.no-help-warning {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5);
  border: 4px solid #dc2626;
}

.warning-text {
  color: #7f1d1d;
  text-shadow: 
    2px 2px 0px rgba(255, 255, 255, 0.8),
    4px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.15em;
  font-weight: 900;
  animation: warningPulse 1.5s ease-in-out infinite;
}

.stop-sign-emoji {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  animation: stopSignBounce 1s ease-in-out infinite;
}

/* Bottom Warning (always visible) */
.bottom-scroll-warning {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-top: 4px solid #dc2626;
  border-bottom: 4px solid #dc2626;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5);
}

.bottom-warning-text {
  color: #7f1d1d;
  text-shadow: 
    2px 2px 0px rgba(255, 255, 255, 0.8),
    4px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1em;
  font-weight: 900;
  animation: warningPulse 1.5s ease-in-out infinite;
}

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

@keyframes stopSignBounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-10px) rotate(5deg);
  }
}

