.sync-package-card {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(99, 230, 184, .22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 4%, rgba(99, 230, 184, .18), transparent 34%),
    radial-gradient(circle at 92% 0, rgba(255, 78, 120, .15), transparent 32%),
    rgba(255, 255, 255, .065);
}

.sync-package-card::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 118px;
  height: 118px;
  border: 1px dashed rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.sync-package-head,
.sync-package-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sync-package-head span {
  color: var(--mint);
  font-family: var(--font-cute);
  font-size: 12px;
  font-weight: 400;
}

.sync-package-head strong {
  color: #fff8df;
  font-family: var(--font-cute);
  font-size: 21px;
  font-weight: 400;
}

.sync-package-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sync-package-grid div {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(3, 9, 19, .28);
}

.sync-package-grid b {
  color: #eaf6ff;
  font-family: var(--font-cute);
  font-size: 12px;
  font-weight: 400;
}

.sync-package-grid em {
  color: #fff;
  font-family: var(--font-soft);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.sync-package-actions {
  align-items: stretch;
}

.sync-package-actions button {
  flex: 1;
  min-height: 40px;
  padding: 9px 10px !important;
  font-size: 13px !important;
}

.sync-package-note {
  position: relative;
  z-index: 1;
  color: #bfd1df;
  font-family: var(--font-soft);
  font-size: 12px;
  line-height: 1.5;
}

.sync-package-card.is-fresh {
  animation: syncPackageGlow .58s ease;
}

@keyframes syncPackageGlow {
  0% { transform: translateY(6px); border-color: rgba(255, 225, 122, .62); }
  100% { transform: translateY(0); border-color: rgba(99, 230, 184, .22); }
}

@media (max-width: 390px) {
  .sync-package-grid {
    grid-template-columns: 1fr;
  }

  .sync-package-actions {
    flex-direction: column;
  }
}
