@font-face {
    font-family: 'TrajanSansPro-Regular';
    src: url("../fonts/TrajanSansPro-Regular.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'TrajanSansPro-Semibold';
    src: url("../fonts/TrajanSansPro-Semibold.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat-Regular';
    src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'dushav5_regular';
    src: url("../fonts/dushav5_regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'BeaufortforLOL-Medium';
    src: url("../fonts/BeaufortforLOL-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

/* ===== 🎨 Глобальные переменные ===== */
:root {
    --color-primary: #f0d951;
    --color-secondary: #e1ce87;
    --color-background: #f5f7fa;
    --color-dark: #1e1e1e;
    --color-light: #ffffff;
    --color-accent: #ff6b6b;
    --accent-bg-color: rgb(149 111 0 / 90%);
    --color-gray: gray;
    --bgc-color: rgb(48 44 76 / 90%);
    --bg-form-head: rgb(209 163 0 / 40%);
    --bg-form-table: rgb(48 46 37 / 90%);
    --bg-dark: #20232A;

    --font-accent-regular: BeaufortforLOL-Medium;
    --font-accent-bold: TrajanSansPro-Semibold;
    --font-regular: Montserrat-Regular;
    --font-bold: Montserrat-SemiBold;


    /* размеры */
    --sidebar-width: 250px;
    --container-padding: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed header */
}
html, body {
    margin: 0;
    height: 100%;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
}
body {
    font-family: var(--font-regular), sans-serif;
    background: #120F0D;
}

ul, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
p {
    margin: 0;
    color: #bebebe;
}
h3 {
    font-family: var(--font-accent-regular);
    color: #fff;
}
a {
    color: #fff;
    text-decoration: none;
}
small {
    color: #bebebe;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
}


/*FORM START*/
select.form-control {
    /* Убираем нативный appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Фон, граница и скругления */
    background: #292D34;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 12px;

    /* Внутренние отступы (правый — для стрелки) */
    padding: 10px 36px 10px 12px;

    /* Шрифт и цвет */
    font-size: 14px;
    line-height: 1.4;
    color: #fff;

    /* Курсор */
    cursor: pointer;

    /* Переходы для фокуса */
    transition: border-color 0.2s, box-shadow 0.2s;

    /* Кастомная стрелка через встроенное SVG */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}
/* Стиль при фокусе */
select.form-control:focus {
    outline: none;
    border-color: #6ca0f6;
    box-shadow: 0 0 0 3px rgba(108, 160, 246, 0.3);
}
/* (Опционально) чуть более читаемые опции */
select.form-control option {
    padding: 8px;
    background-color: #292D34;
    color: #fff;
}
:focus-visible {
    outline: -webkit-focus-ring-color auto 0;
}
.form-control {
    box-sizing: border-box;
    background: #292D34;
    border: 1px solid rgb(255 255 255 / 10%);
    padding: 14px 20px;
    border-radius: 12px;
    width: 100%;
    color: #fff;
}
.form-control::placeholder {
    font-size: 14px;
}
.form-group {
    margin-bottom: 30px;
}
.form-group:last-child {
    margin-bottom: 0;
}
.form-group label {
    color: #bebebe;
    font-size: 14px;
    display: flex;
    margin-bottom: 5px;
}

::-webkit-input-placeholder {
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out, transform .2s ease-in-out;
    transition: opacity .2s ease-in-out, transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}
::-moz-placeholder {
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out, transform .2s ease-in-out;
    transition: opacity .2s ease-in-out, transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}
:-moz-placeholder {
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out, transform .2s ease-in-out;
    transition: opacity .2s ease-in-out, transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}
:-ms-input-placeholder {
    color: #7b7873;
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out, transform .2s ease-in-out;
    transition: opacity .2s ease-in-out, transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}
:focus::-webkit-input-placeholder {
    opacity: 0;
    transform: translateX(20px);
}
:focus::-moz-placeholder {
    opacity: 0;
    transform: translateX(20px);
}
:focus:-moz-placeholder {
    opacity: 0;
    transform: translateX(20px);
}
:focus:-ms-input-placeholder {
    opacity: 0;
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*FORM END*/

.other-bg {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -10;
    background-image: url("../images/bg-other.jpg");
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}

.main-bg {
    position: absolute;
    width: 100%;
    height: 70vh;
    right: 0;
    left: 0;
    top: 80px;
    bottom: 0;
    z-index: -10;
    background-image: url("../images/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0px -150px;
}

.video-bg-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    z-index: -5;
    filter: opacity(0.4);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Тёмный полупрозрачный слой */
    z-index: 2;
}

.wrap {
    max-width: 1420px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}



/*LANGUAGE*/
.nav__langs {
    position: relative;
    font-family: var(--font-accent-regular), sans-serif;
    z-index: 1;
}
.nav__langs-item {
    cursor: pointer;
    height: 35px;
    background: radial-gradient(128% 100% at 50% 0%, #ffa250 2.6%, #892b27 57.29%, #ff8500 100%);
    box-shadow: 0px 17px 34px 0px rgba(255, 98, 0, 0.18), 0px 11.019px 19.912px 0px rgba(255, 98, 0, 0.14), 0px 6.548px 10.83px 0px rgba(255, 98, 0, 0.11), 0px 3.4px 5.525px 0px rgba(255, 98, 0, 0.09), 0px 1.385px 2.77px 0px rgba(255, 98, 0, 0.07), 0px 0.315px 1.338px 0px rgba(255, 98, 0, 0.04);
    padding: 0 5px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1em;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
    gap: 10px;
}

.nav__langs-item:hover, .nav__langs-item.active {
    color: #fff;
}
.nav__langs-item img {
    width: 22px;
    aspect-ratio: 34/24;
    border-radius: 2px;
}
.nav__langs-item--current:after {
    content: "";
    width: 12px;
    aspect-ratio: 12 / 6;
    background: url("../images/arrow.png");
    background-size: 100% 100%;
    transition: transform 0.3s ease-in-out;
}

.nav__langs-item.active:after {
    transform: scale(1, -1);
}
.nav__langs-stroke {
    list-style-type: none;
    position: absolute;
    z-index: 1;
    top: calc(100% + 3px);
    right: 0;
    display: none;
}
.nav__langs-stroke li:not(:first-child) {
    margin-top: 10px;
}
.nav__links {
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 30px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}
.nav__links-item {
    font-family: var(--primary-font), sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1em;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 6px;
    transition: color 0.3s ease-in-out;
}
.nav__links-item:hover {
    color: var(--brand-color);
}
.nav__links-item img {
    height: 16px;
}
.nav__switch {
    width: 34px;
    height: 34px;
    position: relative;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
    display: none;
    transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
    z-index: 3;
    border-radius: 50%;
    margin-left: auto;
}
.nav__switch:hover {
    background-color: var(--brand-color);
}
.nav__switch:hover:after, .nav__switch:hover:before, .nav__switch:hover .nav__switch-item {
    background: #1c2227;
}
.nav__switch:hover .nav__switch-item {
    transform: scale(0.7, 1);
}
.nav__switch.active:after {
    transform: rotate(-135deg) scale(0.7, 1);
    top: calc((100% - 2px) / 2);
}
.nav__switch.active:before {
    transform: rotate(135deg) scale(0.7, 1);
    top: calc((100% - 2px) / 2);
}
.nav__switch.active .nav__switch-item {
    transform: scale(0, 1);
}
.nav__switch:after {
    content: "";
    width: calc(100% - 12px);
    height: 2px;
    background: #cdcfd1;
    position: absolute;
    transition: all 0.3s ease-in-out;
    top: 11px;
    left: 6px;
    transform: scale(0.7, 1);
}
.nav__switch:before {
    content: "";
    width: calc(100% - 12px);
    height: 2px;
    background: #cdcfd1;
    position: absolute;
    transition: all 0.3s ease-in-out;
    top: calc(100% - 13px);
    left: 6px;
    transform: scale(0.7, 1);
}
.nav__switch-item {
    width: calc(100% - 12px);
    height: 2px;
    background: #cdcfd1;
    position: absolute;
    top: calc((100% - 2px) / 2);
    left: 6px;
    transition: all 0.3s ease-in-out;
    transform: scale(0.7, 1);
}
/*LANG END*/

.header .wrap {
    position: relative;
}
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #130700;
    border-bottom: 2px solid #724f29;
    min-height: 80px;
}
.top_line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    position: absolute;
    left: 0;
    right: 0;
}
.gw-burger {
    display: none;
}
.header-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.header-logo {
    display: flex;
    align-items: center;
    margin-right: 50px;
    transition: opacity 0.3s ease;
}
.header-logo:hover {
    opacity: 0.8;
}
.header-logo img {
    height: 60px;
    width: auto;
}
.top_menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 0;
}

.logo {
    text-align: center;
}
.logo img {
    height: 240px;
}
.main-text {
    line-height: 1.2;
    max-width: 500px;
}
.main-text p {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 24px;
    color: #fff;
}
h1 {
    font-family: var(--font-accent-bold), sans-serif;
    background: linear-gradient(180deg, #FFE5A3 0%, #CBA74C 63.5%, #EECE7F 79%, #8C7845 98.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    font-size: 32px;
}



.btn-main {
    position: relative;
    width: fit-content;
    overflow: hidden;
    cursor: pointer;
    padding: 22px 48px;
    border-radius: 16px;
    background: radial-gradient(128% 100% at 50% 0%, #ffa250 2.6%, #892b27 57.29%, #ff8500 100%);
    box-shadow: 0px 17px 34px 0px rgba(255, 98, 0, 0.18), 0px 11.019px 19.912px 0px rgba(255, 98, 0, 0.14), 0px 6.548px 10.83px 0px rgba(255, 98, 0, 0.11), 0px 3.4px 5.525px 0px rgba(255, 98, 0, 0.09), 0px 1.385px 2.77px 0px rgba(255, 98, 0, 0.07), 0px 0.315px 1.338px 0px rgba(255, 98, 0, 0.04);
}
.btn-main::before {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #FFDDA8 31.33%, rgba(69, 24, 5, 0.60) 100%);
}
.btn-main::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 2;
}
.btn-main::after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    opacity: 0;
    transition: opacity 200ms ease-in-out;
    z-index: 1;
    background: radial-gradient(128% 100% at 50% 0%, #da9a58 2.6%, #863e29 57.29%, #ce7b2b 100%);
}
.btn-main .text {
    background: linear-gradient(180deg, #FFF0D4 20.5%, rgba(255, 221, 168, 0.60) 28.75%, rgba(255, 240, 212, 0.60) 37.5%), #FFF;
    -webkit-background-clip: text;
    background-clip: text;
}
.btn-main .text {
    font-size: 20px;
    line-height: 140%;
}
.btn-main:hover::after {
    opacity: 1;
}
.btn-main .text {
    font-family: var(--font-accent-bold), sans-serif;
    font-size: 16px;
    line-height: 125%;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}
.btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 42px;
    text-align: center;
    transition: .4s opacity;
    margin-bottom: 60px;
}



.nav-link {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link:hover {
    color: var(--color-primary);
}
.nav-link:hover img {
    filter: contrast(1.5);
}
.nav-item.active .nav-link {
    color: var(--color-primary);
}
.dropdown-arrow {
    width: 12px;
    height: auto;
    transition: transform 0.3s ease;
}
.dropdown_menu.open .dropdown-arrow {
    transform: rotate(180deg);
}
.top_right {
    display: flex;
    gap: 30px;
    flex: 0 0 auto;
    margin-left: auto;
}

/*ACP PANEL TOP*/
.acp-panel-top-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    height: 35px;
    border-radius: 8px;
    /* background: linear-gradient(0deg, rgb(98 60 38) 0%, rgb(179 122 86) 100%); */
    border: 1px solid #ebb686;
    color: #ffe89b;
    font-size: 14px;
    background: radial-gradient(128% 100% at 50% 0%, #ffa250 2.6%, #892b27 57.29%, #ff8500 100%);
    box-shadow: 0px 17px 34px 0px rgba(255, 98, 0, 0.18), 0px 11.019px 19.912px 0px rgba(255, 98, 0, 0.14), 0px 6.548px 10.83px 0px rgba(255, 98, 0, 0.11), 0px 3.4px 5.525px 0px rgba(255, 98, 0, 0.09), 0px 1.385px 2.77px 0px rgba(255, 98, 0, 0.07), 0px 0.315px 1.338px 0px rgba(255, 98, 0, 0.04);
}

.dropdown-menu {
    filter: grayscale(1);
    display: none;
    position: absolute;
    right: 0;
    min-width: 160px;
    margin-top: 4px;
    text-align: right;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    align-items: center;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgb(138, 107, 83);
    background: linear-gradient(0deg, rgb(68 47 30 / 30%) 0%, rgb(130 101 78 / 30%) 100%);
    border: 1px solid rgb(235 182 134 / 30%);
    z-index: 999999;
}

.dropdown-menu a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    opacity: 0.7;
}
.dropdown-menu.show {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 5px;
}
.arrow-down-acp {
    margin-left: 10px;
    border: solid #ffe89b;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    width: 2px;
    height: 2px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    transform-origin: 60% 70%;
    margin-top: -5px;
}

.arrow-down-acp.rotate {
    transform: rotate(225deg);
}
/*ACP PANEL TOP END*/


.acp-panel-top {
    display: flex;
    align-items: center;
    gap: 15px;
}
.auth_user_header_balance {
    font-size: 14px;
}

#main {
    height: 75vh;
    display: flex;
    align-items: center;
}


#diary {
    padding: 0;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}
#diary video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.diary_gradient {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 112px;
    width: 100%;
    height: 1080px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(19, 16, 14, 0.00) 0%, #13100E 100%), linear-gradient(180deg, rgba(19, 16, 14, 0.00) 63.5%, #13100E 100%), linear-gradient(180deg, #13100E 0%, rgba(19, 16, 14, 0.00) 62.5%);
}


.footer {
    background: #000000;
    border-top: 2px solid #724f29;
    padding: 60px 0 30px;
}
.footer_all {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}
.footer-logo {
    width: 200px;
    margin-bottom: 10px;
}
.footer-description {
    font-family: var(--font-regular), sans-serif;
    font-size: 14px;
    color: #bebebe;
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}
.footer-separator {
    height: 1px;
    background: #ffb05a3b;
    margin: 30px 0;
}
.menu-footer h3 {
    font-family: var(--font-accent-regular), sans-serif;
    margin-bottom: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.menu-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.menu-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.menu-footer a {
    font-family: var(--font-regular), sans-serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: none;
}
.menu-footer a:hover {
    color: var(--color-primary);
}
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--color-primary);
    color: #000;
    transform: translateY(-2px);
}
.social-icon svg {
    width: 20px;
    height: 20px;
}
.social-icon svg path {
    fill: #000;
}
.social-icon:hover svg path {
    fill: #000;
}
.footer-help h3 {
    margin-bottom: 10px;
}
.footer-help {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.help-link {
    font-family: var(--font-regular), sans-serif;
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}
.help-link:hover {
    color: #fff;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.footer-legal a {
    font-family: var(--font-regular), sans-serif;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: none;
}
.footer-legal a:hover {
    color: var(--color-primary);
}
.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}
.footer-copyright {
    font-family: var(--font-regular), sans-serif;
    font-size: 13px;
    color: #fff;
}
.footer-copyright p {
    margin: 0;
}

.top--right-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.btn-wrapper.btn-full {
    margin-bottom: 10px;
}
.btn-full button {
    border: 0;
    width: 100%;
}
.btn-red {
    width: max-content;
    font-family: var(--font-accent-regular), sans-serif;
    text-transform: uppercase;
    height: 35px;
    background: radial-gradient(128% 100% at 50% 0%, #ffa250 2.6%, #892b27 57.29%, #ff8500 100%);
    box-shadow: 0px 17px 34px 0px rgba(255, 98, 0, 0.18), 0px 11.019px 19.912px 0px rgba(255, 98, 0, 0.14), 0px 6.548px 10.83px 0px rgba(255, 98, 0, 0.11), 0px 3.4px 5.525px 0px rgba(255, 98, 0, 0.09), 0px 1.385px 2.77px 0px rgba(255, 98, 0, 0.07), 0px 0.315px 1.338px 0px rgba(255, 98, 0, 0.04);
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 8px;
}
.btn-red:hover {
    background: radial-gradient(128% 100% at 50% 0%, #ff5650 2.6%, #892b27 57.29%, #ff0000 100%);
}

.btn-golden {
    width: max-content;
    font-family: var(--font-accent-bold), sans-serif;
    height: 35px;
    background: radial-gradient(128% 100% at 50% 0%, #ffa250 2.6%, #892b27 57.29%, #ff8500 100%);
    box-shadow: 0px 17px 34px 0px rgba(255, 98, 0, 0.18), 0px 11.019px 19.912px 0px rgba(255, 98, 0, 0.14), 0px 6.548px 10.83px 0px rgba(255, 98, 0, 0.11), 0px 3.4px 5.525px 0px rgba(255, 98, 0, 0.09), 0px 1.385px 2.77px 0px rgba(255, 98, 0, 0.07), 0px 0.315px 1.338px 0px rgba(255, 98, 0, 0.04);
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 8px;
}
.btn-golden:hover {
    background: radial-gradient(128% 100% at 50% 0%, #ff5650 2.6%, #892b27 57.29%, #ff0000 100%);
}

.block_title {
    font-family: var(--font-accent-regular), sans-serif;
    color: var(--color-primary);
    font-size: 38px;
    line-height: 1.2;
}
.title_center_block {
    padding-top: 60px;
    text-align: center;
    line-height: 1.6;
}
.title_center_block {
    font-size: 22px;
    font-family: var(--font-accent-regular), sans-serif;
    color: #fff;
}
#about {
    background: #000000;
    min-height: 600px;
    padding-bottom: 40px;
}
.about-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}
.about-column {
    min-height: 400px;
}
.about-column-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
    background: transparent;
    border: none;
}
.about-column-left::before {
    display: none;
}
#quick-start {
    scroll-margin-top: 100px; /* Offset for fixed header when scrolling */
}
.quick-start-card {
    width: 100%;
    padding: 30px;
    background: #130700;
    border-radius: 12px;
    border: 1px solid rgba(255, 133, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.quick-start-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 133, 0, 0.6), rgba(240, 217, 81, 0.4), rgba(255, 133, 0, 0.6));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 3s ease infinite;
    pointer-events: none;
}
.quick-start-heading {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    text-align: left;
}
.quick-start-description {
    color: #bebebe;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    text-align: left;
}
.quick-start-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 0 0;
    padding: 20px;
    background: rgba(18, 15, 13, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(255, 133, 0, 0.2);
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 150px;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 133, 0, 0.8), rgba(240, 217, 81, 0.6));
    color: #fff;
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 133, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 133, 0, 0.3);
}
.step-text {
    color: #fff;
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}
.step-arrow {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}
.quick-start-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.quick-start-col {
    display: flex;
    flex-direction: column;
}
.quick-start-col-title {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
    text-align: left;
}
.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.register-form .form-group {
    margin-bottom: 0;
}
.download-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.btn-download {
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    background: rgba(18, 15, 13, 0.6);
    border: 1px solid rgba(255, 133, 0, 0.3);
    color: #fff;
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-download:hover {
    background: rgba(18, 15, 13, 0.8);
    border-color: rgba(255, 133, 0, 0.6);
    color: var(--color-primary);
    transform: translateY(-2px);
}
.btn-download-launcher {
    background: rgba(26, 7, 0, 0.8);
    border: 1px solid rgba(240, 217, 81, 0.5);
    color: var(--color-primary);
}
.btn-download-launcher:hover {
    background: rgba(26, 7, 0, 1);
    border-color: rgba(240, 217, 81, 0.8);
}
.download-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: currentColor;
}
.launcher-info {
    color: #bebebe;
    font-size: 13px;
    line-height: 1.5;
    margin: 10px 0;
    text-align: left;
}
.btn-create-account {
    width: 100%;
    padding: 14px 32px;
    border-radius: 8px;
    background: radial-gradient(128% 100% at 50% 0%, #ffa250 2.6%, #892b27 57.29%, #ff8500 100%);
    box-shadow: 0px 17px 34px 0px rgba(255, 98, 0, 0.18), 0px 11.019px 19.912px 0px rgba(255, 98, 0, 0.14), 0px 6.548px 10.83px 0px rgba(255, 98, 0, 0.11), 0px 3.4px 5.525px 0px rgba(255, 98, 0, 0.09), 0px 1.385px 2.77px 0px rgba(255, 98, 0, 0.07), 0px 0.315px 1.338px 0px rgba(255, 98, 0, 0.04);
    border: none;
    color: #fff;
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-create-account:hover {
    transform: translateY(-2px);
    box-shadow: 0px 20px 40px 0px rgba(255, 98, 0, 0.25);
}
.server-info-card {
    width: 100%;
    padding: 30px;
    background: #130700;
    border-radius: 12px;
    border: 1px solid rgba(255, 133, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.server-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 133, 0, 0.6), rgba(240, 217, 81, 0.4), rgba(255, 133, 0, 0.6));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 3s ease infinite;
    pointer-events: none;
}
.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.server-title {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.rate-selector {
    display: flex;
    gap: 10px;
}
.rate-btn {
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 133, 0, 0.3);
    background: rgba(18, 15, 13, 0.6);
    color: #bebebe;
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.rate-btn:hover {
    border-color: rgba(255, 133, 0, 0.6);
    color: #fff;
    background: rgba(18, 15, 13, 0.8);
}
.rate-btn.active {
    background: rgba(255, 133, 0, 0.2);
    border-color: rgba(255, 133, 0, 0.6);
    color: var(--color-primary);
}
.server-description {
    color: #bebebe;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.server-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(255, 133, 0, 0.2);
    margin-bottom: 25px;
}
.server-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #bebebe;
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
    position: relative;
}
.server-tab:hover {
    color: #fff;
}
.server-tab.active {
    color: var(--color-primary);
    border-bottom-color: #ff8500;
}
.server-tab-content {
    min-height: 200px;
}
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
}
.server-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}
.server-features-list li {
    color: #bebebe;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}
.server-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 18px;
}
.about-column-right {
    background: linear-gradient(180deg, #130700 0%, #0f0500 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.about-column-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 133, 0, 0.6), rgba(240, 217, 81, 0.4), rgba(255, 133, 0, 0.6));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 3s ease infinite;
    pointer-events: none;
}
.vote-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 133, 0, 0.2);
}
.vote-heading {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    text-align: left;
}
.vote-description {
    color: #bebebe;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: left;
}
.vote-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-vote {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(18, 15, 13, 0.6);
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
}
.vote-button-image {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 4px;
    transition: all 0.3s ease;
    max-width: 160px;
}
.btn-vote:hover {
    background: rgba(18, 15, 13, 0.8);
    border-color: rgba(255, 133, 0, 0.6);
    transform: translateY(-2px);
}
.btn-vote:hover .vote-button-image {
    filter: brightness(1.1);
}
.preregister-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 133, 0, 0.2);
}
.preregister-heading {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    text-align: left;
}
.preregister-description {
    color: #bebebe;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: left;
}
.preregister-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.gift-image {
    max-width: 240px;
    height: auto;
    object-fit: contain;
}
.btn-preregister {
    width: 100%;
    padding: 14px 32px;
    border-radius: 8px;
    background: radial-gradient(128% 100% at 50% 0%, #ffa250 2.6%, #892b27 57.29%, #ff8500 100%);
    box-shadow: 0px 17px 34px 0px rgba(255, 98, 0, 0.18), 0px 11.019px 19.912px 0px rgba(255, 98, 0, 0.14), 0px 6.548px 10.83px 0px rgba(255, 98, 0, 0.11), 0px 3.4px 5.525px 0px rgba(255, 98, 0, 0.09), 0px 1.385px 2.77px 0px rgba(255, 98, 0, 0.07), 0px 0.315px 1.338px 0px rgba(255, 98, 0, 0.04);
    border: none;
    color: #fff;
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-preregister:hover {
    transform: translateY(-2px);
    box-shadow: 0px 20px 40px 0px rgba(255, 98, 0, 0.25);
}
.discord-section {
    margin-bottom: 0;
}
.discord-heading {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    text-align: left;
}
.discord-description {
    color: #bebebe;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: left;
}
.btn-discord {
    display: block;
    width: 100%;
    padding: 14px 32px;
    border-radius: 8px;
    background: radial-gradient(128% 100% at 50% 0%, #ffa250 2.6%, #892b27 57.29%, #ff8500 100%);
    box-shadow: 0px 17px 34px 0px rgba(255, 98, 0, 0.18), 0px 11.019px 19.912px 0px rgba(255, 98, 0, 0.14), 0px 6.548px 10.83px 0px rgba(255, 98, 0, 0.11), 0px 3.4px 5.525px 0px rgba(255, 98, 0, 0.09), 0px 1.385px 2.77px 0px rgba(255, 98, 0, 0.07), 0px 0.315px 1.338px 0px rgba(255, 98, 0, 0.04);
    border: none;
    color: #fff;
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}
.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0px 20px 40px 0px rgba(255, 98, 0, 0.25);
}
.about-column-right .discord-widget {
    width: 100%;
    border-radius: 8px;
    max-width: 100%;
}
#diary .btn-wrapper {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
}
#other {
    padding: 120px 0;
}
.startgame {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}
.startgame_steps_num {
    color: #bebebe;
    font-size: 20px;
}
.startgame_steps_name {
    color: #fff;
    font-size: 24px;
    font-family: var(--font-accent-regular), sans-serif;
}
.subtitle {
    color: var(--color-primary);
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 26px;
}
.startgame_container p {
    margin: 15px 0;
}



