:root {
    /* 預設: 潮州紅 (Red Theme) */
    --primary-color: #8B0000;
    --secondary-color: #fff;
    --accent-color: #D4AF37;
    --text-color: #333;
    --subtext-color: #666;
    --bg-color: #F9F7F2;
    --button-bg-color: #D4AF37;
    --button-text-color: #8B0000;
    --danger-color: #FF6347;
    --container-width: 1200px;
    --header-height: 70px;
    --border-radius: 8px;
    --font-main: 'Noto Sans TC', sans-serif;
    --font-serif: 'Noto Serif TC', serif;
}

/* 紫色主題 (透過 body class="theme-purple" 切換) */
body.theme-purple {
    --primary-color: #800080;
    --accent-color: #FFD700;
    --text-color: #800080;
    --bg-color: #faf0e6;
    --button-bg-color: #FFD700;
    --button-text-color: #800080;
    --danger-color: #8B0000;
}