:root {
    /* Main Brand Colors */
    --primary-color-lighter: #4a6d4e !important;
    --primary-color: #354e38 !important; /* Forest Green */
    --primary-color-hover: #bd6236; /* Terracotta */
    --primary-text-color: #f2f2f2;
    --primary-dark-color: #1a241b;
    
    /* Secondary & Accents */
    --secondary-lighter-color: #2d382e;
    --input-dark-color: #121813;
    --terracotta-solid: #bd6236;
    --terracotta-dark: #8e4928;
    
    /* Gradients */
    --golden-gradient: linear-gradient(to bottom, #bd6236, #8e4928);
    --golden-solid: #bd6236;
    --gold-dark-solid: #8e4928;
    
    /* Layout Elements */
    --card-dark: #1e261f;
    --sidebar-active-color: #141a15;
    
    --login-big-gradient: linear-gradient(
        90deg,
        rgba(189, 98, 54, 0.15) 0%,
        rgba(53, 78, 56, 0.4) 31%,
        var(--background-950) 100%
    );
    
    --login-mobile-gradient: linear-gradient(
        180deg,
        rgba(189, 98, 54, 0.4) 0%,
        rgba(53, 78, 56, 0.5) 20%,
        rgba(26, 36, 27, 0.8) 45%,
        rgba(13, 13, 13, 1) 100%
    );

    /* Neutral & Background Tones */
    --text: hsl(30, 20%, 92%);
    --background-50: #f4f5f4;
    --background-100: #e3e6e3;
    --background-200: #c2c9c2;
    --background-300: #a1ada1;
    --background-400: #809180;
    --background-500: #5f755f;
    --background-600: #4a5c4a;
    --background-700: #354e38; /* Matches Primary Green */
    --background-800: hsl(130, 10%, 12%);
    --background-900: hsl(130, 10%, 10%);
    --background-950: #0d0f0d;
    
    /* Special Logic Tones */
    --primary-oso: #7a947d;
    --secondary-oso: #354e38;
    --accent: #bd6236; /* Terracotta */
}