/* ===== ГЛОБАЛЬНЫЕ ЭФФЕКТЫ ===== */
body {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
}

/* ===== КАРТОЧКИ СЕРВИСОВ ===== */
.service-card {
  position: relative !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Градиентная подсветка при наведении */
.service-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.1),
    transparent
  ) !important;
  transition: left 0.6s ease !important;
}

.service-card:hover::before {
  left: 100% !important;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.02) !important;
  border-color: rgba(139, 92, 246, 0.4) !important;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2), 
              0 0 60px rgba(139, 92, 246, 0.1) !important;
}

/* ===== ИКОНКИ ===== */
.service-icon {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3)) !important;
  transition: transform 0.3s ease !important;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg) !important;
}

/* ===== ЗАГОЛОВКИ ГРУПП ===== */
.service-group-header {
  background: rgba(139, 92, 246, 0.1) !important;
  border-left: 4px solid #8b5cf6 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  margin-bottom: 20px !important;
}

/* ===== ВИДЖЕТЫ ===== */
.widget {
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* ===== СКРОЛЛБАР ===== */
::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2) !important;
  border-radius: 4px !important;
}

::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5) !important;
  border-radius: 4px !important;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7) !important;
}

/* ===== АНИМАЦИЯ ЗАГРУЗКИ ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeIn 0.5s ease-out forwards !important;
}

.service-card:nth-child(1) { animation-delay: 0.1s !important; }
.service-card:nth-child(2) { animation-delay: 0.2s !important; }
.service-card:nth-child(3) { animation-delay: 0.3s !important; }
.service-card:nth-child(4) { animation-delay: 0.4s !important; }