Why can't browsers read SASS files directly?
Browsers only understand CSS, so SASS must be converted (compiled) into CSS before the browser can apply styles. This is why you never link a .sass or .scss file directly in HTML.
💡 Think of SASS as a recipe book that needs to be turned into a finished dish (CSS) before serving (browser rendering).
If SASS adds features, why do I still see normal CSS in the browser?
Because SASS code is compiled into normal CSS. The browser only sees the final CSS output, not the SASS source code.
💡 SASS is like a tool to write CSS faster and better, but the browser only eats CSS.