/*
 * ══════════════════════════════════════════════════════════════════════════════
 *  MINIMAL CLEAN — Standard Light Theme
 *  Pure Whites + Slate Grays | Professional & Distraction-Free
 * ══════════════════════════════════════════════════════════════════════════════
 */

body.theme-minimal_clean {
    --bg-surface: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --card-bg: #f8fafc;
    --card-border: 1px solid #e2e8f0;
    --button-bg: #4f46e5;
    --button-text: #ffffff;

    background-color: var(--bg-surface) !important;
    color: var(--text-main) !important;
}

body.theme-minimal_clean .bio-card,
body.theme-minimal_clean .card-base {
    background: var(--card-bg) !important;
    border: var(--card-border) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

body.theme-minimal_clean h1,
body.theme-minimal_clean h2,
body.theme-minimal_clean h3,
body.theme-minimal_clean .font-bold {
    color: var(--text-main) !important;
}

body.theme-minimal_clean p,
body.theme-minimal_clean span,
body.theme-minimal_clean .text-slate-400 {
    color: var(--text-muted) !important;
}

body.theme-minimal_clean .bio-btn,
body.theme-minimal_clean button.bg-indigo-600 {
    background-color: var(--button-bg) !important;
    color: var(--button-text) !important;
}

body.theme-minimal_clean .bg-white\/5 {
    background-color: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.theme-minimal_clean .text-white {
    color: var(--text-main) !important;
}

body.theme-minimal_clean i {
    color: var(--text-main) !important;
}