*, *::before, *::after {
box-sizing: border-box;
}

body {
margin: 0;
background: var(--cr-bg);
color: var(--cr-text);
font-family: "Inter", sans-serif;
line-height: 1.8;

/* Prevent horizontal overflow */
overflow-x: hidden;

/* Improve text rendering */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

}

img {
max-width: 100%;
height: auto;
display: block;

/* Prevent layout shifts */
object-fit: contain;

}