/*PAYMENT START*/
#payment-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}
.payment__range.noUi-horizontal .noUi-handle {
    width: 26px;
    height: 26px;
    border-radius: 26px;
    background: var(--color-primary);
    border: none;
    box-shadow: none;
    top: -9px;
    right: -13px;
}
.payment__range.noUi-target {
    background: #1c1718;
    border-radius: 5px;
    border: 1px solid #505050;
    box-shadow: none;
}
.payment__range {
    margin-top: 20px;
}
.payment__range .noUi-value {
    font-size: 10px;
    line-height: 18px;
    font-weight: 400;
    color: #afafaf;
}
.payment__range .noUi-marker-horizontal.noUi-marker-large {
    height: 10px;
}
.payment__range .noUi-marker-horizontal.noUi-marker {
    width: 1px;
}
.payment__range .noUi-marker-large {
    background: #686363;
}
.payment__range .noUi-marker {
    background: #483f41;
}
.payment__range .noUi-pips-horizontal {
    height: 42px;
}
.payment__range.noUi-horizontal .noUi-connect {
    background: #ffbd01;
}
.payment__range .noUi-tooltip {
    border: 1px solid #505050;
    border-radius: 5px;
    background: #1c1718;
    color: #fff;
    font-size: 14px;
    line-height: 1em;
    font-weight: 400;
    padding: 6px 5px 5px;
}
.payment__range.noUi-horizontal {
    height: 10px;
    margin-bottom: 60px;
}
.noUi-handle-lower::before, .noUi-handle-lower::after {
    display: none;
}
.pay_method img {
    display: flex;
    height: 40px;
}
.payment_select {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.payment-pay {
    width: 100%;
}
.pay_method {
    border: 2px solid transparent;
    cursor: pointer;
}
.pay_method:hover {
    opacity: 0.7;
    transition: 0.3s;
}
.pay_method.active {
    border: 2px solid var(--color-primary);
    border-radius: 6px;
}
.pay-currency {
    display: flex;
    color: #bebebe;
    gap: 30px;
}
.payment__input {
    display: flex;
    align-items: center;
}
.payment_bonus_price {
    background-color: var(--color-primary);
    height: 45px;
    min-width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.payment-pay input {
    border-radius: 0;
}
.bonus-item {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    border-bottom: 1px solid gray;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.bonus-item p {
    color: #fff;
}
.bonus-item span {
    color: var(--color-primary);
}
.pay-title {
    font-size: 22px;
    color: #fff;
}
.pay-title-block p {
    color: #bebebe;
}
.pay-title-block {
    margin-bottom: 15px;
}
.curr-item .curr_symbol {
    color: var(--color-primary);
}
.payment-pay .form-group {
    margin-bottom: 15px;
}
.payment-pay .form-group:last-child {
    margin-bottom: 0;
}
.payment-pay .login_button {
    margin-top: 30px;
    text-align: center;
}
.total_text {
    color: #bebebe;
    text-align: center;
}
/*PAYMENT END*/


.top_all {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.hero-column {
    display: flex;
    flex-direction: column;
}

.hero-column-servers {
    justify-content: flex-start;
}

.hero-column-logo {
    align-items: center;
    text-align: center;
}

.hero-column-char {
    align-items: center;
    overflow: hidden;
    justify-content: center;
}

.hero-character {
    max-width: 125%;
    height: auto;
    object-fit: contain;
    margin-left: 0px;
}
.server_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.server_online {
    display: flex;
    align-items: center;
    gap: 5px;
}
.server_online img {
    height: 32px;
}
.server_info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.server_item {
    font-family: var(--font-accent-regular), sans-serif;
    color: #fff;
    background: rgba(18, 15, 13, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 12px;
    padding: 0 10px 0 0;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    max-width: 450px;
    width: 90%;
}
.server_item a {
    text-decoration: none;
    color: inherit;
}
.server_item img {
    display: block;
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
}
.server_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 133, 0, 0.6), rgba(240, 217, 81, 0.4), rgba(255, 133, 0, 0.6));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 3s ease infinite;
    pointer-events: none;
}
@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.server_item:hover {
    border-color: rgba(255, 133, 0, 0.6);
    box-shadow: 0 0 20px rgba(255, 133, 0, 0.3);
    transform: translateY(-2px);
}
.server_in {
    flex: 1;
    min-width: 0;
}
.server_top {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.server_title_name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}
.server_badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(240, 217, 81, 0.2);
    color: #f0d951;
    border: 1px solid rgba(240, 217, 81, 0.4);
    white-space: nowrap;
}
.server_badge-announced {
    background: rgba(0, 255, 0, 0.2) !important;
    color: #00ff00 !important;
    border: 1px solid rgba(0, 255, 0, 0.4) !important;
}
.server_item p {
    color: #bebebe;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    margin-bottom: 12px;
}
.countdown-container {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 133, 0, 0.2);
}
.server-info-card .countdown-container {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    z-index: auto;
    box-shadow: none;
    width: 100%;
}
.beta-notice {
    margin: 15px 0;
    padding: 12px;
    background: rgb(149 97 63 / 42%);
    border: 1px solid rgba(255, 133, 0, 0.2);
    border-radius: 8px;
}
.beta-text {
    font-family: var(--font-regular), sans-serif;
    font-size: 14px;
    color: #fff;
    margin: 0;
    text-align: center;
}
.beta-text strong {
    color: var(--color-primary);
    font-weight: 600;
}
.countdown-title {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-align: center;
}
.countdown-date {
    font-family: var(--font-regular), sans-serif;
    font-size: 14px;
    color: #bebebe;
    text-align: center;
    margin-bottom: 15px;
}
.countdown-time {
    display: flex;
    gap: 6px;
    justify-content: space-between;
}
.time-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(149 97 63 / 42%);
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 6px;
    padding: 6px 4px;
    min-width: 0;
}
.time-value {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2px;
}
.time-label {
    font-family: var(--font-regular), sans-serif;
    font-size: 9px;
    color: #bebebe;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.server_stat {
    position: absolute;
    top: -10px;
    right: calc(40%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
}
.server_stat.online {
    background-color: #00ff00;
    color: #000;
}
.server_stat.online::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    display: inline-block;
}
.server_stat.offline {
    background-color: rgba(255, 85, 0, 0.8);
    color: #fff;
}
.server_stat.offline::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
}

