:root {
    --background: #060206;
    --headline: #fffffe;
    --paragraph: #E5E4E5;
    --button: #ff85fb;
    --button-text: #110B11;

    --stroke: #110B11;
    --main: #E5E4E5;
    --highlight: #fc65f9;
    --secondary: #abd1c6;
    --tertiary: #ff39de;
    --radius: 10px;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0px;
    padding: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    line-height: 1;
    font-family: Poppins, sans-serif;
    color: var(--paragraph);
    user-select: none;
    background-color: var(--background);
    transition: .4s ease;
    display: flex;
    flex-direction: column;
}
div#bg {
    position: fixed;
    opacity: 0.1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition: 1s ease;
    filter:blur(100px);
}

a:link {
    font-weight: 600;
    text-decoration: none;
    color: var(--secondary);
}

a:visited {
    font-weight: 600;
    text-decoration: none;
    color: var(--secondary);
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: var(--background);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--button);
    transition: ease-in 10s
}

.header {
    overflow: hidden;
    background-color: #0e0e0e;
    filter: drop-shadow(0px 4px 8px #000);
    position: fixed;
    width: 100%;
    z-index: 10;
}

.header a {
    font-weight: 100;
    float: left;
    display: block;
    color:var(--main);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    transition: 1s ease;
    animation: SlideInBottom 1s ease;
}

.header a:not(.logo) {
    float:right;
}

.header a.logo {
    font-weight: 1000;
    animation: SlideInLeft 1s .1s ease;
}

.header a:hover {
    color: var(--button);
}

.header a.active {
    color:var(--button);
}

.header .icon {
    display: none;
}

@media screen and (max-width: 600px) {
    .header a:not(:first-child) {
        transition: 1s ease;
        display: none;
    }

    .header a:not(.logo) {
        transition: 1s ease;
        float:left;
    }

    .header a.icon {
        transition: 1s ease;
        float: right;
        display: block;
    }

    .header.responsive {
        transition: 1s ease;
        position: fixed;
    }

    .header.responsive .icon {
        transition: 1s ease;
        position: absolute;
        right: 0;
        top: 0;
    }

    .header.responsive a {
        transition: 1s ease;
        float: none;
        display: block;
        text-align: left;
    }
}
.header .disappear {
    animation: HeaderDisappear .5s ease 1;
    display: none;
}

@keyframes HeaderDisappear {
    0% {
        transform: translateY(0);
    }

    99% {
        transform: translateY(-100%);
    }

    100% {
        display: none;
    }
}

.sidebar.left {
    position: fixed;
    width: 1000px;
    left: 0px;
    top: 100%;
    padding: 10px;
    transform: rotate(270deg) translateX(0%) translateY(0%);
    transform-origin: 0% 0%;
}

div.center {
    position: relative;
    display: block;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    height: auto;
}
div.middle {
    position: relative;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
}

img#bgLogo {
    position: absolute;
    margin-top: -40px;
    height: 400px;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.4;
    z-index: -1;
    animation: LogoIn 3s ease-in-out;
}
@keyframes LogoIn {
    0% {
        transform: translateX(-50%) translateY(-65%);
        opacity: 0;
    } 100% {
        transform: translateX(-50%) translateY(-50%);
        opacity: 0.4;
    }
}

section {
    height: 100vh;
    text-align: center;
}
section#about div {
    word-wrap: normal;
    word-break: keep-all;
}
section#intro {
    height: auto;
    padding-bottom: 70px;
    padding-top: 400px;
}
section#join {
    height: auto;
    padding-top: 100px;
}

#staff {
    padding: 100px 50px;
    background-color: transparent;
    color: white;
}

section#intro,
section#staff {
    flex: 1 0 auto;
}

.staff-layout {
    display: flex;
    gap: 50px;
}

.staff-applications {
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
    animation: FadeIn 1s ease forwards;
    margin-top: 410px;
    margin-left: -390px;
    top: 530px;
}

.staff-applications ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
}

.staff-applications li {
    margin: 12px 0;
}

.staff-applications a {
    text-decoration: none;
    color: var(--main)
    font-weight: 600;
    transition: 0.3s;
}

.staff-applications a:hover {
    color: var(--button)
}

.staff-nav {
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
    animation: FadeIn 1s ease forwards;
}

.staff-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
}

.staff-nav li {
    margin: 12px 0;
}

