:root {
    --bg-color: #1a1e23;
    --text-color: #e0e0e0;
    --accent-color: #4a90e2;
    --secondary-bg: #2c3440;
    --footer-text: #8a8a8a;
    --border-color: #3e4451;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-weight: 300;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 300;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-weight: 400;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.screenshot img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

ul {
    padding-left: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
}

pre {
    background-color: var(--secondary-bg);
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    font-size: 0.9rem;
}

code {
    background-color: var(--secondary-bg);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: monospace;
}

pre code {
    padding: 0;
    background-color: transparent;
}

.install-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 600px) {
    .install-options {
        grid-template-columns: 1fr;
    }
}

.source {
    text-align: center;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.download-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--accent-color);
    color: var(--bg-color) !important;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none !important;
    transition: background-color 0.2s;
}

.download-button:hover {
    background-color: #5da2f5;
    text-decoration: none;
}

footer {
    text-align: center;
    margin-top: 4rem;
    color: var(--footer-text);
    font-size: 0.8rem;
}
