/* Modern CSS Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-alt: #f9fafb;
    --gradient-start: #6366f1;
    --gradient-end: #10b981;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu {
    display: none;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gradient-start) 0%, transparent 70%);
    opacity: 0.1;
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto 3rem auto;
    width: 100%;
    max-width: 400px;
    margin-top: 0;
}

.app-downloads-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.app-store-button img,
.play-store-button img {
    height: 44px;
    display: block;
}

.app-store-button:hover img,
.play-store-button:hover img {
    transform: translateY(-2px);
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.primary-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--background-alt);
    color: var(--text-color);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.secondary-button:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat .label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--background-alt);
}

.problem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.problem-image-wrap {
    position: relative;
}

.problem-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.problem-text {
    padding: 0 0.5rem 0 0;
}

.problem-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.problem-text p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.problem-text p:last-child {
    margin-bottom: 0;
}

.problem-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--background-alt);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--background-alt);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--background-alt);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Waitlist Section */
.waitlist {
    padding: 6rem 0;
    background: var(--background);
}

.waitlist-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.waitlist-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.waitlist-form {
    margin-top: 2rem;
}

.waitlist-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.waitlist-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.waitlist-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.form-group button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: var(--background);
}

.community-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.community-cta {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.discord-community-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin: 0 auto;
}

.discord-community-button i.fab.fa-discord {
    font-size: 1.5rem;
}

.community-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
    text-align: center;
    width: 100%;
}

.discord-button {
    background: #5865F2;
    color: white;
}

.discord-button:hover {
    background: #4752C4;
    color: white;
}

/* Supporters Section */
.supporters {
    padding: 6rem 0;
    background: var(--background-alt);
}

.supporters-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.supporter-item {
    flex: 0 1 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dark background for logos with light/white text (e.g. Yale Ventures) */
.supporter-item-dark-bg {
    background: #1e3a5f;
    padding: 1rem 1.5rem;
    border-radius: 0;
}

.supporter-item-dark-bg a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.supporter-item a {
    display: block;
    transition: opacity 0.3s ease;
}

.supporter-item a:hover {
    opacity: 0.8;
}

.supporter-item img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        /* Height of navbar */
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--text-color);
        transition: color 0.3s ease;
    }

    .mobile-menu:hover {
        color: var(--primary-color);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .avatar-video {
        max-width: 400px;
    }

    .gradient-text {
        font-size: 2.2rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.9rem 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .problem-section {
        padding: 3rem 0;
    }

    .problem-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem-image-wrap {
        order: 1;
    }

    .problem-text {
        order: 2;
        padding: 0;
    }

    .problem-heading {
        font-size: 1.5rem;
    }

    .problem-text p {
        font-size: 1rem;
    }

    .features {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .how-it-works {
        padding: 3rem 0;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        padding: 1.2rem;
    }

    .community {
        padding: 3rem 0;
    }

    .supporters {
        padding: 3rem 0;
    }

    .supporters-grid {
        gap: 2rem;
    }

    .supporter-item img {
        max-width: 140px;
        max-height: 60px;
    }

    .community-content h2 {
        font-size: 1.5rem;
    }

    .discord-community-button {
        width: 100%;
        justify-content: center;
    }

    .waitlist {
        padding: 3rem 0;
    }

    .waitlist-content h2 {
        font-size: 1.5rem;
    }

    .waitlist-content p {
        font-size: 1rem;
    }

    .form-group input {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .form-group {
        flex-direction: column;
    }

    .app-downloads {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        max-width: 100%;
    }

    .app-store-button img,
    .play-store-button img {
        height: 38px;
    }

    .blog-listing {
        padding: 6rem 0 4rem;
    }

    .blog-listing .section-header h1 {
        font-size: 1.75rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-teaser {
        padding: 3rem 0;
    }

    .blog-teaser-grid {
        grid-template-columns: 1fr;
        margin-bottom: 1.5rem;
    }

    .blog-teaser-card {
        padding: 1.5rem;
    }

    .blog-teaser-card h3 {
        font-size: 1.125rem;
    }

    .blog-post {
        padding: 6rem 0 4rem;
    }

    .blog-post-title {
        font-size: 1.75rem;
    }

    .blog-post-body h2 {
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.ai-avatar {
    animation: float 6s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.avatar-video {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.2));
    margin-bottom: 2rem;
}

#avatar-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Back link (blog, legal pages) */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-dark);
}

/* Blog listing page */
.blog-listing {
    padding: 8rem 0 6rem;
    min-height: 60vh;
}

.blog-listing .section-header {
    margin-bottom: 3rem;
}

.blog-listing .section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: linear-gradient(135deg, #e8e0f5 0%, #e0f2eb 50%, #d4ede4 100%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.12);
}

.blog-card-meta {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-card h2 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.blog-card h2 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

/* Blog teaser on homepage */
.blog-teaser {
    padding: 6rem 0;
    background: var(--background);
}

.blog-teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0 0 2rem;
}

@media (min-width: 769px) {
    .blog-teaser-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-teaser-card {
    background: linear-gradient(135deg, #e8e0f5 0%, #e0f2eb 50%, #d4ede4 100%);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.08);
}

.blog-teaser-meta {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-teaser-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.blog-teaser-card h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-teaser-card h3 a:hover {
    color: var(--primary-color);
}

.blog-teaser-card p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.blog-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease, gap 0.3s ease;
}

.blog-teaser-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.blog-teaser-cta {
    text-align: center;
}

/* Blog post (single article) */
.blog-post {
    padding: 8rem 0 6rem;
    min-height: 60vh;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-post-header {
    margin-bottom: 2.5rem;
}

.blog-post-date {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-post-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-post-lead {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.65;
}

.blog-post-body {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.blog-post-body p {
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.blog-post-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.blog-post-body h2:first-of-type {
    margin-top: 0;
}

.blog-post-body ul,
.blog-post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-body li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.blog-post-body hr {
    margin: 2.5rem 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}

.blog-post-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.blog-post-body a:hover {
    text-decoration: underline;
}

.blog-post-body strong {
    color: var(--text-color);
    font-weight: 600;
}

.blog-post-body pre {
    background: var(--background-alt);
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    overflow-x: auto;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.blog-post-body code {
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 0.9em;
}

.blog-post-body p code,
.blog-post-body li code {
    background: var(--background-alt);
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    border: 1px solid #e5e7eb;
}

.blog-post-body pre code {
    background: none;
    padding: 0;
    border: none;
}

.blog-post-body blockquote {
    margin: 1.5rem 0;
    padding-left: 1.25rem;
    border-left: 4px solid var(--primary-color);
    color: var(--text-light);
    font-style: italic;
}

.blog-post-body blockquote p {
    margin-bottom: 0.5rem;
}

.blog-post-body blockquote p:last-child {
    margin-bottom: 0;
}

.blog-post-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}