:root {
    /* Light Mode Colors */
    --bg-primary: #f5f5f5;
    --bg-secondary: #fff;
    --bg-tertiary: #faf6f4;
    --text-primary: #333;
    --text-secondary: #4a4a4a;
    --text-tertiary: #999;
    --border-color: #e0e0e0;
    --accent-color: #f5a962;
    --accent-hover: #e0954a;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.12);
}

.dark-mode {
    /* Dark Mode Colors */
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #252525;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-tertiary: #808080;
    --border-color: #404040;
    --accent-color: #f5a962;
    --accent-hover: #e0954a;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

