/* 与 web 一致的色系与字体，见 docs/004-App开发说明.md */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Nunito:wght@400;600;700;800&family=Noto+Sans+SC:wght@400;500;600;700&display=swap');

:root {
    --cream: #fdf8f3;
    --cream-dark: #f5ede3;
    --gold: #d4a84b;
    --gold-dark: #b8923f;
    --brown: #8b6914;
    --brown-dark: #5c4a12;
    --text: #3d3d3d;
    --text-light: #666666;
    --white: #ffffff;
    --font-main: 'Noto Sans SC', 'Nunito', sans-serif;
    --font-fun: 'Comic Neue', 'Noto Sans SC', cursive;
    --font-cn: 'Noto Sans SC', sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.3s ease;
}