.staff-nav a {
    text-decoration: none;
    color: var(--main)
    font-weight: 600;
    transition: 0.3s;
}

.staff-nav a:hover {
    color: var(--button)
}

.staff-content {
    flex: 1;
}

.role-desc {
    font-size: 16px;
    color: car(--secondary);
    margin-bottom: 30px;
    text-align: center;
    animation: FadeIn 1s ease forwards;
}

.staff-category {
    margin-bottom: 100px;
    scroll-margin-top: 100px;
}

.staff-category:nth-child(even) .staff-list {
    animation-delay: 0.2s;
}

.staff-category:nth-child(odd) .staff-list {
    animation-delay: 0s;
}

.staff-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    animation: FadeIn 1s ease forwards;
}

.staff-title h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    color: white;
}

.staff-title .bar {
    width: 6px;
    height: 40px;
    border-radius: 4px;
}

.bar.owner {
    background-color: #75e4e2;
}
.bar.manager {
    background-color: #c21518;
}
.bar.administrator {
    background-color: #ac2533;
}
.bar.overseer {
    background-color: #813dbd;
}
.bar.developer {
    background-color: #28075c;
}
.bar.regulator {
    background-color: #00ffc9;
}
.bar.srmod {
    background-color: #c560ff;
}
.bar.mod {
    background-color: #0097ff;
}
.bar.helper {
    background-color: #417be7;
}
.bar.builder {
    background-color: #19d41f;
}
.bar.bugboy {
    background-color: #0e6804;
}

.staff-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding-left: 20px;
    justify-content: 20px;
    padding-top: 20px;
    animation: FadeIn 1s ease forwards;
    opacity: 0;
}

.staff-member {
    text-align: center;
    transform: scale(1);
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.staff-member:active {
    transform: scale(1.2);
}

.staff-member:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.staff-member img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    image-rendering: pixelated;
}

.staff-member p {
    margin-top: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary)
}

.profile-card {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100%;
    background-color: #121212;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
    padding: 30px 20px;
    overflow-y: auto;
    z-index: 9999;
    transition: right 0.4s ease;
}

.profile-card.open {
    right: 0;
}

.profile-card.hidden {
    display: none;
}

.close-profile {
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: var(--button-text);
    color: var(--button);
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 30px;
    border: 0.2vw solid var(--button);
    transition: .3s ease;
}

#profile-content h3 {
    margin-top: 35px;
    font-size: 22px;
    color: var(--highlight);
}

#profile-content p {
    font-size: 16px;
    color: var(--paragraph);
    margin: 8px 0;
    line-height: 0;
}

#profile-content .player-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--button);
    margin-bottom: 10px;
    text-decoration: underline;
}

.player-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: red;
}

.status-dot.online {
  background: limegreen;
}


#profile-content img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    image-rendering: pixelated;
    display: block;
    margin: 20px auto;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer.site-footer {
    position: relative;
    margin-top: 100%; /* 2700px | 80px */
    padding: 30px 0;
    background: rgba(0,0,0,0.9);
    text-align: center;
    color: #fff;
    z-index: 5;
    clear: both;
    flex-shrink: 0;
}

.typing-ip {
  font-family: monospace;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-links {
  margin-top: 12px;
}

.footer-links a {
  margin: 0 12px;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--button);
  transition: .3s ease;
}

button {
    background-color: var(--button-text);
    color: var(--button);
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 30px;
    border: 0.2vw solid var(--button);
    transition: .3s ease;
}
.features:hover {
  animation-play-state: paused;
}

button:hover {
    background-color: var(--button);
    color: var(--button-text);
    border-color: var(--button-text);
    transition: .3s ease;
}

h1 {
    color: var(--headline);
    font-size: xx-large;
}

hr {
    border-top: 5px solid var(--paragraph);
    display: inline-block;
    vertical-align: middle;
    border-radius: var(--radius);
}

div ._ip {
    display: inline-block;
    cursor: pointer;
}
div ._ip .clicked {
    background-color: var(--button);
}

.bg-first {
    background-image: url(./assets/images/prac.png);
}
.bg-two {
    background-image: url(./assets/images/survival.png);
}
.bg-three {
    background-image: url(./assets/images/event.png);
}
.bg-four {
    background-image: url(./assets/images/code.png);
}

@keyframes SlideInBottom {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes SlideInRight {
    0% {
        transform: translateX(10%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes SlideInLeft {
    0% {
        transform: translateX(-10%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes SlideInTop {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}