/* Platform Template — base styles (sites will override) */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #f5f5f5;
}

/* Navigation */
.nav-bar {
    background: #1a1a2e;
    color: #fff;
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #fff;
}

/* Main content */
.container {
    max-width: 960px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.card {
    background: #fff;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card h2 {
    margin-top: 0;
}

/* Code blocks */
pre {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 0.9rem;
}

code {
    background: #eee;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
}

/* Links */
a {
    color: #2563eb;
}

a:hover {
    color: #1d4ed8;
}
