.sw-push-softask-shell {
  position: fixed;
  inset: 0;
  z-index: 2160;
  pointer-events: none;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
}

.sw-push-softask-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(4, 10, 18, 0.58);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.sw-push-softask-backdrop[hidden] {
  display: none !important;
}

.sw-push-softask {
  position: relative;
  width: min(360px, calc(100vw - 28px));
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(188, 228, 255, 0.22);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(16, 29, 49, 0.98), rgba(7, 14, 26, 0.97));
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.42);
  pointer-events: auto;
  animation: sw-push-softask-float 5.2s ease-in-out infinite;
}

.sw-push-softask-glow {
  position: absolute;
  inset: -18% auto auto -12%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(120, 218, 255, 0.24), transparent 72%);
  filter: blur(4px);
  opacity: 0.9;
  animation: sw-push-softask-glow 4.6s ease-in-out infinite;
}

.sw-push-softask-content {
  position: relative;
  padding: 18px 18px 16px;
  color: #eef5ff;
}

.sw-push-softask-eyebrow {
  color: rgba(142, 223, 255, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sw-push-softask-title {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 800;
}

.sw-push-softask-copy {
  margin: 10px 0 0;
  color: rgba(232, 241, 255, 0.78);
  font-size: 13px;
  line-height: 1.58;
}

.sw-push-softask-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.sw-push-softask-enable,
.sw-push-softask-later {
  min-height: 42px;
  border-radius: 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.sw-push-softask-enable {
  flex: 1 1 auto;
  padding: 0 16px;
  border: 1px solid rgba(188, 228, 255, 0.28);
  color: #eef5ff;
  background: linear-gradient(135deg, rgba(105, 197, 255, 0.28), rgba(92, 232, 188, 0.24));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 14px 28px rgba(0,0,0,0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.sw-push-softask-later {
  flex: 0 0 auto;
  padding: 0 14px;
  border: 1px solid rgba(188, 228, 255, 0.16);
  color: rgba(234, 244, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, background 160ms ease;
}

.sw-push-softask-enable:hover,
.sw-push-softask-enable:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(188, 228, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 18px 34px rgba(0,0,0,0.26);
}

.sw-push-softask-later:hover,
.sw-push-softask-later:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

@keyframes sw-push-softask-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes sw-push-softask-glow {
  0%, 100% {
    opacity: 0.66;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@media (max-width: 640px) {
  .sw-push-softask-backdrop {
    padding: 14px;
  }

  .sw-push-softask {
    width: 100%;
  }
}
