:root {
    --bg-primary: #f5f2ea;
    --bg-secondary: #ebe7dd;
    --bg-card: #faf8f3;
    --text-primary: #191919;
    --text-secondary: #686761;
    --text-light: #8d8a82;
    --border: #d9d4c8;
    --accent: #202020;
    --accent-text: #ffffff;
    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.08);
    --transition: 0.25s ease;
}

[data-theme="dark"] {
    --bg-primary: #151515;
    --bg-secondary: #1d1d1d;
    --bg-card: #202020;
    --text-primary: #f3f0e8;
    --text-secondary: #aaa79f;
    --text-light: #7c7973;
    --border: #333333;
    --accent: #f3f0e8;
    --accent-text: #151515;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.25);
}