:root {
    --text-blue-color-active: #00efff;
    --text-blue-color-active-glow: rgba(100, 255, 255, .7);
    --text-blue-color-inactive: #00e0f0;
    --text-blue-color-inactive-glow: rgba(90, 240, 240, .5);
    --text-white-color-active: #faffff;
    --text-white-color-active-glow: rgba(255, 255, 255, .8);
    --text-white-color-inactive: #e9eeee;
    --text-white-color-inactive-glow: rgba(233, 238, 238, .6);
    --frame-color-active: #00efff;
    --frame-color-active-glow: rgba(100, 255, 255, 1);
    --frame-color-inactive: #00e0f0;
    --frame-color-inactive-glow: rgba(95, 245, 245, .8);
    --button-color-active: #00efff;
    --button-color-active-glow: rgba(100, 255, 255, .7);
    --button-color-inactive: #00e0f0;
    --button-color-inactive-glow: rgba(90, 240, 240, .5);
    --button-color-disabled: #444;
    --button-color-disabled-glow: rgba(64, 64, 64, .1);
    --error-color-active: #c02791;
    --error-color-active-glow: rgba(213, 49, 161, 0.8);
    --error-color-inactive: #b02080;
    --error-color-inactive-glow: rgba(189, 39, 137, 0.7);
    --success-color-active: #00ff50;
    --success-color-active-glow: rgba(80, 255, 90, 0.8);
    --success-color-inactive: #00e035;
    --success-color-inactive-glow: rgba(50, 235, 70, 0.7);
}

::selection {
    text-shadow: 0 0 7px #111;
    color: #111;
    background-color: rgba(90, 240, 240, .5);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;

    will-change: background-position;
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent 3px
    );
    animation: scanlines 0.2s infinite linear;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(3px); }
}

body {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    background-color: #000;
    height: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;

}

main {
    margin-top: 60px;
    padding: 0 0 0 10px;
    flex: 1;
}

h1 {
    font-size: 5rem;
    font-weight: bold;
    line-height: 0;
    color: var(--text-white-color-inactive);
    text-shadow: 4px 4px 2px black, 0 0 5px var(--text-white-color-inactive-glow);
}
h2 {
    font-size: 4rem;
    font-weight: normal;
    line-height: 0;
    color: var(--text-white-color-inactive);
    text-shadow: 4px 4px 2px black, 0 0 10px var(--text-white-color-inactive-glow);
}
h3 {
    font-size: 2rem;
    font-weight: normal;
    line-height: 0;
    color: var(--text-white-color-inactive);
    text-shadow: 4px 4px 2px black, 0 0 10px var(--text-white-color-inactive-glow);
}
p {
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 0;
    color: var(--text-white-color-inactive);
    text-shadow: 4px 4px 2px black, 0 0 10px rgba(255, 255, 255, .7);
}
ul.dash {
    list-style: none;
    margin-left: 0;
    padding-left: 1em;
}
ul.dash > li:before {
    display: inline-block;
    content: "-";
    width: 1em;
    margin-left: -1em;
}
li {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1;
    color: var(--text-white-color-inactive);
    text-shadow: 4px 4px 2px black, 0 0 10px rgba(255, 255, 255, .7);
}
.consolas {
    font-family: Consolas, monaco, monospace;
}
.online {
    color: var(--success-color-active);
    text-shadow: 4px 4px 2px black, 0 0 10px var(--success-color-active-glow);
}
.offline {
    color: var(--error-color-active);
    text-shadow: 4px 4px 2px black, 0 0 10px var(--error-color-active-glow);
}
p.consolas {
    font-family: Consolas, monaco, monospace;
    font-size: 1.25rem;
}
a {
    color: var(--text-blue-color-inactive);
    text-decoration: none;
    text-shadow: 4px 4px 2px black, 0 0 10px var(--text-blue-color-inactive-glow);
}
a:hover, a:visited:hover{
    color: #9ba8d1;
    transition: background-color 0.2s;

}
a:visited {
    color: #8270ea;
}

button {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    background-color: #111;
    cursor: pointer;
    padding: 5px 10px;


    border: 2px solid var(--button-color-inactive);
    color: var(--text-white-color-inactive);
    text-shadow: 3px 3px 2px black, 0 0 5px var(--text-white-color-inactive-glow);
    box-shadow: 0 0 5px var(--button-color-inactive-glow), 0 0 5px var(--button-color-inactive-glow) inset;

    transition: all .2s;
}
button:hover {
    box-shadow: 0 0 10px var(--button-color-active-glow), 0 0 5px var(--button-color-active-glow) inset;
    border: 2px solid var(--button-color-active);
    color: var(--text-white-color-active);
    text-shadow: 2px 2px 2px black, 0 0 10px var(--text-white-color-active-glow);
}
button.disabled {
    cursor: default;
    box-shadow: 0 0 10px var(--button-color-disabled-glow), 0 0 5px var(--button-color-disabled-glow) inset;
    border: 2px solid var(--button-color-disabled);
    color: var(--text-white-color-inactive);
    text-shadow: 2px 2px 2px black, 0 0 10px var(--text-white-color-inactive-glow);
}
button.disabled:hover {
    box-shadow: 0 0 10px var(--button-color-disabled-glow), 0 0 5px var(--button-color-disabled-glow) inset;
    border: 2px solid var(--button-color-disabled);
    color: var(--text-white-color-inactive);
    text-shadow: 2px 2px 2px black, 0 0 10px var(--text-white-color-inactive-glow);
}

