html {
    height: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    background: #1a1f2e;
    color: #ffffff;
}

body {
    position: relative;
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a1f2e;
    pointer-events: none;
    z-index: -1;
}

body > * {
    position: relative;
    z-index: 1;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1f2e;
}

::-webkit-scrollbar-thumb {
    background: #2d3748;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a9eff;
}

.background-container {
    display: none;
}