.btn-primary {
    border: 0;
    cursor: pointer;
    background-color: #6c5eff;
    height: 42px;
    min-width: 180px;
    max-width: max-content;
    padding: 0 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}
.btn-primary:hover {
    box-shadow: 0 0 8px #6c5eff;
}
.btn-primary svg {
    width: 24px;
}
.login_button button {
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 70px rgba(112, 96, 255, 0.5);
    height: 50px;
    font-size: 18px;
    position: relative;
}
.login_button svg {
    position: absolute;
    left: 18px;
    width: 30px;
}
.text-danger {
    color: #ff4d4d;
    font-size: 13px;
    margin-top: 5px;
}

/* Успешно */
.text-success {
    color: #00cc66;
    font-size: 14px;
    margin-top: 10px;
}

@media only screen and (max-width: 1024px) {
    .wrap {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    .auth_user_header_balance {
        display: none;
    }
    .top_line {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 1200px) {
    .top_all {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-column-char {
        align-items: center;
    }
    
    .hero-character {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
}

@media only screen and (max-width: 960px) {
    .header-logo img {
        height: 35px;
    }
    .top_menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background-color: #221e1d;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        padding-top: 70px;
        padding-left: 20px;
        box-sizing: border-box;
    }

    ul.top_menu.active {
        transform: translateX(0);
    }

    .navigation__burger {
        display: block;
    }

    .gw-burger {
        position: relative;
        z-index: 999999;
        width: 40px;
        height: 40px;
        cursor: pointer;
        box-sizing: border-box;
    }

    .gw-burger__line {
        width: 20px;
        height: 2px;
        margin: auto;
        position: absolute;
        left: 5px;
        right: 5px;
        background-color: #909090;
        border-radius: 2px;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .gw-burger__line_pos_top {
        pointer-events: none;
        top: 32%;
    }

    .gw-burger__line_pos_middle {
        pointer-events: none;
        top: 50%;
        transform: translateY(-50%);
    }

    .gw-burger__line_pos_bottom {
        pointer-events: none;
        bottom: 32%;
    }

    .gw-burger_active .gw-burger__line_pos_top {
        transform: rotate(45deg) translateY(-50%);
        -webkit-transform-origin: center top;
        transform-origin: center top;
        top: 50%;
    }

    .gw-burger_active .gw-burger__line_pos_middle {
        transform: rotate(180deg);
        opacity: 0;
    }

    .gw-burger_active .gw-burger__line_pos_bottom {
        transform: rotate(-45deg) translateY(50%);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        bottom: 50%;
    }

    .footer_all {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .social-icons {
        justify-content: flex-start;
    }
}



@media only screen and (max-width: 675px) {
    .about-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-column {
        min-height: 300px;
        padding: 20px;
    }
    .quick-start-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .quick-start-steps {
        flex-wrap: wrap;
        gap: 15px;
    }
    .step-arrow {
        display: none;
    }
    .step-item {
        max-width: 100%;
        flex: 0 0 auto;
    }
    .server-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .server-title {
        font-size: 24px;
    }
    .server-features-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
a.sinblblbl {
    display: none;
}
#main {
    height: auto;
    padding-bottom: 30px;
}
    .logo img {
        height: 180px;
    }
    .menu-footer {
        width: 48%;
    }
    .menu-footer {
        gap: 10px;
    }
    .menu-footer h3 {
        margin-bottom: 0;
    }
    .footer_all {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .menu-footer {
        margin-bottom: 30px;
    }
    .startgame {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    #payment-form {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .copyright {
        text-align: center;
        margin: auto;
        padding-bottom: 30px;
    }
    .logo {
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .header-logo img {
        height: 30px;
    }
    .block_title {
        font-size: 22px;
    }
    .title_center_block {
        font-size: 16px;
    }
    .about-columns {
        gap: 20px;
    }
    .about-column {
        padding: 15px;
        min-height: 250px;
    }
    #diary .btn-wrapper {
        position: relative;
        bottom: 0;
    }
    #diary .btn-wrapper {
        position: relative;
        bottom: 0;
        margin-top: 0;
    }
    h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    .main-text p {
        font-size: 20px;
    }
    .top--right-menu .nav-item {
        display: none;
    }
    .auth_wrapper {
        margin-left: 15px;
        margin-right: 15px;
    }
}


.news_all {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
}
.news-item {
    background-color: #110f0d;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.news_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.news_content a {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 18px;
}
.news_img {
    width: 100%;
    height: 220px;
    background-position: center top;
    background-size: cover;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.news_content .link-light {
    color: var(--color-primary);
}
.news_content .link-light:hover {
    color: #fff;
}
.copyright small {
    font-size: 10px;
    line-height: 1.1;
}
.ncsoft {
    padding-top: 0;
    font-size: 12px;
    text-align: center;
    color: #8b8b8b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 8px;
    background: rgba(18, 15, 13, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 133, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 133, 0, 0.2);
    color: #fff;
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toastSlideIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff8500, #f0d951);
}

.toast.success {
    border-color: rgba(0, 255, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.2);
}

.toast.success::before {
    background: linear-gradient(180deg, #00ff00, #00cc66);
}

.toast.error {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.2);
}

.toast.error::before {
    background: linear-gradient(180deg, #ff0000, #cc0000);
}

.toast.info {
    border-color: rgba(255, 133, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 133, 0, 0.2);
}

.toast.warning {
    border-color: rgba(255, 217, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 217, 0, 0.2);
}

.toast.warning::before {
    background: linear-gradient(180deg, #ffd900, #ffa500);
}

.toast-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}
.toast-icon svg {
    width: 100%;
    height: 100%;
}

/* Pre-register Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: #130700;
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}
.modal-close:hover {
    color: var(--color-primary);
}
.modal-body {
    color: #fff;
}

.toast-message {
    flex: 1;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.fade-out {
    animation: toastSlideOut 0.3s ease-in forwards;
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

a.nav-link img:first-of-type {
    width: 22px;
    margin-bottom: -2px;
}

/* Dropdown Menu Styles */
.nav-item.dropdown_menu {
    position: relative;
}
.sub_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(36 15 9 / 80%);
    border: 1px solid #444;
    border-radius: 6px;
    min-width: 160px;
    z-index: 99;
    margin-top: 10px;
}

.sub_menu li a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sub_menu li a:hover {
    background-color: rgba(255, 133, 0, 0.2);
    color: var(--color-primary);
}

/* Активное состояние (добавляется класс .open через JS) */
.dropdown_menu.open .sub_menu {
    display: block;
}

/* Server Details Page */
.server-details-page {
    background: #000000 url("../images/bg-other.jpg") center center / cover no-repeat;
    padding: 100px 0 60px;
    min-height: calc(100vh - 200px);
    position: relative;
}
.server-details-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.server-details-page .wrap {
    position: relative;
    z-index: 1;
}
.page-header {
    text-align: center;
    margin-bottom: 50px;
}
.page-title {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}
.page-title .highlight {
    color: var(--color-primary);
    text-decoration: underline;
}
.page-subtitle {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}
.page-subtitle .highlight-gold {
    color: var(--color-primary);
}

/* Server Rates Table */
.rates-table-container {
    background: rgba(18, 15, 13, 0.8);
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}
.server-rates-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.server-rates-table thead {
    background: rgba(240, 217, 81, 0.2);
}
.server-rates-table thead td {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 133, 0, 0.5);
}
.server-rates-table thead td b {
    font-weight: 600;
}
.server-rates-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-regular), sans-serif;
    font-size: 16px;
    color: #fff;
}
.server-rates-table tbody tr:hover {
    background: rgba(255, 133, 0, 0.1);
}
.rate-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 5px;
    display: block;
}
.rate-icon[src=""],
.rate-icon:not([src]) {
    display: none;
}
.rate-value {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #bebebe;
    text-align: center;
}
.rate-value.premium {
    color: var(--color-primary);
}
.premium-notes {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.premium-notes p {
    font-family: var(--font-regular), sans-serif;
    font-size: 14px;
    color: #bebebe;
    margin: 10px 0;
    line-height: 1.6;
}

/* General Information Section */
.info-section {
    background: rgba(18, 15, 13, 0.8);
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}
.section-title {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 30px 0;
    text-align: center;
    text-transform: uppercase;
}
.section-title .highlight-gold {
    color: var(--color-primary);
}
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-regular), sans-serif;
    font-size: 16px;
    color: #fff;
}
.info-item:last-child {
    border-bottom: none;
}
.info-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 5px;
    flex-shrink: 0;
    display: block;
}

