




@import url("https://fonts.googleapis.com/css2?family=Science+Gothic:wght@100..900&display=swap"); /* important font */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap"); /* body font */

:root {
    --site-background: #241107; /* dark brown */
    --content-background: #3B2011; /* pale brown */
    --muted-background: #54321F; /* light brown */
    --content-borders: #80623B; /* pale gold */
    --body-text: #BAA78D; /* off-white */
    --important-text: #687F82; /* cyan */
}

.pageicon {
    background-color: var(--muted-background);
    width: 100%;
    aspect-ratio: 1/1;
    margin: auto;
    outline-style: double;
    outline-color: var(--important-text);
    outline-width: 5px;
}

.sidenav {
    height: 100%;
    width: 150px;
    position: fixed;
    padding: 10px;
    background-color: var(--content-background);
    overflow-x: hidden;
    z-index: 1;
    outline-style: double;
    outline-color: var(--content-borders);
    outline-width: 5px;
}

.sidenav p {
    font-family: "Science Gothic", sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-size: 15px;
    text-align: left;
    color: var(--body-text);
    display: block;
}

.sidenav hr {
    color: var(--important-text);
}

.sidenav a {
    font-family: "Science Gothic", sans-serif;
    font-weight: 400;
    padding: 5px;
    text-decoration: none;
    font-size: 15px;
    color: var(--body-text);
    display: inline;
}

.sidenav a:hover {
    color: var(--important-text);
}

.main {
    display: flex;
    flex-direction: column;
    margin-left: 185px;
    gap: 15px;
}

body {
    font-family: "Noto Sans", sans-serif;

    background-color: var(--site-background);
    color: var(--body-text);

    display: flex;
    flex-direction: column;
    gap: 15px;

    font-size: 15px;
}

.content {
    background-color: var(--content-background);
    width: 100%;
    height: auto;
    outline-style: double;
    outline-color: var(--content-borders);
    outline-width: 5px;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

a {
    color: var(--important-text);
}

h1 {
    margin-top: 0px;

    font-family: "Science Gothic", sans-serif;

    color: var(--important-text);

    font-size: 30px;
}

h2 {
    margin-top: 5px;

    font-family: "Science Gothic", sans-serif;

    color: var(--important-text);

    font-size: 25px;
}

h3 {
    margin-top: 5px;

    margin-bottom: 5px;

    font-family: "Science Gothic", sans-serif;

    color: var(--important-text);

    font-size: 20px;
}

.header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    height: 350px;

    background-color: var(--muted-background);
    background-image: url(banner.png);

    outline-style: double;
    outline-color: var(--content-borders);
    outline-width: 5px;
}

.tab-content {
    background-color: var(--content-background);
    padding: 10px;
    outline-style: double;
    outline-color: var(--content-borders);
    outline-width: 5px;
    height: 600px;
    overflow-x: hidden;
    display: none;
    flex-direction: column;
}

.tab-content.active {
    display: block;
}

.tab-menu {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.tab-btn {
    background-color: var(--content-background);

    font-weight: bold;

    outline-style: double;
    outline-color: var(--content-borders);
    outline-width: 5px;
    height: 80px;
    border: none;
}

.tab-btn h2 {
    margin-top: 20px;
    color: var(--content-borders);
}

.tab-btn.active {
    background-color: var(--muted-background);
}

.tab-btn.active h2 {
    color: var(--body-text);
}

.split-content {
    display: flex;
    gap: 15px;
}

.split-content-T2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.statbar {
    width: 100%;
    height: 25px;
}

.music-player {
    background: var(--content-background);
    height: 100%;
    width: 100%;
    font-family: "Noto Sans", sans-serif;
    display: inline-block;
    color: var(--body-text);
}

.music-list {
    height: 100%;
    overflow-y: scroll;
    background: var(--content-background);
    padding: 2px;
    font-size: 13px;
    font-family: "Noto Sans", sans-serif;
}

.music-track {
    padding: 4px;
    cursor: pointer;
    transition: background 0.1s;
}

.music-track:hover {
    background: var(--muted-background);
}

.music-track.active {
    color: var(--important-text);
    background: var(--muted-background);
    font-weight: bold;
}

.music-controls {
    display: flex;
    background: var(--muted-background);
    padding: 6px;
}

.music-btn {
    background: var(--muted-background);
    border: none;
    color: var(--important-text);
    cursor: pointer;
    flex: 1;
    margin: 0 2px;
    font-weight: bold;
    font-size: 11px;
    padding: 4px 0;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--site-background);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-box {
    background-color: var(--content-background);
    padding: 30px;
    width: 50%;
    text-align: center;
    outline-style: double;
    outline-color: var(--content-borders);
    outline-width: 5px;
}

#closePopupBtn {
    background-color: var(--muted-background);
    color: var(--important-text);
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    cursor: pointer;
    outline-style: double;
    outline-color: var(--content-borders);
    outline-width: 5px;
    font-family: "Science Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}

.tab-content-T2 {
    background-color: var(--content-background);
    padding: 10px;
    overflow-x: hidden;
    display: none;
    flex-direction: column;
}

.tab-content-T2.active {
    display: block;
}

.tab-menu-T2 {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.tab-btn-T2 {
    background-color: var(--content-background);
    font-weight: bold;
    height: 80px;
    border: none;
}

.tab-btn-T2 h2 {
    margin-top: 20px;
    color: var(--content-borders);
}

.tab-btn-T2.active {
    background-color: var(--muted-background);
}

.tab-btn-T2.active h2 {
    color: var(--body-text);
}








































