﻿@font-face {
    font-family: 'Nunito Sans';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/nunito-sans-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Nunito Sans';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/nunito-sans-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Nunito Sans';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/nunito-sans-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Philosopher';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/philosopher-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Philosopher';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/philosopher-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Cinzel';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/cinzel-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Cinzel';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/cinzel-700.woff2') format('woff2');
}

:root {
    --gold: #B2A682;
    --gold-light: #BCB48B;
    --gold-dim: #97937D;
    --gold-pale: #ADA990;
    --gray: #8B8B8B;
    --gray-dark: #6A6A6A;
    --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
    --font-nav: 'Philosopher', serif;
    --font-deco: 'Cinzel', 'Trajan Pro', serif;
    --font-num: 'Narcon', Candara, 'Cinzel', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #030303;
    scroll-behavior: smooth;
    scrollbar-color: #4a4436 #0a0a09;
}

::-webkit-scrollbar {
    width: 12px;
    background: #0a0a09;
}

::-webkit-scrollbar-thumb {
    background: #3a352a;
    border: 2px solid #0a0a09;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #56503f;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray);
    background: #030303 url('../img/bg_page.jpg') no-repeat top center;
    overflow-x: hidden;
    min-width: 1280px;
}

img {
    display: block;
}

a {
    text-decoration: none;
    color: var(--gold);
}

.stage {
    position: relative;
    width: 100%;
    min-height: 2205px;
    overflow: hidden;
}

.js .slider,
.js .content-home,
.js .content-page {
    animation: pageIn .5s cubic-bezier(.22, .8, .36, 1) both;
}

.js .stage.page-leave .slider,
.js .stage.page-leave .content-home,
.js .stage.page-leave .content-page {
    animation: pageOut .26s ease-in both;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pageOut {
    to {
        opacity: 0;
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .js .slider, .js .content-home, .js .content-page,
    .js .stage.page-leave .slider,
    .js .stage.page-leave .content-home,
    .js .stage.page-leave .content-page {
        animation: none;
    }
}

.abs, .mainnav, .logo, .header-stats, .join-us,
.user-panel, .vote-coins, .top5-panel,
.stats-panel, .events-panel,
.slider, .content-home, .content-page, .footer {
    position: absolute;
    left: 50%;
}

.nav-toggle, .nav-burger {
    display: none;
}

.mainnav {
    position: fixed;
    margin-left: -803px;
    top: 0;
    width: 1606px;
    height: 170px;
    background: url('../img/nav_bg.png') no-repeat;
    z-index: 40;
}

.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(to bottom,
        rgba(6, 6, 5, 0.92) 0%,
        rgba(6, 6, 5, 0.78) 30%,
        rgba(6, 6, 5, 0.4) 60%,
        rgba(6, 6, 5, 0) 100%);
    z-index: 39;
    pointer-events: none;
}

.mainnav ul {
    list-style: none;
    position: relative;
    height: 100%;
}

.mainnav li {
    position: absolute;
    top: 26px;
    width: 180px;
    text-align: center;
    transform: translateX(-90px);
}

.mainnav li a {
    display: block;
}

.nav-index    { left: 249.5px; }
.nav-register { left: 473px; }
.nav-download { left: 696px; }
.nav-ranking  { left: 918.5px; }
.nav-presentation { left: 1142.5px; }
.nav-support  { left: 1365px; }

.nav-label {
    display: block;
    font-family: var(--font-nav);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.nav-sub {
    display: block;
    margin-top: 3px;
    font-family: var(--font-nav);
    font-weight: 700;
    font-size: 12px;
    color: var(--gray-dark);
}

.mainnav li.active .nav-label {
    color: var(--gold-light);
}

.mainnav li.active::before {
    content: '';
    position: absolute;
    top: -26px;
    left: 50%;
    margin-left: -44px;
    width: 88px;
    height: 2px;
    background: #AC9F7A;
}

.mainnav li a:hover .nav-label {
    color: var(--gold-light);
}

.btn-login, .btn-register, .rank-tab,
.join-us img, .logo img {
    transition: filter .2s;
}

.btn-login:hover, .btn-register:hover,
.rank-tab:hover, .join-us:hover img, .logo:hover img {
    filter: brightness(1.12);
}

.header-video {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2540px;
    height: 856px;
    margin-left: -1270px;
    object-fit: cover;
    object-position: top center;
    z-index: 10;
    pointer-events: none;
    background: #030303;
}

.header-discord {
    position: absolute;
    left: 50%;
    margin-left: -786px;
    top: 14px;
    height: 30px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    background: rgba(12, 11, 9, 0.72);
    border: 1px solid #3a352a;
    border-radius: 4px;
    color: var(--gold);
    font-family: var(--font-nav);
    font-size: 14px;
    letter-spacing: 0.5px;
    z-index: 60;
    transition: border-color .2s, color .2s, background .2s;
}

.header-discord:hover {
    border-color: #5865F2;
    color: #fff;
    background: rgba(88, 101, 242, 0.22);
}

.discord-ico {
    display: block;
}

.lang-select {
    position: absolute;
    left: 50%;
    margin-left: 648px;
    top: 14px;
    width: 138px;
    z-index: 60;
}

.lang-select summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 30px;
    padding: 0 12px;
    background: rgba(12, 11, 9, 0.72);
    border: 1px solid #3a352a;
    border-radius: 4px;
    color: var(--gold);
    cursor: pointer;
    font-family: var(--font-nav);
    font-size: 14px;
    letter-spacing: 1px;
}

.lang-select summary::-webkit-details-marker {
    display: none;
}

.lang-select summary:hover {
    border-color: var(--gold-dim);
    color: var(--gold-light);
}

.lang-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform .2s;
}

