:root {
    --bg-dark: #0f1419;
    --bg-card: #1a2332;
    --accent: #00d4aa;
    --accent-dim: #00a080;
    --text: #e8eaed;
    --text-muted: #8b949e;
    --border: #30363d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    min-height: 100vh;
    color: var(--text);
    padding: 2rem;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Download Section */
.download-section {
    text-align: center;
    margin-bottom: 3rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.download-btn svg {
    width: 24px;
    height: 24px;
}

.download-btn:hover {
    background: var(--accent-dim);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.3);
}

.download-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
}

.guide-link svg {
    width: 20px;
    height: 20px;
}

.guide-link:hover {
    color: var(--text);
}

/* Features */
.features {
    margin-bottom: 3rem;
}

.features h2, .code-example h2, .requirements h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.feature-grid {
    display: grid;
    gap: 1rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Code Example */
.code-example {
    margin-bottom: 3rem;
}

.code-example pre {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-example code {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

/* Requirements */
.requirements {
    margin-bottom: 2rem;
}

.requirements ul {
    list-style: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.requirements li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.requirements li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }

    .intro {
        font-size: 1rem;
    }

    .download-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card {
        flex-direction: column;
        gap: 0.75rem;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }
}
