/* 浅色模式 */
[data-theme="light"] {
    --bg-color: #f5f5f5;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --text-color: #333333;
    --title-color: #222222;
    --muted-color: #888888;
    --border-color: #e0e0e0;
    --primary-color: #d4af37;
}

/* 深色模式 */
[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --card-bg: #242424;
    --header-bg: #1f1f1f;
    --text-color: #cccccc;
    --title-color: #e0e0e0;
    --muted-color: #888888;
    --border-color: #333333;
    --primary-color: #d4af37;
}

/* 传奇暗金模式（默认推荐） */
[data-theme="legend"] {
    --bg-color: #12100d;
    --card-bg: #1a1610;
    --header-bg: #16120b;
    --text-color: #e8e0d0;
    --title-color: #f0d98c;
    --muted-color: #9a8f7a;
    --border-color: rgba(212, 175, 55, 0.2);
    --primary-color: #d4af37;
}
[data-theme="legend"] .post-title {
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}