
body {
    background: #000;
    color: #fff;
    font-family: Helvetica, Arial, system-ui, -apple-system, sans-serif;
}

.site-header {
    background: #000;
    border-bottom: 1px solid #161616;
    padding: 12px 24px;
}

.site-header-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.brand {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.header-actions {
    align-items: center;
    display: flex;
    gap: 1.25rem;
}

.beta-badge {
    border: 1px solid #333;
    border-radius: 4px;
    color: #888;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 2px 8px;
    text-transform: uppercase;
}

.header-link {
    color: #888;
    font-size: 0.9rem;
    text-decoration: none;
}

.header-cta {
    background: #00ff88;
    border-radius: 6px;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.library-nav {
    align-items: center;
    border-bottom: 1px solid #161616;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 24px;
}

.library-nav a {
    color: #777;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.library-nav a:hover,
.library-nav a.active {
    color: #ccc;
}

.nav-sep {
    color: #333;
    font-size: 13px;
}

.biblical-hero {
    background: radial-gradient(circle at top, #161616, #050505 55%, #000);
    border-bottom: 1px solid #222;
    padding: 56px 24px 48px;
    text-align: center;
}

.biblical-kicker {
    color: #777;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.biblical-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 6vw, 4.25rem);
    letter-spacing: -0.05em;
    line-height: 0.95;
    margin: 0 auto;
    max-width: 900px;
}

.biblical-subtitle {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 24px auto 0;
    max-width: 720px;
}

.biblical-container {
    margin: 0 auto;
    max-width: 1120px;
    padding: 32px 24px 72px;
}

.notice {
    background: #080808;
    border: 1px solid #242424;
    border-radius: 12px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 28px;
    padding: 20px;
}

.notice strong {
    color: #fff;
}

.section-heading {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    margin: 36px 0 16px;
}

.text-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.text-card {
    background: #080808;
    border: 1px solid #242424;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 20px;
}

.text-card.featured {
    border-color: #3a3a3a;
}

.text-card h2,
.text-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin: 0 0 8px;
}

.text-meta {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.text-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 16px;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.text-link {
    border: 1px solid #444;
    border-radius: 6px;
    color: #ddd;
    font-size: 0.85rem;
    padding: 0.45rem 0.7rem;
    text-decoration: none;
    transition: all 0.2s;
}

.text-link:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.text-link.secondary {
    border-color: #2d2d2d;
    color: #888;
}

.reader-shell {
    margin: 0 auto;
    max-width: 860px;
    padding: 36px 24px 80px;
}

.reader-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.reader-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0 0 16px;
}

.reader-note {
    border-bottom: 1px solid #222;
    color: #888;
    line-height: 1.7;
    margin-bottom: 32px;
    padding-bottom: 24px;
}

.reader-content {
    color: #ddd;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.08rem;
    line-height: 1.85;
}

.reader-content h2,
.reader-content h3,
.reader-content h4,
.reader-content h5,
.reader-content h6 {
    color: #fff;
    font-family: Helvetica, Arial, system-ui, -apple-system, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 2.5rem 0 1rem;
}

.reader-content h2 {
    border-top: 1px solid #222;
    font-size: 1.8rem;
    padding-top: 2rem;
}

.reader-content p {
    margin: 0 0 1.1rem;
}

.reader-source {
    color: #555;
    font-family: Helvetica, Arial, system-ui, -apple-system, sans-serif;
    font-size: 0.78rem;
    margin: 2rem 0 0.75rem;
}

@media (max-width: 720px) {
    .header-actions {
        gap: 0.75rem;
    }

    .beta-badge {
        display: none;
    }

    .biblical-container,
    .reader-shell {
        padding-left: 18px;
        padding-right: 18px;
    }
}
