/* ============================================================
   躺平计划 · APP推广下载页
   设计：温暖、现代、亲和力，突出AI智能感
   ============================================================ */
:root {
    --bg: #f9f8f5;
    --surface: #fff;
    --fg: #1b1b1f;
    --muted: #6e6e76;
    --border: #e8e6e1;
    --accent: #e0774d;
    --accent-hover: #c9653e;
    --accent-light: #fef5f0;
    --green: #4d7c5e;
    --green-light: #edf4ef;
    --shadow: 0 0 0 1px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.05);
    --shadow-lg: 0 0 0 1px rgba(0,0,0,0.05), 0 8px 32px rgba(0,0,0,0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'PingFang SC', 'Noto Sans SC', system-ui, sans-serif;
    --max-width: 1080px;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--fg);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}

/* ---------- 导航 ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(249,248,245,0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 14px 0;
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-size: 20px;
    font-weight: 650;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo span {
    font-size: 24px;
}
.nav-cta {
    padding: 10px 22px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 590;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--accent-hover);
}
.nav-cta:active {
    transform: scale(0.97);
}

/* ---------- Hero ---------- */
.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 13px;
    font-weight: 590;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
}
.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}
.hero-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
}
.hero-title .highlight {
    color: var(--accent);
}
.hero-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 440px;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.btn-primary {
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    box-shadow: 0 4px 20px rgba(224,119,77,0.28);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 28px rgba(224,119,77,0.35);
}
.btn-primary:active {
    transform: scale(0.97);
}
.btn-secondary {
    padding: 14px 32px;
    background: var(--surface);
    color: var(--fg);
    border: 1.5px solid var(--border);
    border-radius: 28px;
    font-size: 16px;
    font-weight: 590;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
    background: #f5f4f1;
    border-color: #ccc;
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-phone {
    width: 280px;
    aspect-ratio: 662 / 1176;
    height: auto;
    background: #1f1f1f;
    border: 12px solid #1f1f1f;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.18);
    position: relative;
}
.hero-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 20px 60px;
        text-align: center;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-desc {
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .hero-phone {
        width: 240px;
        border-radius: 26px;
        border-width: 10px;
    }
}

/* ---------- 功能卡片区 ---------- */
.features-section {
    background: var(--surface);
    padding: 80px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.features-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.features-headline {
    text-align: center;
    margin-bottom: 52px;
}
.features-headline h2 {
    font-size: 30px;
    font-weight: 650;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.features-headline p {
    color: var(--muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px 20px;
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-light);
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}
.feature-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .feature-card {
        padding: 20px 16px;
    }
    .features-headline h2 {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- 如何工作 ---------- */
.how-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px;
}
.how-headline {
    text-align: center;
    margin-bottom: 52px;
}
.how-headline h2 {
    font-size: 30px;
    font-weight: 650;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.how-headline p {
    color: var(--muted);
    font-size: 16px;
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.how-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.how-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    display: grid;
    place-items: center;
}
.how-step h3 {
    font-size: 17px;
    font-weight: 600;
}
.how-step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    max-width: 240px;
}
@media (max-width: 768px) {
    .how-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .how-headline h2 {
        font-size: 24px;
    }
}

/* ---------- 截图展示 ---------- */
.screenshots-section {
    background: var(--surface);
    padding: 80px 24px;
    border-top: 1px solid var(--border);
    overflow: hidden;
}
.screenshots-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.screenshots-headline {
    text-align: center;
    margin-bottom: 40px;
}
.screenshots-headline h2 {
    font-size: 30px;
    font-weight: 650;
    letter-spacing: -0.02em;
}
.screenshots-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    justify-items: center;
}
@media (max-width: 900px) {
    .screenshots-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .screenshots-scroll {
        grid-template-columns: 1fr;
    }
}
.screenshot-card {
    width: 100%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.screenshot-card .scr-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}
.scr-phone {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 662 / 1176;
    height: auto;
    background: #1f1f1f;
    border: 10px solid #1f1f1f;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.12);
}
.scr-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- 数据信任条 ---------- */
.trust-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.trust-item {
    text-align: center;
}
.trust-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}
.trust-label {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
}

/* ---------- CTA 底部 ---------- */
.cta-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 64px 24px;
    text-align: center;
}
.cta-inner {
    max-width: 560px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-size: 32px;
    font-weight: 650;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.cta-inner p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.55;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .cta-inner h2 {
        font-size: 24px;
    }
}

/* ---------- Footer ---------- */
.footer {
    text-align: center;
    padding: 32px 24px;
    color: var(--muted);
    font-size: 13px;
    border-top: 1px solid var(--border);
}