.lang-select[open] .lang-caret {
    transform: rotate(180deg);
}

.lang-menu {
    list-style: none;
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    max-height: 340px;
    overflow-y: auto;
    background: rgba(10, 10, 9, 0.97);
    border: 1px solid #3a352a;
    border-radius: 4px;
    padding: 4px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    color: var(--gray);
    font-size: 13px;
}

.lang-menu a:hover {
    background: rgba(178, 166, 130, 0.12);
    color: var(--gold-light);
}

.lang-menu a.active {
    color: var(--gold);
}

.lang-menu .lang-code {
    width: 22px;
    color: var(--gold-dim);
    font-family: var(--font-nav);
}

.lang-menu a:hover .lang-code,
.lang-menu a.active .lang-code {
    color: var(--gold-light);
}

.lang-menu .lang-name {
    font-family: var(--font-body);
}

.logo {
    margin-left: -576px;
    top: 113px;
    z-index: 8;
}

.header-stats {
    margin-left: -611px;
    top: 481px;
    width: 533px;
    height: 167px;
    z-index: 30;
}

.stat-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 158px;
    height: 167px;
    background: url('../img/stat_circle.png') no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-circle-2 { left: 180px; }
.stat-circle-3 { left: 375px; }

.stat-number {
    font-family: var(--font-num);
    font-size: 30px;
    line-height: 30px;
    margin-top: -2px;
    color: var(--gold);
}

