:root {
    --bbo-color-01: #5297fe;
    --bbo-color-02: #ffffff;
    --bbo-color-03: #acf520;
    --bbo-color-04: #1a1a1a;
}

/* ======================================================= */
/* CUSTOM SCROLLBAR */
/* ======================================================= */
html,
body {
    height: 100%;
    overflow: hidden;
}

#scrollbox {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#scrollbox::-webkit-scrollbar {
    width: 12px;
}

#scrollbox::-webkit-scrollbar-track {
    background: var(--bbo-color-04);
}

#scrollbox::-webkit-scrollbar-thumb {
    background: var(--bbo-color-02);
    border-radius: 10px;
    border: 3px solid transparent;
    background-clip: content-box;
}

/* ======================================================= */
/* TWITCH EMBED */
/* ======================================================= */
#twitch-embed {
    margin: 40px auto 0 auto;
    aspect-ratio: 16 / 9;
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid #ffc8c7;
    box-shadow: 0px 4px 11px #000000;
    padding: 0;
}

.clip.featured {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border: solid 10px #fff;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 0 2em 0;
    box-shadow: 0px 4px 11px #000000;
}

/* ======================================================= */
/* STATS SECTION */
/* ======================================================= */
#stats {
    background: #282b34 url(images/overlay.png);
    color: rgba(255, 255, 255, 0.5);
}

#stats .title {
    background: #282b34 url(images/overlay.png);
    color: #eee;
}

/* ======================================================= */
/* WRAPPER STYLES */
/* ======================================================= */
.wrapper.style1 {
    background: var(--bbo-color-01) url(images/overlay.png);
}

.wrapper.style1 .title {
    background: var(--bbo-color-01) url(images/overlay.png);
}

.wrapper.style2 {
    background: var(--bbo-color-02) url(images/overlay.png);
}

.wrapper.style2 .title {
    background: var(--bbo-color-02) url(images/overlay.png);
}

.wrapper.style3 {
    background: var(--bbo-color-03) url(images/overlay.png);
}

.wrapper.style3 .title {
    background: var(--bbo-color-03) url(images/overlay.png);
}

/* ======================================================= */
/* FOOTER / HEADER EDITS */
/* ======================================================= */
.icon-social-footer {
    font-size: 13px;
    margin-right: 15px;
}

#footer .feature-list section {
    border: 0;
    padding-top: 0;
}

#header-rng-word {
    font-weight: bolder;
    color: var(--bbo-color-03);
    display: inline-block;
}

/* ======================================================= */
/* LOADING SCREEN */
/* ======================================================= */
#loading-screen {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    background: #0a0a0a url(../../images/banner.jpg) center center;
    background-size: cover;
    transform: translateY(0);
    transition: all 0.5s ease !important;
}

.loader-content {
    text-align: center;
    color: white;
    font-family: sans-serif;
}

.loader-content p {
    font-size: 14px;
    opacity: 0.7;
    letter-spacing: 1px;
}

#loading-screen.fade-out {
    opacity: 0;
    transform: translateY(-100%);
}

/* ABOUT-Titelkasten tiefer setzen, damit er nicht in den Header-Text ragt */
#intro > .title {
    margin-bottom: -2.4em !important;
}

/* Mobile passend dazu */
@media screen and (max-width: 736px) {
    #intro > .title {
        top: -1.9em !important;
        margin-bottom: -1.9em !important;
    }
}