input {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    padding: 0.25rem;
    font-size: 1rem;
    text-shadow: 2px 2px 2px black, 0 0 8px var(--text-white-color-inactive-glow);
    box-shadow: 0 0 5px var(--button-color-inactive-glow), 0 0 5px var(--button-color-inactive-glow) inset;
    border: 2px solid var(--button-color-inactive);
    border-radius: 0;
    background-color: #0a0a0a;
    color: #dfefff;
    transition: all .2s;
}
input:focus {
    outline: none;
    box-shadow: 0 0 10px var(--button-color-active-glow), 0 0 5px var(--button-color-active-glow) inset;
    text-shadow: 2px 2px 2px black, 0 0 10px var(--text-white-color-active-glow);
    border: 2px solid var(--frame-color-active);
}
input.invalid {
    border-color: #b02080;
}
input::placeholder {
    color: #7b8ea6;
    text-shadow: 2px 2px 2px black, 0 0 4px;
}
input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
}

.hidden {
    display: none;
}

.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background-color: #222;
    margin: 10% auto;
    padding: 1.25rem;
    border-radius: 0;
    border: 2px solid var(--button-color-inactive);
    box-shadow: 0 0 10px var(--button-color-active-glow), 0 0 5px var(--button-color-active-glow) inset;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.danger-button {
        background-color: #111;
        color: var(--text-white-color-inactive);
        padding: 10px 20px;
        border: 2px solid var(--error-color-inactive);
        font-size: 1em;
        cursor: pointer;
        text-shadow: 3px 3px 2px black, 0 0 5px var(--text-white-color-inactive-glow);
        box-shadow: 0 0 5px var(--error-color-inactive-glow), 0 0 5px var(--error-color-inactive-glow) inset;
        transition: all 0.2s;
    }
    .danger-button:hover {
        border: 2px solid var(--error-color-active);
        text-shadow: 3px 3px 2px black, 0 0 5px var(--text-white-color-active-glow);
        box-shadow: 0 0 8px var(--error-color-active-glow), 0 0 8px var(--error-color-active-glow) inset;
    }

@keyframes flicker {
    0%, 19.7%, 20.3%, 23.7%, 24.3%, 54.7%, 55.3%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.4;
    }
}

@keyframes flicker1 {
    0%, 29.7%, 30.3%, 35.7%, 36.3%, 54.7%, 55.3%, 79.7%, 85.3%, 88.7%, 89.3%, 100% {
        opacity: 1;
    }
    30%, 36%, 55%, 80%, 85%, 89% {
        opacity: 0.4;
    }
}

.neon-text {
    animation: flicker 10s infinite;
}
.neon-text1 {
    animation: flicker1 10s infinite;
}

.neon-text:nth-of-type(1) {
    animation-delay: 0s;
    animation-duration: 10.1s;
}
.neon-text:nth-of-type(2) {
    animation-delay: 3s;
    animation-duration: 10.1s;
}
.neon-text:nth-of-type(3) {
    animation-delay: 7s;
    animation-duration: 10.2s;
}
.neon-text1:nth-of-type(1) {
    animation-delay: 8s;
    animation-duration: 10.4s;
}
.neon-text1:nth-of-type(2) {
    animation-delay: 9.5s;
    animation-duration: 10.7s;
}

.center-body {
    width: 100%;
    align-self: center;
    left: calc(50% - 600px);
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
}

.right-body {
    width: 100%;
    align-self: flex-end;
    margin-top: 40px;
    margin-bottom: 40px;
}

.retro-box-wrapper {
    position: relative;
}

.frame-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px var(--frame-color-inactive-glow));
    z-index: 2;
    pointer-events: none;
}

.x4-frame {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: var(--frame-color-inactive);
    clip-path: polygon(
        50% 0%,
        calc(100% - 21px) 0%,
        100% 21px,
        100% calc(100% - 21px),
        calc(100% - 21px) 100%,
        21px 100%,
        0% calc(100% - 21px),
        0% 21px,
        21px 0%,
        50% 0%,
        50% 3px,
        22px 3px,
        3px 22px,
        3px calc(100% - 22px),
        22px calc(100% - 3px),
        calc(100% - 22px) calc(100% - 3px),
        calc(100% - 3px) calc(100% - 22px),
        calc(100% - 3px) 22px,
        calc(100% - 22px) 3px,
        50% 3px
    );
}

