@font-face {
    font-family: Consolas;
    src: url('fonts/Consolas.woff2');
}

:root {
    --primary-color: #2661df;
    --second-color: #102a63;
    --third-color: #040c1b;
    --fourth-color: #02050c;
}

body {
    background: black;
    background-image: url(images/backdrop.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Consolas', monospace;
    color: white;
    margin: 0;
    padding: 0;
}

.nav-container {
    display: flex;
    position: relative;
    width: 100%;
    background-color: #000000;
}

nav {
    position: relative;
    z-index: 1;
    width: 1200px;
    margin: 0px auto;
    display: flex;
    gap: 10px;
}

nav a {
    flex: 1;
    color: #fff;
    text-align: center;
    line-height: 34px;
    border-bottom: 2px solid #fff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
}

nav a.active {
    border-bottom: 2px solid var(--primary-color);
}

nav a.cs {
    border-bottom: 2px solid gray;
    pointer-events: none;
    color: gray;
    text-decoration: line-through;
}

.nav-container .logo {
    height: 34px;
    width: 100%;
    padding: 0px;
    position: absolute;
}

.footer-container {
    display: flex;
    position: relative;
    width: 100%;
    height: 36px;
    background-color: #000000;
    margin: 0px;
}

.footer-container p {
    text-align: center;
    flex: 1;
    color: #ffffff;
    font-size: 15px;
    position: relative;
    margin: auto;
}

.page {
    display: flex;
    flex-direction: column;
    width: 1200px;
    padding: 5px;
    gap: 5px;
    margin: 0 auto;
}

.container {
    display: block;
    background-color: #000;
    border: 1px solid #000;
    border-radius: 4px;
    margin: 0px;
    padding: 0px;
    box-shadow: 3px 2px 4px 0px rgba(0, 0, 0, 0.6);
    overflow: visible;
    width: 100%;
}

.container .c-head {
    background: linear-gradient(to bottom, #0f2e5e 0%, #0c1e3f 48%, #081730 53%, #081225 100%);
    border: 1px solid #000;
    border-radius: 4px 4px 0px 0px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    height: 35px;
    line-height: 35px;
    vertical-align: middle;
    display: flex;
    padding-right: 2px;
}

.c-head p {
    margin: 0px 10px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    text-overflow: ellipsis;
}

.container .c-body {
    background: var(--third-color);
    background: linear-gradient(to bottom,
    var(--third-color) 0%,
    var(--fourth-color) 100%
    );
    border: 1px solid #000;
    border-radius: 0px 0px 4px 4px;
    box-shadow: inset 0px 0px 0px 2px rgba(255, 255, 255, 0.03);
    margin: 0px;
    padding: 12px;
    max-width: 100%;
    overflow: visible;
}

.container.news .c-body {
    background-color: #111111;
    background: linear-gradient(to bottom,
    #333333 0%,
    #252525 48%,
    #181818 53%,
    #080808 100%
    );
    border-radius: 4px;
    padding: 0px;
}

.container.news .c-body marquee {
    line-height: 35px;
    vertical-align: middle;
    display: flex;
}

.container.news .c-body h3 {
    line-height: 35px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    margin: 0px;
}

.container.news .c-body p {
    line-height: 35px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    margin: 0px;
}

.row {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 5px;
    margin: 0px;
    padding: 0px;
}

.column {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    margin: 0px;
    padding: 0px;
}

.item-list {
    list-style: none;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.item-list a {
    padding: 10px;
    display: flex;
    flex-direction: row;
    height: 200px;
    gap: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.25s;
}

.item-list a:hover {
    transform: translateY(-5px);
    filter: brightness(1.15);
}

.item-details h3 {
    vertical-align: top;
    margin: 0px;
}

.container .button {
    display: block;
    color: white;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(to bottom,
    var(--second-color) 0%,
    var(--third-color) 100%
    );
    border: 1px solid var(--third-color);
    border-radius: 4px;
    box-shadow: inset 0px 0px 0px 2px rgba(255, 255, 255, 0.03);
    margin: 0px;
    padding: 12px;
    max-width: 100%;
    transition: all 0.25s;
}

.container .button:hover {
    border: 1px solid white;
    background: var(--primary-color);
}

.gxme-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0px;
    margin: 0px;
}

.gxme-buttons a {
    padding: 5px;
    margin: 0px;
    background: var(--third-color);
    border: 1px solid #132d53;
    border-radius: 4px;
    box-shadow: inset 0px 0px 0px 2px rgba(255, 255, 255, 0.03);
    color: white;
    text-decoration: none;
    margin: 0px;
    transition: 0.25s;
}

.gxme-buttons a p {
    margin: 0px;
    margin-top: 5px;
}

.gxme-buttons img {
    width: 100%;
    z-index: 1;
    margin: 0px;
}

.gxme-buttons a:hover {
    z-index: 5;
}

.gxme-buttons > a:nth-child(4n+1):hover {
    transform: perspective(900px) rotateY(15deg) scale(1.1);
}

.gxme-buttons > a:nth-child(4n+2):hover {
    transform: perspective(900px) rotateY(10deg) scale(1.1);
}

.gxme-buttons > a:nth-child(4n+3):hover {
    transform: perspective(900px) rotateY(-10deg) scale(1.1);
}

.gxme-buttons > a:nth-child(4n+4):hover {
    transform: perspective(900px) rotateY(-15deg) scale(1.1);
}