/* --- CSS Variables --- */
:root {
    --bg-dark: #242629;
    --bg-darker: #1A1C1E;
    --accent-blue: #3B80BF;
    --accent-hover: #4A90CF;
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --border-color: #33363a;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

