/* ⚪ 极简纯净主题 - 简约至上的设计哲学 */
.theme-minimal {
    color: #1f2937;
    background: #ffffff;
    padding: 40px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    border: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.theme-minimal h1,
.theme-minimal h2,
.theme-minimal h3,
.theme-minimal h4,
.theme-minimal h5,
.theme-minimal h6 {
    color: #111827;
    font-weight: 600;
    position: relative;
    margin: 2.5em 0 1em 0;
}

.theme-minimal h1 {
    font-size: 2.5em;
    text-align: left;
    border: none;
    margin: 0 0 2em 0;
    color: #000000;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.theme-minimal h2 {
    font-size: 1.8em;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5em;
    margin: 2em 0 1em 0;
    font-weight: 600;
}

.theme-minimal h3 {
    font-size: 1.4em;
    color: #374151;
    margin: 1.8em 0 0.8em 0;
}

.theme-minimal h4 {
    font-size: 1.2em;
    color: #4b5563;
    margin: 1.5em 0 0.8em 0;
}

.theme-minimal p {
    line-height: 1.8;
    margin: 1.2em 0;
    color: #374151;
    text-align: left;
}

.theme-minimal blockquote {
    border-left: 3px solid #d1d5db;
    background: none;
    color: #6b7280;
    padding: 0 0 0 1.5em;
    margin: 1.5em 0;
    font-style: italic;
    position: relative;
}

.theme-minimal a {
    color: #1f2937;
    text-decoration: underline;
    text-decoration-color: #d1d5db;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.theme-minimal a:hover {
    text-decoration-color: #1f2937;
}

.theme-minimal strong {
    color: #111827;
    font-weight: 600;
}

.theme-minimal em {
    color: #4b5563;
    font-style: italic;
}

.theme-minimal code {
    background: #f9fafb;
    color: #1f2937;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.9em;
    border: 1px solid #e5e7eb;
}

.theme-minimal .simblock-code-header {
    background: #f9fafb;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.theme-minimal .simblock-code-lang {
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-minimal .simblock-copy-btn {
    background: #ffffff;
    color: #6b7280;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
}

.theme-minimal .simblock-copy-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #374151;
}

.theme-minimal .simblock-code-block {
    border: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: none;
    margin: 1.5em 0;
}

.theme-minimal .simblock-code-block pre {
    background: #ffffff;
    color: #1f2937;
    padding: 20px;
    border: none;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
}

.theme-minimal ul,
.theme-minimal ol {
    padding-left: 2em;
    margin: 1.2em 0;
}

.theme-minimal li {
    margin: 0.5em 0;
    line-height: 1.6;
    color: #374151;
}

.theme-minimal li::marker {
    color: #9ca3af;
}

.theme-minimal table {
    border-collapse: collapse;
    width: 100%;
    margin: 2em 0;
    border: 1px solid #e5e7eb;
}

.theme-minimal th {
    background: #f9fafb;
    color: #111827;
    padding: 12px 16px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.theme-minimal td {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.theme-minimal tr:hover td {
    background: #f9fafb;
}

.theme-minimal hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2em 0;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .theme-minimal {
        padding: 20px;
    }
    
    .theme-minimal h1 {
        font-size: 2em;
    }
    
    .theme-minimal h2 {
        font-size: 1.5em;
    }
    
    .theme-minimal .simblock-code-block pre {
        font-size: 13px;
        padding: 15px;
    }
}