* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0b0d17;
    color: #e8eaf6;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 560px;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.tagline {
    color: #9aa3b2;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.downloads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    color: #fff;
    transition: transform 0.1s ease, opacity 0.1s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.download-button.windows {
    background: #0078d4;
}

.download-button.linux {
    background: #dd4814;
}

.icon {
    font-size: 1.5rem;
    line-height: 1;
}

.instructions {
    text-align: left;
    background: #151929;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.instructions h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.instructions ol {
    padding-left: 1.25rem;
    color: #b0b8c8;
}

.instructions li {
    margin-bottom: 0.5rem;
}

code {
    background: #22263a;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.9em;
}

@media (min-width: 480px) {
    .downloads {
        flex-direction: row;
        justify-content: center;
    }

    .download-button {
        flex: 1;
    }
}
