:root {
    --bg-dark: #050505;
    --sidebar-bg: #0a0a0a;
    --text-main: #e0e0e0;
    --text-dim: #808080;
    --accent: #3b82f6;
    /* Blue */
    --accent-glow: rgba(59, 130, 246, 0.2);
    --border: rgba(255, 255, 255, 0.1);
    --font-mono: 'Fragment Mono', monospace;
    --font-sans: 'Inter', sans-serif;
}

body {
    margin: 0;
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
}

.docs-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.docs-sidebar {
    width: 280px;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--border);
    padding: 30px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.docs-brand {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: white;
    letter-spacing: 1px;
}

.section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-top: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.docs-sidebar a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 0;
    transition: 0.2s;
}

.docs-sidebar a:hover,
.docs-sidebar a.active {
    color: var(--accent);
}

/* Content */
.docs-content {
    flex: 1;
    padding: 60px 80px;
    max-width: 800px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

h2 {
    font-size: 1.5rem;
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

p {
    color: #ccc;
    font-size: 1.05rem;
}

/* Code Blocks */
.code-block {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin: 20px 0;
    white-space: pre-wrap;
    color: #a5b3ce;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.keyword {
    color: #c678dd;
}

.string {
    color: #98c379;
}

.comment {
    color: #5c6370;
}

.command {
    color: #e5c07b;
}

.alert {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--accent);
    padding: 15px 20px;
    border-radius: 4px;
    margin: 30px 0;
    font-size: 0.95rem;
}

.alert .icon {
    display: inline-block;
    background: var(--accent);
    color: white;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    font-family: var(--font-mono);
    line-height: 20px;
}