:root {
    --bg: #121212;
    --bg-alt: #1a1a1a;
    --text: #eee;
    --muted: #aaa;
    --accent: #c9a227;
    --border: #333;
    --max: 720px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

a {
    color: var(--accent);
}

/* Hero */
.hero {
    padding: 2.5rem 0 1.5rem;
}

.brand-sub {
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--muted);
}

/* Buttons */
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.85;
}

/* Sections */
.page-section {
    padding: 2.5rem 0;
}

.page-section.alt {
    background: var(--bg-alt);
}

.page-section h2 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.page-section h3 {
    font-size: 1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text);
}

.page-section p {
    margin-bottom: 1rem;
    color: var(--muted);
}

.intro {
    margin-bottom: 1.25rem;
}

.screenshot {
    margin-top: 1.5rem;
    text-align: center;
}

.screenshot img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.screenshot figcaption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

/* Team */
.team-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-list li {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.page-section.alt .team-list li {
    background: var(--bg);
}

.team-list img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.team-list strong {
    display: block;
    color: var(--text);
}

.team-list span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Resources */
.link-list {
    list-style: none;
}

.link-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.95rem;
}

.link-list li:last-child {
    border-bottom: none;
}

/* Footer */
.site-footer {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
}
