main {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.logo {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto 1rem;
}
body {
  background: linear-gradient(135deg, #0d0d12, #1e0f33, #0d0d12);
  background-size: 200% 200%;
  animation: shift 20s ease infinite;
}
@keyframes shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta a {
  width: auto;
}
article {
  max-width: 480px;
  margin: 2rem auto 0;
  text-align: left;
  border: 1px solid #a021e0;
  box-shadow: 0 8px 30px rgba(160, 33, 224, 0.25);
}
a[role="button"]:not(.secondary) {
  background: #a021e0;
  border-color: #a021e0;
}
a[role="button"]:not(.secondary):hover {
  background: #b93df5;
  border-color: #b93df5;
}
.cmd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 480px;
  margin: 1.5rem auto;
  padding: 0.75rem 1rem;
  background: #1a0f2e;
  border: 1px solid #a021e0;
  border-radius: 6px;
  font-family: monospace;
  text-align: left;
}
.cmd code {
  background: transparent; /* remove Pico's gray */
  color: #f5f5f5;
  padding: 0; /* Pico also adds padding around code */
}
.cmd button {
  width: auto;
  margin: 0;
  white-space: nowrap;
}

/* 























































Ignore this stuff 



*/

@keyframes chaos-spin {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1.5);
  }
}
.chaos {
  position: fixed;
  top: 50%;
  left: 50%;
  margin: 0;
  z-index: 9999;
  animation: chaos-spin 0.6s linear infinite;
}
.chaos-mode {
  animation: chaos-spin 3s linear infinite;
}