/* Item Enchant Section */
.discord-info-section {
    margin-top: 50px;
    padding: 40px;
    background: rgba(18, 15, 13, 0.7);
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 12px;
    text-align: center;
}
.discord-info-content {
    max-width: 600px;
    margin: 0 auto;
}
.discord-info-title {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.discord-info-text {
    font-family: var(--font-regular), sans-serif;
    font-size: 16px;
    color: #bebebe;
    line-height: 1.6;
    margin-bottom: 30px;
}
.discord-info-button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-primary);
    color: #000;
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.discord-info-button:hover {
    background: rgba(255, 133, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 133, 0, 0.3);
}
.enchant-section {
    background: rgba(18, 15, 13, 0.8);
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
}
.enchant-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}
.enchant-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 133, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.enchant-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 133, 0, 0.4);
}
.enchant-icon {
    font-size: 32px;
    width: 40px;
    flex-shrink: 0;
    text-align: center;
}
.enchant-description {
    flex: 1;
    font-family: var(--font-regular), sans-serif;
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
}
.enchant-max {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    flex-shrink: 0;
    text-align: right;
    min-width: 80px;
}
.enchant-note {
    font-family: var(--font-regular), sans-serif;
    font-size: 14px;
    color: #bebebe;
    text-align: center;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Content Pages (Rules, User Agreement, Privacy Policy) */
.content-section {
    background: rgba(18, 15, 13, 0.8);
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
}
.content-block {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.content-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.content-block h2 {
    font-family: var(--font-accent-regular), sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 15px 0;
    text-transform: uppercase;
}
.content-block p {
    font-family: var(--font-regular), sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Styles for Server Details Page */
@media only screen and (max-width: 768px) {
    .server-details-page {
        padding: 80px 0 40px;
    }
    .page-title {
        font-size: 32px;
    }
    .page-subtitle {
        font-size: 24px;
    }
    .rates-table-container,
    .info-section,
    .enchant-section {
        padding: 20px;
    }
    .server-rates-table {
        font-size: 14px;
    }
    .server-rates-table th,
    .server-rates-table td {
        padding: 12px 10px;
    }
    .rate-item,
    .info-item {
        font-size: 14px;
    }
    .info-list {
        grid-template-columns: 1fr;
    }
    .enchant-list {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 24px;
    }
    .enchant-name {
        font-size: 16px;
    }
}
  