body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #020700 0%, #000000 70%);
    color: white;
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: normal;
}

button {
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: normal;
}

.page-wrapper {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
    width: 90%;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero-title {
    font-family: "Courier Prime", monospace;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 0 0 6px rgba(0, 255, 0, 0.3),
                 0 0 13px rgba(0, 255, 136, 0.3);
    background: linear-gradient(90deg, #00ff88, #4df3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero-version {
    font-weight: 400;
    font-size: 0.5em;
    position: relative;
    top: -10px;
    margin-left: 7px;
    -webkit-text-fill-color: white;
}

#hero-subtitle {
    font-weight: 400;
    margin: 0;
    margin-bottom: 1rem;
    color: #888;
    font-size: 1em;
    text-align: center;
    position: relative;
    background: linear-gradient(
        120deg,
      #666 0%,
      #aaa 40%,
      #ffffff 50%,
      #aaa 60%,
      #666 100% );
    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shine 4s linear infinite;
}

@keyframes shine {
  to {
    background-position: -200% center;
  }
}
.hero-btn {
    border: 1px solid white;
    background-color: black;
    color: white;
    padding: 0.4rem 0.9rem;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.hero-btn:hover {
    color: grey;
    border: 1px solid grey;
    text-decoration: underline dotted grey;
}

.footer {
    display: flex;
    gap: 10px;
    padding: 5px 10px;
    color: grey;
    align-self: center;
}