/**
 * CE Design Tokens — 超哥英语设计令牌基础文件。
 *
 * 定义 CSS 自定义属性（变量），由 CE_Design_Tokens 动态注入。
 * 此文件为静态回退（当 CE_Design_Tokens 不可用或未保存时）。
 */

:root {
	--ce-primary: #1a56db;
	--ce-primary-hover: #1e40af;
	--ce-accent: #10b981;
	--ce-text-primary: #111827;
	--ce-text-secondary: #6b7280;
	--ce-bg-primary: #ffffff;
	--ce-bg-secondary: #f9fafb;
	--ce-font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--ce-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--ce-radius: 8px;

	/* Spacing scale */
	--ce-space-1: 4px;
	--ce-space-2: 8px;
	--ce-space-3: 12px;
	--ce-space-4: 16px;
	--ce-space-5: 24px;
	--ce-space-6: 32px;
	--ce-space-8: 48px;
	--ce-space-10: 64px;

	/* Shadows */
	--ce-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--ce-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
	--ce-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

	/* Transitions */
	--ce-transition: 150ms ease;
	--ce-transition-slow: 300ms ease;
}
