```html /* FIND this block in your CSS: body.mode-aesthetic::before{ background: linear-gradient(rgba(255,255,255,.56), rgba(255,255,255,.56)), var(--main-bg) center/cover no-repeat; opacity:.78; } REPLACE WITH: */ body.mode-aesthetic::before{ content:""; position:fixed; width:200%; height:200%; top:-50%; left:-50%; pointer-events:none; z-index:-2; background: linear-gradient(rgba(255,255,255,.56), rgba(255,255,255,.56)), var(--main-bg) center/cover no-repeat; transform:rotate(45deg) scale(1.15); opacity:.78; } /* FIND */ .brand img.logo2{ height:34px; object-fit:contain; } /* REPLACE */ .brand img.logo2{ height:34px; object-fit:contain; filter:brightness(0) saturate(100%) invert(46%) sepia(18%) saturate(624%) hue-rotate(292deg); } /* FIND */ .screen-title,.public-title,.login-home{ line-height:1.1; padding-top:.12em; padding-bottom:.06em; } /* REPLACE */ .screen-title,.public-title,.login-home{ line-height:1.25; padding-top:.25em; padding-bottom:.15em; } /* ADD BELOW */ .screen-title-wrap{ overflow:visible; } ```