Global styles in Svelte let you write CSS that affects the entire page, not just one component. You do this by using the <style global> tag inside a Svelte component. When the browser reads this, it applies those styles everywhere. For example, setting the body background color or font family inside <style global> changes the look of all components and page content. If you omit 'global', styles only apply inside that component. This is useful to keep styles isolated. Global styles are usually placed in the root component so all parts of the app share them. This way, you can set fonts, colors, or layout rules once and have them everywhere.