body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    /* font-family: 'Courier New', Courier, monospace;
     */
    font-family: "Space Mono", monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    flex-direction: column;
    line-height: 32px;
}

button {
  user-select: none;
}

.step {
    max-width: 800px;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.step img.inline {
    height: 20px;
    vertical-align: middle;
    margin: 0 4px;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

a {
    color: white;
    text-decoration: none;
    display: inline-block; /* critical */
    font-weight: bold;
    background: linear-gradient(270deg, #9ED7EA, #BDC3FD, #DAC7FE, #A38DFA);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: iridescent 10s ease infinite;
    position: relative; /* needed for pseudo-element */
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    width: 100%;
    height: 1px;
    opacity: 0.75;
    background: linear-gradient(270deg, #9ED7EA, #BDC3FD, #DAC7FE, #A38DFA);
    background-size: 400% 400%;
    animation: iridescent 10s ease infinite;
}

/* Animation cycling through gradient */
@keyframes iridescent {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.controls button {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 8px 16px;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0px;
}

.controls button:disabled {
    opacity: 0.3;
    cursor: default;
}

.controls button:hover:not(:disabled) {
    background: white;
    color: black;
    }

/* Inline code-like highlight */
.codeinline {
    font-family: 'Courier New', Courier, monospace;
    background: rgba(255, 255, 255, 0.12);
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 1rem;
    color: #fff;
}

/* Block-style code commands */
.codeblock {
    font-family: 'Courier New', Courier, monospace;
    background: rgba(255, 255, 255, 0.10);
    padding: 12px 16px;
    border-left: 3px solid #7E84F6; /* subtle accent */
    margin: 20px 0;
    white-space: pre-wrap;
    text-align: left;
    width: 100%;
    max-width: 800px;
    color: #fff;
    font-size: 1rem;
}

.codeblock, .codeinline {
  user-select: all;
  cursor: pointer;
}

/* Slightly stronger text */
.stronger {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

::selection {
  background: #7E84F6;  /* your gradient color family */
  color: white;
}