/* BPD GAMING NETWORK - GLOBAL SHELL */

:root {
    --sidebar-width: 210px;
    --sidebar-collapsed-width: 56px;
    --sidebar-icon-width: 50px;
    --sidebar-content-gap: 18px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

html {
    background: #0d0f13;
}

body {
    min-height: 100dvh;
    overflow-x: hidden;
    background: #0d0f13;
    color: #ffffff;
    font-family:
        "Inter",
        "Segoe UI",
        sans-serif;
}

.site-shell {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    min-width: fit-content;
    min-height: 100dvh;
    margin: 0;
    background: transparent;
    box-sizing: border-box;
    isolation: isolate;
}

.site-page {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    min-width: fit-content;
    min-height: 100dvh;
    margin: 0;
    background: transparent;
    box-sizing: border-box;
}