body {
  background: radial-gradient(circle at 20% 20%, #102030 0%, #060b14 80%);
  background-attachment: fixed;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #00eaff55, transparent);
  width: 85%;
  border-radius: 999px;
  margin: 40px auto !important;
}
.advantic-gradient {
  background: linear-gradient(90deg, #34F4E9 0%, #4B6CFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.glass {
  backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.006);
  transition: 0.3s;
  padding: 22px !important;
  border: 1px solid rgba(255,255,255,0.08);
}

.glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.15);
}

.title-glow {
  text-shadow: 0 0 25px #00eaff55;
}

.btn-primary {
  background: linear-gradient(90deg, #00eaff, #0fffd8);
  transition: 0.3s;
}

.btn-primary:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

/* -------- КАРУСЕЛЬ -------- */

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.carousel-card {
  min-width: calc((100% - 40px) / 3);
}

@media (max-width: 1024px) {
  .carousel-card {
    min-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 640px) {
  .carousel-card {
    min-width: 100%;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #00eaff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.carousel-btn.left { left: -10px; }
.carousel-btn.right { right: -10px; }
