* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }

.app-wrapper {
  min-height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 25%, #2563eb 50%, #3b82f6 75%, #60a5fa 100%);
  font-family: 'Inter', sans-serif;
}

.title-font { font-family: 'Space Grotesk', sans-serif; }

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
.animate-fade-in-delay-1 { animation: fadeIn 0.6s ease-out 0.2s forwards; opacity: 0; }

.btn-red {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  transition: all 0.3s ease;
  color: white;
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.input-field-light {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  color: #1f2937;
}
.input-field-light:focus {
  background: rgba(0, 0, 0, 0.08);
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
