#nsksad-komplekty-banner {
  box-sizing: border-box;
  margin: 20px 0;
}

#nsksad-komplekty-banner .komplekty-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  min-height: 360px;
  border-radius: 28px;
  background: linear-gradient(to bottom, #BA55D3 0%, #9370DB 25%, #87CEEB 50%, #00BFFF 75%, #1E90FF 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Анимация мягкого переливания (пульсация прозрачности и легкое увеличение) */
@keyframes nsksad-glow-pulse {
  0% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.01); filter: brightness(1.02); }
  100% { opacity: 0.85; transform: scale(1); }
}

#nsksad-komplekty-banner .hero-image {
  width: 35%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  flex: 0 0 auto;
  top: 22px;
  position: relative;
  animation: nsksad-glow-pulse 4s ease-in-out infinite;
}

#nsksad-komplekty-banner .hero-text {
  flex: 1;
  padding: 64px 48px 64px 0;
}

#nsksad-komplekty-banner h1 {
  margin: 0 0 14px 0;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
}

#nsksad-komplekty-banner p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  max-width: 720px;
  opacity: 0.95;
}

#nsksad-komplekty-banner .miniapp-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
}

#nsksad-komplekty-banner .miniapp-qr {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nsksad-komplekty-banner .miniapp-info {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.15;
}

#nsksad-komplekty-banner .miniapp-title {
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 900px) {
  #nsksad-komplekty-banner .komplekty-hero { flex-direction: column; text-align: center; padding: 24px; }
  #nsksad-komplekty-banner .hero-image { width: 70%; margin-bottom: 12px; top: 0; animation: none; }
  #nsksad-komplekty-banner .hero-text { padding: 12px 12px 18px; }
  #nsksad-komplekty-banner h1 { font-size: 30px; }
  #nsksad-komplekty-banner p { font-size: 16px; }
  #nsksad-komplekty-banner .miniapp-badge { position: static; margin-top: 14px; }
}

@media (max-width: 480px) {
  #nsksad-komplekty-banner h1 { font-size: 22px; }
  #nsksad-komplekty-banner p { font-size: 15px; }
  #nsksad-komplekty-banner .hero-image { width: 100%; top: 0; animation: none; }
  #nsksad-komplekty-banner .miniapp-badge { width: 100%; justify-content: center; }
}