.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 40px;
  max-width: 640px;
}

.divider {
  margin: 48px auto;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
}

.footer {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.footer span {
  opacity: 0.4;
  margin: 0 12px;
}

/* Shared glow link/button base styles */
.glow-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--fg);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(120, 40, 200, 0.08) 100%);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.05),
    0 4px 24px -4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 16px;
  font-weight: 500;
}

.glow-link::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.glow-link:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(120, 40, 200, 0.12) 100%);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.1),
    0 8px 32px -4px rgba(168, 85, 247, 0.25),
    0 4px 16px -2px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.glow-link:hover::before {
  opacity: 1;
}

.glow-link svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-link:hover svg {
  transform: translateX(4px);
}

