:root {
    --bg-color: #0a0a0a;
    --text-color: #ededed;
    --text-muted: #888888;
    --box-bg: #111111;
    --border-color: #222222;
    --hover-color: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    width: 100%;
}

.logo-link {
    display: block;
}

.logo {
    height: 24px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 1;
}

.links {
    display: flex;
    gap: 30px;
}

.links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.links a:hover {
    color: var(--hover-color);
}

/* Main Content */
.center-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    color: var(--text-color);
}

/* Minimalist Install Box */
.install-box {
    display: flex;
    align-items: center;
    background-color: var(--box-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 16px 12px 20px;
    margin-bottom: 30px;
    transition: border-color 0.2s ease;
}

.install-box:hover {
    border-color: #444;
}

.install-box code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: #a0a0a0;
    margin-right: 30px;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    padding: 4px;
}

.copy-btn:hover {
    color: var(--text-color);
}

.copy-btn.success {
    color: #27c93f;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.5;
    font-weight: 300;
}

/* Content Pages (Docs/Contributors) */
.page-content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 100px;
    width: 100%;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.doc-section {
    margin-bottom: 50px;
}

.doc-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.doc-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 300;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.tech-card {
    background: var(--box-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 6px;
}

.tech-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}

.tech-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.tech-card code {
    background: #000;
    color: #a0a0a0;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.creator-card {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    border: 1px solid #333;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    border-left: 4px solid #fff;
}

.creator-card h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.creator-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.contributor-list {
    list-style: none;
}

.contributor-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
}

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

.contributor-list strong {
    color: #dedede;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .title {
        font-size: 1.8rem;
    }
    .install-box {
        padding: 12px;
    }
    .install-box code {
        font-size: 0.9rem;
        margin-right: 15px;
    }
}
