*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 600;
}

.p-0 {
  padding: 0;
}

.m-0 {
  margin: 0;
}

.p-1 {
  padding: 0.25rem;
}

.m-1 {
  margin: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.m-2 {
  margin: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.m-3 {
  margin: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.m-4 {
  margin: 1.5rem;
}

.p-5 {
  padding: 2rem;
}

.m-5 {
  margin: 2rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: #4f46e5;
}

.text-danger {
  color: #ef4444;
}

.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}
.btn-primary {
  background: #4f46e5;
  color: white;
}
.btn-primary:hover {
  opacity: 0.9;
}
.btn-danger {
  background: #ef4444;
  color: white;
}

.card {
  background: #ffffff;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hover-scale {
  transition: transform 0.2s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

/* Fade & Slide */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.slide-up {
  animation: slideUp 0.6s ease forwards;
}

.fade-in,
.slide-up {
  will-change: opacity, transform;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Button Effects */
.btn-glow {
  transition: box-shadow 0.2s ease;
}
.btn-glow:hover {
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.25);
}

.btn-press {
  transition: transform 0.1s ease;
}
.btn-press:active {
  transform: scale(0.97);
}

/* Card Effects */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-glow {
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.card-glow:hover {
  border-color: #4f46e5;
}

/* Attention */
.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/*# sourceMappingURL=vyoma.css.map */