.stat-caption {
    font-family: Candara, var(--font-body);
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.join-us {
    margin-left: 332px;
    top: 484px;
    width: 222px;
    height: 200px;
    z-index: 30;
    text-align: center;
}

.join-us img {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.join-title {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    font-family: var(--font-deco);
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

.join-sub {
    position: absolute;
    top: 112px;
    left: 0;
    width: 100%;
    font-family: var(--font-deco);
    font-size: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: 0.2px;
}

.panel-top {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.panel-title {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
}

.user-panel .panel-title {
    font-family: var(--font-nav);
    font-weight: 700;
}

.panel-body {
    position: absolute;
    top: 99px;
    left: 17px;
    width: 292px;
    background: #0F0F0F;
    z-index: 1;
}

.section-bar {
    position: relative;
    margin: 11px -17px 0;
    width: 329px;
    height: 51px;
    background: url('../img/section_bar.png') no-repeat;
    display: flex;
    align-items: center;
    padding-left: 38px;
    gap: 6px;
    color: var(--gold);
}

.section-bar img {
    display: inline-block;
}

.user-panel {
    margin-left: -613px;
    top: 706px;
    width: 329px;
    height: 441px;
    z-index: 25;
}

.user-panel .panel-body {
    height: 343px;
}

.login-form {
    padding: 0 20px;
}

.input-img {
    display: block;
    width: 253px;
    height: 42px;
    margin-top: 7px;
    background: url('../img/input_field.png') no-repeat;
    border: 0;
    outline: none;
    padding: 0 21px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #C8C8C8;
}

.login-form .input-img:first-child {
    margin-top: 0;
}

.input-img::placeholder {
    color: #4C5959;
    opacity: 1;
}

.btn-login {
    display: block;
    width: 174px;
    height: 55px;
    margin: 11px auto 0;
    background: url('../img/btn_login.png') no-repeat;
    border: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    color: #EAE4C6;
    padding-top: 22px;
    padding-left: 4px;
}

.panel-links {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: var(--gray);
}

.panel-links p + p {
    margin-top: 13px;
}

.panel-links a {
    color: var(--gold);
}

.panel-links a:hover {
    text-decoration: underline;
}

.panel-user {
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
    color: var(--gold);
}

.panel-menu {
    list-style: none;
    margin-top: 14px;
    text-align: center;
}

.panel-menu li {
    line-height: 27px;
}

.panel-menu a {
    color: var(--gray);
}

.panel-menu a:hover {
    color: var(--gold);
}

.panel-admin-link {
    color: var(--gold-light) !important;
    letter-spacing: 0.5px;
}

.btn-logout {
    text-align: center;
    margin-top: 16px;
}

.flash {
    margin: 12px 20px 0;
    text-align: center;
    font-size: 13px;
    line-height: 17px;
    color: var(--gold);
}

.flash.error {
    color: #C4705C;
}

.vote-coins {
    margin-left: -608px;
    top: 1130px;
    width: 303px;
    height: 95px;
    z-index: 26;
}

.vote-coins img {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: filter .25s;
}

.vote-coins:hover .vote-banner {
    filter: brightness(1.12);
}

.vote-coins:hover .vote-character {
    filter: brightness(1.08);
}

.vote-coins span {
    position: absolute;
    top: 35px;
    left: 150px;
    font-family: var(--font-num);
    font-size: 30px;
    color: var(--gold-dim);
}

.top5-panel {
    margin-left: -613px;
    top: 1160px;
    width: 329px;
    min-height: 495px;
    z-index: 25;
}

.top5-panel .panel-body {
    top: 78px;
    min-height: 418px;
}

.top5-panel .panel-title {
    top: 41px;
}

.events-panel .panel-body {
    top: 78px;
    min-height: 461px;
}

.events-panel .panel-title {
    top: 40px;
}

.top5-panel .panel-title,
.stats-panel .panel-title,
.events-panel .panel-title {
    font-family: var(--font-body);
    font-weight: 400;
}

.top5-list {
    list-style: none;
    margin: 2px 1px 0;
}

.top5-list li {
    position: relative;
    height: 57px;
    width: 290px;
    display: flex;
    align-items: center;
}

.top5-list li:nth-child(odd) {
    background: url('../img/row_bg.png') no-repeat;
    background-size: 290px 60px;
}

.t5-rank {
    width: 15px;
    margin-left: 15px;
    color: var(--gold-dim);
    letter-spacing: 0.7px;
}

.t5-avatar {
    margin-left: 1px;
}

.t5-name {
    margin-left: 10px;
    color: #FFFFFF;
    letter-spacing: 0.7px;
    flex: 1;
}

.t5-class {
    margin-right: 17px;
}

.t5-flag {
    margin-right: 14px;
}

.t5-level {
    width: 26px;
    margin-right: 12px;
    text-align: right;
    color: var(--gold-dim);
    letter-spacing: 0.7px;
}

.panel-more {
    display: block;
    margin-top: 26px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.7px;
    color: var(--gold-dim);
}

.events-panel .panel-more {
    margin-top: 18px;
}

.panel-more:hover {
    color: var(--gold);
}

.stats-panel {
    margin-left: 286px;
    top: 700px;
    width: 329px;
    min-height: 478px;
    z-index: 25;
}

.stats-panel .panel-top {
    height: 112px;
}

.stats-panel .panel-title {
    top: 71px;
}

.stats-panel .panel-body {
    top: 105px;
    height: 374px;
}

.stats-list {
    margin: 5px 24px 0;
}

.stats-list div {
    display: flex;
    justify-content: space-between;
    line-height: 34px;
}

.stats-list dt {
    color: #939187;
}

.stats-list dd {
    color: var(--gold);
}

.stats-list-2 dt {
    color: var(--gray);
}

.section-bar-2 {
    margin-top: 7px;
}

.stats-list-2 {
    margin-top: -2px;
}

.events-panel {
    margin-left: 286px;
    top: 1160px;
    width: 329px;
    min-height: 538px;
    z-index: 25;
}

.events-list {
    list-style: none;
    margin: 0 1px 0;
}

.events-list li {
    position: relative;
    height: 57px;
    width: 290px;
    display: flex;
    align-items: center;
}

.events-list li:nth-child(odd) {
    background: url('../img/row_bg.png') no-repeat;
    background-size: 290px 60px;
}

.ev-badge {
    position: relative;
    width: 61px;
    height: 58px;
    margin-left: 11px;
    flex-shrink: 0;
}

.ev-badge img {
    position: absolute;
    top: 0;
    left: 0;
}

.ev-days {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 13px;
    color: #FFFFFF;
}

.ev-days small {
    display: block;
    font-size: 11px;
}

.ev-live {
    top: 18px;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: var(--gold-light);
}

.ev-none {
    padding: 18px 24px;
    font-size: 14px;
    color: var(--gray);
}

.account-empty {
    margin: 16px 0 4px;
    text-align: center;
    font-size: 14px;
    color: var(--gray);
}

.support-wrap {
    padding: 82px 35px 46px;
}

.support-wrap .flash {
    margin: 0 0 14px;
}

.support-login-hint {
    color: var(--gold);
}

.ticket-form {
    margin: 18px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.input-select {
    appearance: none;
    cursor: pointer;
}

.input-select option {
    background: #121212;
    color: #C8C8C8;
}

.input-area {
    width: 440px;
    max-width: 100%;
    background: #121212;
    border: 1px solid #2b2b28;
    color: #C8C8C8;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    resize: vertical;
}

.input-area:focus {
    border-color: var(--gold-dim);
}

.ticket-msg {
    margin: 14px 0;
    background: #131312;
    border: 1px solid #221f18;
    padding: 0 0 14px;
}

.ticket-msg.staff {
    border-color: var(--gold-dim);
}

.ticket-msg-head {
    display: flex;
    justify-content: space-between;
    background: #191818;
    padding: 8px 16px;
    margin-bottom: 10px;
}

.ticket-author {
    color: var(--gold);
    font-weight: 700;
}

.ticket-time {
    color: var(--gray);
    font-size: 12px;
}

.ticket-msg p {
    padding: 0 16px;
    line-height: 19px;
    color: #C8C8C8;
}

.ticket-state-pending_response { color: #C4705C; }
.ticket-state-replied { color: var(--gold); }
.ticket-state-closed { color: var(--gray); }

.support-back {
    margin-top: 22px;
    text-align: center;
}

.ev-info {
    margin-left: 12px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    line-height: 14px;
}

.ev-title {
    color: #FFFFFF;
}

.ev-starts {
    color: #B3AE95;
}

.slider {
    margin-left: -307px;
    top: 685px;
    width: 613px;
    height: 353px;
    z-index: 24;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(26px) scale(1.035);
    transition: opacity .8s ease, transform .9s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.slide-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 82px;
    background: rgba(0, 0, 0, 0.812);
    padding: 24px 22px 0;
}

.slide-title {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: var(--gold-light);
}

.slide-text {
    display: block;
    margin-top: 3px;
    font-size: 14px;
    color: var(--gray);
}

.content-home {
    margin-left: -306px;
    top: 1038px;
    width: 612px;
    min-height: 660px;
    background: url('../img/content_box_home.png') no-repeat top center;
    z-index: 24;
}

.content-title {
    position: absolute;
    top: 19px;
    left: 36px;
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
}

.news-list {
    list-style: none;
    padding: 82px 35px 40px;
}

.news-item + .news-item {
    margin-top: 30px;
}

.news-head {
    position: relative;
    height: 33px;
    background: #191818;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px 0 17px;
}

.news-head h3 {
    font-weight: 700;
    font-size: 14px;
    color: var(--gold);
}

.news-age {
    font-size: 14px;
    color: var(--gray);
}

.news-body {
    margin-top: 20px;
    display: flex;
    gap: 8px;
}

.news-thumb {
    flex-shrink: 0;
    margin-left: 3px;
}

.news-text {
    max-width: 400px;
    font-size: 14px;
    line-height: 16px;
    color: var(--gray);
}

.news-text-wide {
    margin-top: 6px;
    max-width: 504px;
    font-size: 14px;
    line-height: 16px;
    color: var(--gray);
}

.news-more {
    display: block;
    margin-top: 19px;
    line-height: 14px;
    text-align: right;
    padding-right: 4px;
    color: var(--gold);
    font-size: 14px;
}

.news-more:hover {
    text-decoration: underline;
}

.content-page {
    margin-left: -306px;
    top: 746px;
    width: 612px;
    min-height: 952px;
    background: url('../img/content_box_page.png') no-repeat top center;
    z-index: 24;
}

.page-headline {
    position: absolute;
    top: 97px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 21px;
    color: var(--gold-pale);
}

.register-form {
    margin-top: 94px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-form .input-img {
    margin-top: 4px;
    width: 253px;
}

.register-form .input-img:first-child {
    margin-top: 0;
}

.register-tos {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 17px;
    color: var(--gold-pale);
}

.btn-register {
    display: block;
    width: 174px;
    height: 55px;
    margin: 38px auto 0;
    background: url('../img/btn_login.png') no-repeat;
    border: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    color: #EAE4C6;
    padding-top: 9px;
}

.download-list {
    list-style: none;
}

.btn-download {
    position: absolute;
    display: block;
    left: 141px;
    width: 329px;
    height: 106px;
}

.download-list li:nth-child(1) .btn-download { top: 122px; }
.download-list li:nth-child(2) .btn-download { top: 236px; }
.download-list li:nth-child(3) .btn-download { top: 350px; }

.btn-download .btn-art {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    transition: filter .2s;
}

.btn-download:hover .btn-art {
    filter: brightness(1.12);
}

.dl-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    pointer-events: none;
}

.dl-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #EAE4C6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
    line-height: 18px;
}

.dl-size {
    display: block;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #C9C0A0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.download-platform {
    position: absolute;
    top: 462px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    font-family: var(--font-nav);
    font-size: 15px;
    letter-spacing: 1px;
}

.sysreq {
    position: absolute;
    top: 508px;
    left: 61px;
    width: 490px;
}

.sysreq-title {
    text-align: center;
    font-family: var(--font-deco);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.sysreq-cols {
    display: flex;
    gap: 18px;
}

.sysreq-col {
    flex: 1;
    border: 1px solid #3a352a;
    border-radius: 4px;
    background: rgba(12, 11, 9, 0.5);
    padding: 12px 14px 14px;
}

.sysreq-tier {
    text-align: center;
    font-family: var(--font-nav);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 1px solid #2c281f;
}

.sysreq-list div {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(58, 53, 42, 0.35);
}

.sysreq-list div:last-child {
    border-bottom: none;
}

.sysreq-list dt {
    color: var(--gold-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.sysreq-list dd {
    color: var(--gray);
    font-size: 11px;
    text-align: right;
}

.sysreq-note {
    margin-top: 14px;
    text-align: center;
    font-size: 11px;
    font-style: italic;
    color: var(--gray-dark);
}

.rank-tabs {
    position: absolute;
    top: 145px;
    left: 135px;
    display: flex;
}

.rank-tab {
    display: block;
    width: 167px;
    height: 45px;
    background: url('../img/tab_inactive.png') no-repeat;
    text-align: center;
    line-height: 40px;
    font-size: 15px;
    color: #FFFFFF;
}

.rank-tab.active {
    background: url('../img/tab_active.png') no-repeat;
    color: #111111;
}

.rank-search {
    position: absolute;
    top: 194px;
    left: 138px;
    width: 326px;
}

.rank-search input {
    width: 326px;
    height: 38px;
    background: url('../img/search_field.png') no-repeat;
    border: 0;
    outline: none;
    padding: 0 40px 0 13px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #C8C8C8;
}

.rank-search input::placeholder {
    color: #3E4949;
    opacity: 1;
}

.rank-search button {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 38px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.rank-search button img {
    margin: 0 auto;
    transition: filter .2s;
}

.rank-search button:hover img {
    filter: brightness(1.3);
}

.rank-table {
    position: absolute;
    top: 247px;
    left: 35px;
    width: 540px;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 14px;
    font-weight: 300;
}

.rank-table thead tr {
    height: 44px;
    background: url('../img/table_header_bar.png') no-repeat;
}

.rank-table th {
    font-weight: 300;
    color: #FFFFFF;
    text-align: left;
}

.rank-table tbody tr {
    height: 38px;
}

.rank-table tbody tr:nth-child(odd) {
    background: url('../img/row_bar.png') no-repeat;
}

.rank-table th:nth-child(1), .rank-table td:nth-child(1) { padding-left: 13px; width: 30px; color: #3E4949; }
.rank-table th:nth-child(2), .rank-table td:nth-child(2) { width: 109px; padding-left: 10px; }
.rank-table td:nth-child(2) { color: var(--gold-pale); }
.rank-table th:nth-child(3), .rank-table td:nth-child(3) { width: 90px; }
.rank-table th:nth-child(4), .rank-table td:nth-child(4) { width: 90px; }
.rank-table th:nth-child(5), .rank-table td:nth-child(5) { width: 75px; }
.rank-table th:nth-child(6), .rank-table td:nth-child(6) { width: 76px; }
.rank-table th:nth-child(7), .rank-table td:nth-child(7) { width: 70px; text-align: right; padding-right: 13px; }
.rank-table td { color: #3E4949; }

.rank-table td:nth-child(2), .rank-table td:nth-child(3), .rank-table td:nth-child(4) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-pagination {
    position: absolute;
    top: 894px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    font-size: 14px;
}

.rank-pagination a, .rank-pagination span {
    color: var(--gold-pale);
}

.rank-pagination .current {
    width: 26px;
    height: 26px;
    background: url('../img/pagination_active.png') no-repeat;
    text-align: center;
    line-height: 26px;
    color: #000000;
}

.account-wrap {
    padding: 82px 35px 46px;
}

.account-wrap .flash {
    margin: 0 0 14px;
}

.account-info {
    margin: 16px 18px 4px;
}

.account-info div {
    display: flex;
    justify-content: space-between;
    line-height: 26px;
}

.account-info dt {
    color: var(--gray);
}

.account-info dd {
    color: var(--gold);
}

.account-form {
    margin: 14px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.account-form .input-img {
    margin-top: 0;
}

.account-form .btn-login {
    margin-top: 8px;
}

.account-wrap .news-head + .account-form {
    margin-top: 20px;
}

.verify-msg {
    text-align: center;
    max-width: 560px;
    margin: 12px auto 0;
    line-height: 1.6;
}
.verify-hint {
    opacity: .75;
    font-size: 14px;
    margin-top: 8px;
}
.account-newsletter {
    text-align: center;
    margin: 12px 0 30px;
}
.account-nl-status {
    font-weight: 700;
    margin-bottom: 4px;
}
.account-nl-status.on {
    color: #7FA579;
}
.account-nl-status.off {
    color: #B2A682;
}
.account-nl-desc {
    max-width: 520px;
    margin: 0 auto 12px;
    opacity: .8;
    line-height: 1.55;
}
.account-newsletter .account-form {
    margin: 0;
}

.rank-table.in-flow {
    position: static;
    margin: 15px auto 0;
    width: 540px;
}

.rank-table.in-flow th:last-child,
.rank-table.in-flow td:last-child {
    text-align: right;
    padding-right: 13px;
}

.simple-content {
    padding: 150px 60px 0;
    text-align: center;
}

.simple-content h2 {
    font-weight: 400;
    font-size: 21px;
    color: var(--gold-pale);
}

.simple-content p {
    margin-top: 26px;
    font-size: 14px;
    line-height: 22px;
    color: var(--gray);
}

.simple-content .btn-register {
    margin-top: 45px;
}

.btn-cta {
    display: block;
    width: 174px;
    height: 55px;
    margin: 45px auto 0;
    background: url('../img/btn_login.png') no-repeat;
    text-align: center;
    line-height: 64px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    color: #EAE4C6;
    transition: filter .2s;
}

.btn-cta:hover {
    filter: brightness(1.12);
}

.page-presentation .stage {
    min-height: 2600px;
}

.presentation {
    position: absolute;
    left: 50%;
    margin-left: -540px;
    top: 790px;
    width: 1080px;
    z-index: 24;
    text-align: center;
}

.pres-title {
    font-family: var(--font-deco);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.pres-headline {
    margin-top: 14px;
    font-family: var(--font-nav);
    font-size: 22px;
    color: var(--gold-pale);
}

.pres-intro {
    margin: 22px auto 0;
    max-width: 720px;
    font-size: 15px;
    line-height: 24px;
    color: var(--gray);
}

.pres-media {
    margin: 40px auto 0;
    width: 100%;
    max-width: 960px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3a352a;
    border-radius: 6px;
    background: rgba(12, 11, 9, 0.5);
}

.pres-media span {
    font-family: var(--font-nav);
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dim);
}

.pres-cta {
    margin: 40px auto 0;
}

.form-hint {
    margin: -4px auto 8px;
    max-width: 340px;
    font-size: 12px;
    line-height: 17px;
    color: var(--gold-dim);
    text-align: center;
}

.field-with-info {
    position: relative;
    width: 253px;
    margin: 4px auto 0;
}

.field-with-info .input-img {
    margin: 0;
    width: 253px;
}

.field-info {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    color: var(--gold-dim);
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    cursor: help;
}

.field-info:hover, .field-info:focus {
    color: var(--gold-light);
    border-color: var(--gold-light);
    outline: none;
}

.field-tip {
    display: none;
    position: absolute;
    right: -8px;
    top: 28px;
    width: 236px;
    padding: 10px 12px;
    background: rgba(10, 10, 9, 0.98);
    border: 1px solid #3a352a;
    border-radius: 6px;
    color: var(--gray);
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: left;
    letter-spacing: 0;
    text-transform: none;
    z-index: 60;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.field-info:hover .field-tip, .field-info:focus .field-tip {
    display: block;
}

.cf-turnstile {
    margin: 8px 0 14px;
    display: flex;
    justify-content: center;
}

.file-field {
    display: block;
    margin: 6px auto 4px;
    max-width: 420px;
    text-align: center;
}

.file-label {
    display: block;
    font-size: 13px;
    color: var(--gold-pale);
    margin-bottom: 6px;
}

.input-file {
    display: block;
    width: 100%;
    color: var(--gray);
    font-size: 12px;
}

.input-file::file-selector-button {
    margin-right: 10px;
    padding: 6px 12px;
    background: rgba(12, 11, 9, 0.7);
    border: 1px solid #3a352a;
    border-radius: 4px;
    color: var(--gold);
    cursor: pointer;
}

.file-hint {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--gold-dim);
}

.ticket-attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.ticket-att {
    display: block;
    max-width: 180px;
    text-align: center;
    color: var(--gold-dim);
    font-size: 11px;
}

.att-media {
    display: block;
    max-width: 180px;
    max-height: 150px;
    border-radius: 4px;
    border: 1px solid #3a352a;
    object-fit: cover;
}

.att-name {
    display: block;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 180px;
}

.footer {
    margin-left: -1280px;
    bottom: 0;
    width: 2560px;
    height: 793px;
    z-index: 22;
}

.footer-scene {
    position: absolute;
    top: 0;
    left: 0;
}

.footer-logo {
    position: absolute;
    top: 280px;
    left: 1069px;
    width: 463px;
    height: 415px;
}

.footer-logo img {
    transition: filter .25s;
}

.footer-logo:hover img {
    filter: brightness(1.1);
}

.footer-nav {
    list-style: none;
    position: absolute;
    top: 690px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.footer-nav a {
    font-size: 14px;
    color: #FFFFFF;
}

.footer-nav a:hover {
    color: var(--gold-light);
}

.footer-lang {
    position: absolute;
    top: 692px;
    right: 260px;
    display: flex;
    gap: 10px;
    font-size: 13px;
}

.footer-lang a {
    color: #4E4E49;
}

.footer-lang a.active {
    color: var(--gold);
}

.footer-copy {
    position: absolute;
    top: 745px;
    left: 687px;
    font-size: 14px;
    line-height: 16px;
    color: #4E4E49;
}

.footer-credit {
    position: absolute;
    top: 745px;
    left: 1586px;
    font-size: 14px;
    line-height: 16px;
    color: #4E4E49;
}

.footer-credit span {
    color: #97937D;
}

@media (max-width: 1000px) {
    html {
        scroll-behavior: auto;
    }

    body {
        min-width: 0;
        overflow-x: hidden;
        background-image: none;
        background-color: #070605;
    }

    .nav-backdrop {
        display: none;
    }

    .stage {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 0 !important;
        overflow: visible;
        padding: 52px 12px 30px;
    }

    .stage > * {
        min-width: 0;
        max-width: 100%;
    }

    .slider img, .content-home img, .content-page img,
    .news-item img, .presentation img {
        max-width: 100%;
        height: auto;
    }

    .header-video, .mainnav, .header-stats, .join-us,
    .lang-select, .header-discord, .slider, .content-home,
    .content-page, .presentation, .footer {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        transform: none !important;
    }

    .user-panel, .top5-panel, .stats-panel, .events-panel {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin: 16px auto 0 !important;
        width: 329px;
        height: auto !important;
        min-height: 0 !important;
    }

    .user-panel { order: 9; }
    .top5-panel { order: 10; }
    .stats-panel { order: 11; }
    .events-panel { order: 12; }

    .logo {
        display: none !important;
    }

    .mainnav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100%;
        max-width: 100%;
        height: 52px;
        margin: 0 !important;
        background: rgba(10, 10, 9, 0.97);
        border-bottom: 1px solid #2c281f;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 100;
    }

    .nav-burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: absolute;
        left: 16px;
    }

    .nav-burger span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transition: transform .25s, opacity .25s;
    }

    .nav-toggle:checked ~ .nav-burger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked ~ .nav-burger span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked ~ .nav-burger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mainnav ul {
        display: none;
        position: absolute;
        top: 52px;
        left: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        background: rgba(10, 10, 9, 0.98);
        border-bottom: 1px solid #2c281f;
        padding: 4px 0;
        box-shadow: 0 14px 26px rgba(0, 0, 0, 0.55);
    }

    .nav-toggle:checked ~ ul {
        display: flex;
    }

    .mainnav li {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100%;
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid rgba(58, 53, 42, 0.25);
    }

    .mainnav li:last-child {
        border-bottom: none;
    }

    .nav-label {
        font-size: 14px;
    }

    .mainnav li.active::before {
        display: none;
    }

    .nav-sub {
        display: none;
    }

    .nav-label {
        font-size: 13px;
    }

    .header-discord {
        order: 2;
        width: auto;
        margin: 10px 6px 0 !important;
    }

    .lang-select {
        order: 3;
        width: 138px;
        margin: 10px 6px 0 !important;
    }

    .header-video {
        order: 1;
        width: 100vw;
        max-width: 100vw !important;
        height: auto !important;
        margin: 0 0 6px !important;
        border-radius: 0;
    }

    .header-stats {
        order: 4;
        width: 100%;
        max-width: 380px;
        height: auto;
        display: flex;
        justify-content: center;
        gap: 4px;
        margin-top: 16px;
    }

    .stat-circle {
        position: static !important;
        left: auto !important;
        width: 108px;
        height: 114px;
        background-size: contain;
    }

    .join-us {
        order: 5;
        position: relative !important;
        width: 222px;
        height: 200px;
        margin-top: 4px;
    }

    .slider {
        order: 7;
        width: 100%;
        max-width: 560px;
        height: auto;
        margin-top: 18px;
        border-radius: 6px;
    }

    .content-home, .content-page {
        order: 8;
        position: relative !important;
        width: 100%;
        max-width: 560px;
        background: none;
        min-height: 0 !important;
        margin-top: 10px;
        padding: 0 4px 10px;
    }

    .presentation {
        order: 8;
        width: 100%;
        max-width: 680px;
        margin-top: 18px;
    }

    .content-title, .page-headline, .rank-tabs, .rank-search,
    .rank-table, .download-platform, .sysreq {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        margin-left: 0 !important;
    }

    .content-title {
        margin: 4px 0 12px;
        text-align: center;
    }

    .page-headline {
        margin: 10px 0 8px;
    }

    .news-list, .register-form, .support-wrap, .account-wrap {
        padding-left: 6px;
        padding-right: 6px;
        padding-top: 12px;
    }

    .register-form {
        margin-top: 12px;
    }

    .register-form .input-img, .account-form .input-img,
    .login-form .input-img, .input-img {
        max-width: 100%;
    }

    .download-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        margin-top: 20px;
    }

    .btn-download {
        position: relative !important;
        left: auto !important;
        top: auto !important;
    }

    .download-list li:nth-child(1) .btn-download,
    .download-list li:nth-child(2) .btn-download,
    .download-list li:nth-child(3) .btn-download {
        top: auto;
    }

    .download-platform {
        margin: 24px 0 10px;
        justify-content: center;
    }

    .sysreq {
        margin: 8px 0 0;
    }

    .sysreq-cols {
        flex-direction: column;
        gap: 12px;
    }

    .rank-tabs {
        justify-content: center;
        margin: 6px 0 10px;
    }

    .rank-search {
        margin: 0 auto 12px;
        max-width: 326px;
    }

    .rank-table {
        font-size: 12px;
    }

    .rank-pagination {
        position: static !important;
        left: auto !important;
        top: auto !important;
        justify-content: center;
        margin: 14px 0 0;
    }

    .panel-body {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: 100%;
        margin-top: 99px;
        padding: 0 18px 16px;
    }

    .top5-panel .panel-body, .events-panel .panel-body,
    .stats-panel .panel-body, .user-panel .panel-body {
        min-height: 0;
    }

    .stats-panel .panel-body {
        margin-top: 105px;
    }

    .footer {
        order: 20;
        width: 100%;
        height: auto;
        margin-top: 26px !important;
        padding: 24px 12px 20px;
        background: #0a0a09;
    }

    .footer-scene {
        display: none;
    }

    .footer-logo {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: auto;
        height: auto;
        margin: 0 auto;
    }

    .footer-logo img {
        width: 150px;
        height: auto;
        margin: 0 auto;
    }

    .footer-nav {
        position: static !important;
        left: auto !important;
        top: auto !important;
        flex-wrap: wrap;
        gap: 10px 18px;
        margin-top: 14px;
    }

    .footer-lang {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 12px;
    }

    .footer-copy {
        position: static !important;
        left: auto !important;
        top: auto !important;
        text-align: center;
        margin-top: 12px;
    }

    .footer-credit {
        display: none;
    }
}

@media (max-width: 560px) {
    .rank-table:not(.in-flow) th:nth-child(3), .rank-table:not(.in-flow) td:nth-child(3),
    .rank-table:not(.in-flow) th:nth-child(4), .rank-table:not(.in-flow) td:nth-child(4),
    .rank-table:not(.in-flow) th:nth-child(7), .rank-table:not(.in-flow) td:nth-child(7) {
        display: none;
    }
}
