@import url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/variable/woff2/SUIT-Variable.css');
@import url('loadExampleInfo/sourceView.css');

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: url(../../assets/documentBody.png);
}

* {

    margin: 0;
    padding: 0;
    font-family: 'SUIT Variable', 'Arial', sans-serif;
    font-weight: 500;

    box-sizing: border-box;
    position: relative;

}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgb(32, 32, 32);
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
    font-size: 14px;
    color: rgb(177, 152, 152);

    a {
        color: rgb(242, 169, 113);
        font-size: 14px;
    }
}

.footer_left {
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;

    img {
        line-height: 1;
    }
}

/* width */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #222;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #70020c;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #70020c;
}

.title_box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    line-height: 1;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.75);
    word-break: keep-all;
    color: #fff;

}

.navigation-bar {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    min-height: 56px;
    background-color: #202020;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background-color: #333;
}

.nav-button span {
    margin-left: 4px;
}

.nav-button.category-button {
    background: transparent;
}

@media screen and (max-width: 768px) {
    .navigation-bar {
        gap: 8px;
    }

    .nav-button {
        font-size: 12px;
        padding: 6px 12px;
    }
}

.item-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-size: 1.4em;
    color: rgb(221, 132, 80);
    font-weight: 700;
}

.item-description {
    position: absolute;
    top: 96px;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.4;
    font-size: 0.9em;
    color: #a4a7cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-align: center;
    max-width: 1024px;
}

@media screen and (max-width: 480px) {
    .item-description {
        top: 72px;
        left: 0;
        right: 0;
        padding: 0 12px;
        transform: none;
        font-size: 0.8em;
        justify-content: flex-start;
        text-align: left;

    }
}

.labelNormal {
    position: absolute;
    bottom: 0;
    left: 25%;
    transform: translate(-50%, 0);
    color: #fff;
    background: #5b52aa;
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 12px;
    font-size: 12px;
}

.labelEffect {
    position: absolute;
    bottom: 0;
    left: 75%;
    transform: translate(-50%, 0);
    color: #fff;
    background: #5b52aa;
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 12px;
    font-size: 12px;
}
