/* Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Mali", sans-serif; font-size: 11px; outline: none; border: none; } /* Root Variables */ :root { --resolution-multiplier: 1; } /* HTML and Body Base */ html { background-color: #000; color: #fff; min-width: 1024px; } body { min-height: 100vh; overflow-x: hidden; position: relative; } /* Element Styles */ hr { height: 1px; background: #fff; } a:visited { color: #fff; } img { -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; } /* Video Overlay */ #video-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #000; opacity: 0.35; z-index: -99; } /* Layout Structure */ #body-wrapper { position: relative; z-index: 1; width: 1000px; margin: 0 auto; } #content-wrapper { display: flex; } /* Sidebar and Main Content */ #left-sidebar { width: 200px; border-top: 1px solid #fff; border-top-left-radius: 14px; } #main-content { width: 580px; padding: 0 20px; border-top: 1px solid #fff; } #right-sidebar { width: 200px; border-top: 1px solid #fff; }