/* ---------- 弹窗 ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    max-width: 380px;
    width: 90%;
    box-shadow: var(--shadow-lg);
}
.modal-content h3 {
    font-size: 20px;
    font-weight: 650;
    margin-bottom: 8px;
}
.modal-content p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.modal-btn {
    padding: 10px 24px;
    border-radius: 24px;
    border: none;
    font-size: 14px;
    font-weight: 590;
    cursor: pointer;
}
.modal-btn.primary {
    background: var(--accent);
    color: #fff;
}
.modal-btn.secondary {
    background: var(--bg);
    color: var(--fg);
    border: 1px solid var(--border);
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--muted);
}

/* ---------- 顶部导航补充 ---------- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-links a {
    color: var(--fg);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--accent);
}

.global-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(249,248,245,0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 14px 0;
}
.global-nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.global-nav-logo {
    font-size: 20px;
    font-weight: 650;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fg);
    text-decoration: none;
}
.global-nav-logo span {
    font-size: 24px;
}
.global-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.global-nav-links a {
    color: var(--fg);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}
.global-nav-links a:hover {
    color: var(--accent);
}

/* ---------- 副业广场公共页 ---------- */
.sh-list-section,
.sh-detail-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 24px 80px;
}
.sh-list-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.sh-headline {
    text-align: center;
}
.sh-headline h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}
.sh-headline p {
    color: var(--muted);
    font-size: 17px;
}
.sh-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.sh-filter a {
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--fg);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}
.sh-filter a:hover,
.sh-filter a.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.sh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .sh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .sh-grid {
        grid-template-columns: 1fr;
    }
}
.sh-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-decoration: none;
    color: var(--fg);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sh-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.sh-thumb {
    aspect-ratio: 662 / 1176;
    background: #1f1f1f;
    overflow: hidden;
}
.sh-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sh-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    background: var(--bg);
    color: var(--border);
}
.sh-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sh-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.sh-badge {
    background: var(--accent-light);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}
.sh-difficulty {
    font-size: 12px;
    color: var(--muted);
}
.sh-body h3 {
    font-size: 18px;
    font-weight: 650;
    line-height: 1.3;
}
.sh-body p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sh-income {
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
}
.sh-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
}
.sh-empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

/* ---------- 副业详情页 ---------- */
.sh-detail-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sh-back {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.sh-back:hover {
    color: var(--accent);
}
.sh-detail-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.sh-detail-thumb {
    width: 100%;
    max-height: 520px;
    background: #1f1f1f;
    overflow: hidden;
}
.sh-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sh-detail-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.sh-detail-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.sh-detail-body h1 {
    font-size: 28px;
    font-weight: 700;
}
.sh-detail-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 15px;
}
.sh-detail-desc {
    color: var(--fg);
    font-size: 16px;
    line-height: 1.7;
}
.sh-detail-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--fg);
}
.sh-detail-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
}

/* ---------- 管理后台 ---------- */
.admin-login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--bg);
}
.admin-login-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 36px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}
.admin-login-card h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.admin-login-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
}
.admin-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 80px;
}
.admin-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.admin-header h1 {
    font-size: 26px;
    font-weight: 700;
}
.admin-header-actions {
    display: flex;
    gap: 12px;
}
.admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 590;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}
.admin-btn:active {
    transform: scale(0.97);
}
.admin-btn.primary {
    background: var(--accent);
    color: #fff;
}
.admin-btn.primary:hover {
    background: var(--accent-hover);
}
.admin-btn.secondary {
    background: var(--surface);
    color: var(--fg);
    border: 1px solid var(--border);
}
.admin-btn.secondary:hover {
    background: var(--bg);
}
.admin-btn.small {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 18px;
}
.admin-btn.danger {
    background: #fff0ed;
    color: #c94031;
}
.admin-btn.danger:hover {
    background: #ffe5e0;
}
.admin-alert {
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
}
.admin-alert.error {
    background: #fff0ed;
    color: #c94031;
}
.admin-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    text-align: left;
}
.admin-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
}
.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    background: var(--surface);
    color: var(--fg);
    font-family: inherit;
}
.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}
.admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) {
    .admin-form-row {
        grid-template-columns: 1fr;
    }
}
.admin-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.admin-search {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.admin-search input {
    flex: 1;
    min-width: 220px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 24px;
    font-size: 15px;
}
.admin-search input:focus {
    outline: none;
    border-color: var(--accent);
}
.admin-table-wrap {
    overflow-x: auto;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.admin-table th,
.admin-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.admin-table th {
    font-weight: 650;
    color: var(--muted);
    background: var(--bg);
}
.admin-table tbody tr:last-child td {
    border-bottom: none;
}
.admin-actions {
    display: flex;
    gap: 8px;
}
.inline-form {
    display: inline;
}
.status-on {
    color: var(--green);
    font-weight: 600;
}
.status-off {
    color: var(--muted);
}
.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
}
.admin-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.admin-form {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

/* ---------- 后台表单：缩略图上传 + 富文本编辑器 ---------- */
.admin-upload-thumb {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.admin-upload-thumb img {
    max-width: 200px;
    max-height: 150px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--border);
    background: var(--bg);
}
#editor-wrapper {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--surface);
}
#editor-container {
    min-height: 400px;
}

