🎯 What you'll practice: The specificity hierarchy and predicting cascade winners.
1-C 2-B 3-B 4-B | 5 = # 6 = . 7 = element, .class, #id, inline style 8 = Green wins — an ID selector (1-0-0) has higher specificity than an element selector (0-0-1) regardless of source order 9 = It overrides the entire specificity system, making future overrides very difficult and hiding the real cascade — relying on it habitually signals unclear CSS architecture | 10 = #submit-btn wins (highest specificity of the three) — to avoid the conflict, use consistent class-based styling only and reserve IDs for JS hooks/anchors, not for styling.