.x4-retro-box-info {
    position: relative;
    background: #111;
    color: var(--text-white-color-inactive);
    padding: 2rem;
    text-align: center;
    clip-path: polygon(
        20px 0%,
        calc(100% - 20px) 0%,
        100% 20px,
        100% calc(100% - 20px),
        calc(100% - 20px) 100%,
        20px 100%,
        0% calc(100% - 20px),
        0% 20px
    );
    z-index: 1;
}

.x1lc-frame {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;

    background: var(--frame-color-inactive);
    clip-path: polygon(
        0% 0%,
        0% calc(100% - 21px),
        21px 100%,
        100% 100%,
        100% calc(100% - 3px),
        22px calc(100% - 3px),
        3px calc(100% - 22px),
        3px 0%
    );
}

.x1l-retro-box-info {
    position: relative;
    background: #111;
    color: var(--text-white-color-inactive);
    padding: .5rem .5rem 1rem 1rem;
    text-align: center;
    clip-path: polygon(
        0% 0%,
        0% calc(100% - 21px),
        21px 100%,
        100% 100%,
        100% 0%
    );
    z-index: 1;
}

.x1rc-frame {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;

    background: var(--frame-color-inactive);
    clip-path: polygon(
        0% 100%,
        calc(100% - 21px) 100%,
        100% calc(100% - 21px),
        100% 0%,
        calc(100% - 3px) 0%,
        calc(100% - 3px) calc(100% - 22px),
        calc(100% - 22px) calc(100% - 3px),
        0% calc(100% - 3px)
    );
}

.x1r-retro-box-info {
    position: relative;
    background: #111;
    color: var(--text-white-color-inactive);
    padding: .5rem .5rem 1rem 1rem;
    text-align: center;
    clip-path: polygon(
        0% 0%,
        0% 100%,
        calc(100% - 21px) 100%,
        100% calc(100% - 21px),
        100% 0%
    );
    z-index: 1;
}

.x2er-frame {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;

    background: var(--frame-color-inactive);
    clip-path: polygon(
        50% 0%,
        100% 0%,
        100% 100%,
        21px 100%,
        0% calc(100% - 21px),
        0% 21px,
        21px 0%,
        50% 0%,
        50% 3px,
        22px 3px,
        3px 22px,
        3px calc(100% - 22px),
        22px calc(100% - 3px),
        100% calc(100% - 3px),
        100% 3px,
        50% 3px
    );
}

.x2er-retro-box-info {
    position: relative;
    background: #111;
    color: var(--text-white-color-inactive);
    padding: .5rem .5rem 1rem 1rem;
    text-align: center;
    clip-path: polygon(
        20px 0%,
        100% 0%,
        100% 100%,
        20px 100%,
        0% calc(100% - 20px),
        0% 20px
    );
    z-index: 1;
}

.x1ur-frame {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;

    background: var(--frame-color-inactive);
    clip-path: polygon(
        50% 0%,
        calc(100% - 21px) 0%,
        100% 21px,
        100% 100%,
        21px 100%,
        0% 100%,
        0% 0%,
        50% 0%,
        50% 3px,
        3px 3px,
        3px calc(100% - 3px),
        calc(100% - 3px) calc(100% - 3px),
        calc(100% - 3px) 22px,
        calc(100% - 22px) 3px,
        50% 3px
    );
}

.x1ur-retro-box-info {
    position: relative;
    background: #111;
    color: var(--text-white-color-inactive);
    padding: 1rem 1rem .5rem .5rem;
    text-align: center;
    clip-path: polygon(
        0% 0%,
        0% 100%,
        100% 100%,
        100% 21px,
        calc(100% - 21px) 0%
    );
    z-index: 1;
}


.x2eb-frame {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: var(--frame-color-inactive);
    clip-path: polygon(
        50% 0%,
        calc(100% - 21px) 0%,
        100% 21px,
        100% 100%,
        calc(100% - 3px) 100%,
        calc(100% - 3px) 22px,
        calc(100% - 22px) 3px,
        22px 3px,
        3px 22px,
        3px 100%,
        0% 100%,
        0% 21px,
        21px 0%
    );
}

.x2eb-retro-box-info {
    position: relative;
    background: #111;
    color: var(--text-white-color-inactive);
    text-align: center;
    clip-path: polygon(
        50% 0%,
        calc(100% - 20px) 0%,
        100% 20px,
        100% 100%,
        0% 100%,
        0% 20px,
        20px 0%,
        50% 0%
    );
    z-index: 1;
}
