@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

@font-face {
    font-family: 'WapuroMincho';
    /* 注意：路径从 css/ 目录出发，需回退一级到根目录再进入 assets */
    src: url('../assets/fonts/wapuro-mincho.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    color-scheme: light dark;
    --primary-bg: #f9f9f7; 
    --accent-color: #000000;
    --text-main: #222222;
    --text-muted: #666666;
    --border-light: #e0e0e0;
    --card-bg: #ffffff;
    --nav-bg: #ffffff;
    --modal-bg: #ffffff;
    --font-mixed: "Courier New", "Courier", "WapuroMincho", "Hiragino Mincho ProN", serif;
    --font-title: "WapuroMincho", serif;
    --card-radius: 8px;
}

.dark-mode {
    --primary-bg: #0a0a0a; 
    --accent-color: #ffffff;
    --text-main: #dddddd;
    --text-muted: #888888;
    --border-light: #222222;
    --card-bg: #151515;
    --nav-bg: #0a0a0a;
    --modal-bg: #1a1a1a;
}