*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 35%, #faf5ff 70%, #f8fafc 100%);
  z-index: -3;
}

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: -2;
  pointer-events: none;
}

.page-glow--left {
  top: -6rem;
  left: -4rem;
  background: #a78bfa;
}

.page-glow--right {
  bottom: -8rem;
  right: -4rem;
  background: #c4b5fd;
}

.card {
  width: 100%;
  max-width: 28rem;
  padding: 2.25rem 2rem 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 1.5rem;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 24px 48px rgba(91, 33, 182, 0.12);
  text-align: center;
  backdrop-filter: blur(12px);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: #f5f3ff;
  border: 1px solid #e9d5ff;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5b21b6;
}

.card-logo {
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}

.card-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 8px 16px rgba(124, 58, 237, 0.25));
}

.card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card-title {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #5b21b6, #7c3aed, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card-status {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #7c3aed;
}

.card-desc {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #64748b;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.45);
}

.btn--ghost {
  color: #5b21b6;
  border: 1px solid #ddd6fe;
  background: #faf5ff;
}

.btn--ghost:hover {
  background: #f3e8ff;
}

.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a855f7;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

@media (min-width: 480px) {
  .card {
    max-width: 32rem;
    padding: 2.5rem 2.25rem 2.25rem;
  }

  .card-title {
    font-size: 1.85rem;
  }
}
