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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: rgba(255, 255, 255, 0.9);
    min-height: 100vh;
    background-attachment: fixed;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
    height: 10;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-image: url(assets/logo-nobg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 8rem 0 5rem;
    text-align: center;
    background-image: url(assets/hero.webp);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.gradient-text {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.5rem;
    color: #111827;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.download-badge img {
    height: 56px;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.download-badge:hover img {
    opacity: 1;
}

.cta .download-badge img {
    opacity: 0.8;
}

.cta .download-badge:hover img {
    opacity: 1;
}

/* Demo Section */
.demo-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 3rem;
    margin: 4rem auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    backdrop-filter: blur(10px);
}

.demo-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-tab {
    padding: 0.5rem 1rem;
    border: none;
    background: rgba(243, 244, 246, 0.8);
    color: #4b5563;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-tab:hover {
    background: rgba(243, 244, 246, 1);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: #ea580c;
    color: white;
}

.image-slider-container {
    margin: 2rem 0;
}

.image-slider {
    position: relative;
    width: 35%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.2);
}

.demo-image {
    width: 100%;
    height: auto;
    display: block;
}

.demo-image#afterImage {
    position: absolute;
    top: 0;
    left: 0;
    clip-path: inset(0 50% 0 0);
}

.image-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #ea580c;
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
}

.handle-line {
    width: 100%;
    height: 100%;
    background: #ea580c;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #ea580c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.handle-circle::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(-45deg, #ea580c 50%, #f97316 50%);
    border-radius: 50%;
}

.image-slider-handle:hover .handle-circle {
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-weight: 600;
    color: #374151;
}

.slider-label {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.image-container {
    text-align: center;
}

.image-container h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.demo-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.filter-description {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    font-style: italic;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(254, 243, 199, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #ea580c;
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

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

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Filters Showcase */
.filters-showcase {
    padding: 5rem 0;
}

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

.filter-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

.filter-card-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.filter-card-content {
    padding: 1.5rem;
}

.filter-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.filter-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .download-buttons {
    margin-bottom: 0;
}

.cta .download-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.cta .btn-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #1f2937;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(254, 243, 199, 0.5);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: #374151;
    font-size: 1rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #6b7280;
    font-weight: 300;
}

.breadcrumb-link {
    color: #ea580c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #dc2626;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #6b7280;
    font-weight: 500;
}

/* Policy Page Layout */
.policy-content {
    padding: 3rem 0 5rem 0;
    min-height: calc(100vh - 200px);
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(243, 244, 246, 0.8);
}

.policy-header h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.policy-date {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
}

.policy-body {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.policy-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 0.75rem;
}

.policy-section strong {
    color: #1f2937;
    font-weight: 600;
}

.policy-section a {
    color: #ea580c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-content {
    padding: 3rem 0 5rem 0;
    min-height: calc(100vh - 200px);
    display: grid;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.contact-card h1 {
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-email-btn {
    display: inline-block;
    font-size: 1.2rem;
    padding: 1em 2.2em;
    text-decoration: none;
    border-radius: 0.8em;
    font-weight: 600;
    background: linear-gradient(90deg, #ffb26b 0%, #ae60ff 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(50,30,90,0.13);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(50,30,90,0.2);
}

.contact-email-text {
    color: #6b7280;
    margin-top: 1.5rem;
    font-size: 0.98em;
}

.contact-email-text a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-email-text a:hover {
    color: #ea580c;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 1.1rem;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .demo-images {
        grid-template-columns: 1fr;
    }
    
    .demo-section {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }
    
    .image-slider {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .image-slider img {
        max-width: 100%;
        height: auto;
    }
    
    .slider-labels {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .breadcrumb-container {
        margin-top: 70px;
        padding: 0.75rem 0;
    }
    
    .policy-content {
        padding: 2rem 0 3rem 0;
    }
    
    .policy-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.25rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (min-width: 640px) {
    .download-buttons {
        flex-direction: row;
    }
}

/* Share Button Styles */
.share-section {
    position: relative;
    margin-top: 1rem;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.share-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 150px;
}

.share-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.share-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.share-option:hover {
    background: rgba(254, 243, 199, 0.5);
    color: #ea580c;
    transform: translateX(4px);
}

.share-option svg {
    transition: transform 0.2s ease;
}

.share-option:hover svg {
    transform: scale(1.1);
}

/* Hero section specific share button */
.hero .share-button {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .share-button:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* CTA section specific share button */
.cta .share-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta .share-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments for share button */
@media (max-width: 768px) {
    .share-section {
        margin-top: 1.5rem;
    }
    
    .share-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .share-menu {
        min-width: 140px;
    }
    
    .share-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Blog Markdown Prose Styles */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 1em;
  color: #23272f;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: none;
  font-size: 1.13rem;
  line-height: 1.8;
}
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
  color: #18181b;
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.prose h1 { font-size: 2.5rem; }
.prose h2 { font-size: 2rem; }
.prose h3 { font-size: 1.5rem; }
.prose h4 { font-size: 1.2rem; }
.prose h5 { font-size: 1.08rem; }
.prose h6 { font-size: 1rem; }
.prose p {
  color: #23272f;
  margin-bottom: 1.5rem;
  font-size: 1.13rem;
  line-height: 1.8;
}
.prose ul, .prose ol {
  margin-bottom: 1.5rem;
  padding-left: 2.5rem;
  margin-left: 0;
  color: #23272f;
  font-size: 1.13rem;
  list-style-position: outside;
}
.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }
.prose li {
  margin-bottom: 0.7rem;
  color: #23272f;
  line-height: 1.7;
  margin-left: 0;
  text-indent: 0;
}
.prose ul ul, .prose ol ol, .prose ul ol, .prose ol ul {
  margin-bottom: 0.5rem;
  padding-left: 2rem;
}
.prose li strong {
  font-weight: 700;
  color: #18181b;
  font-size: 1.13rem;
}
.prose a {
  color: #1a56db;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.prose a:hover {
  color: #1741a0;
  text-decoration-thickness: 2px;
}
.prose blockquote {
  border-left: 4px solid #8b5cf6;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #444;
  background: #f6f7fa;
  font-size: 1.08rem;
}
.prose code {
  background: #23272f;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'JetBrains Mono', 'Fira Mono', 'Menlo', monospace;
}
.prose pre {
  background: #23272f;
  color: #e1e4e8;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  font-family: 'JetBrains Mono', 'Fira Mono', 'Menlo', monospace;
}
.prose pre code {
  background: none;
  padding: 0;
  color: #e1e4e8;
}
.prose img {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.prose strong {
  font-weight: 700;
  color: #18181b;
}
@media (max-width: 768px) {
  .prose {
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .prose h1 { font-size: 1.5rem; }
  .prose h2 { font-size: 1.25rem; }
  .prose h3 { font-size: 1.1rem; }
}