@import "https://ch3rn1k.me/archive/fonts/web/CeraPro/CeraPro.css";

* {
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
}

body {
    font-family: CeraPro, sans-serif;
    background: linear-gradient(180deg, var(--bg-color-900) 0%, var(--bg-color-800) 100%);
    background-attachment: fixed;
    background-size: cover;
}

:root[data-theme] {
    --default-font-family: CeraPro;
    --bg-color-main: #0c121e;
    --bg-color-800: #0a101b;
    --bg-color-900: #0f1828;
    --bg-color-700: #0f1828;
    --accent-color-800: #ff3333;
    --shadow-color-soft: rgba(0, 0, 0, 0.15);
    --shadow-color-medium: rgba(0, 0, 0, 0.25);
    --shadow-color-hard: rgba(0, 0, 0, 0.35);
    --glow-color-light: rgba(255, 51, 51, 0.4);
    --glow-color-medium: rgba(255, 51, 51, 0.6);
    --animation-speed-slow: 1.5s;
    --animation-speed-normal: 0.5s;
    --animation-speed-fast: 0.3s;
    --animation-ease-out-bounce: cubic-bezier(0.34, 1.56, 0.64, 1); /* Плавный выход с легким отскоком */
    --animation-ease-out-smooth: cubic-bezier(0.22, 1, 0.36, 1);    /* Плавный выход (очень естественный) */
    --animation-ease-in-out-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6); /* Плавный вход-выход с отскоком */
    --animation-swift-out: cubic-bezier(0.55, 0, 0.1, 1);           /* Быстрый выход для UI элементов */
    --animation-soft-spring: cubic-bezier(0.5, 1.8, 0.9, 0.8);      /* Пружинный эффект */
}

/* Новые анимации */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--glow-color-light);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 5px var(--glow-color-medium);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--glow-color-light);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px 0 var(--glow-color-light);
    }
    50% {
        box-shadow: 0 0 15px 5px var(--glow-color-medium);
    }
    100% {
        box-shadow: 0 0 5px 0 var(--glow-color-light);
    }
}

/* Классы анимаций для использования через JS */
.fadeInUp { animation: fadeInUp var(--animation-speed-normal) ease-out forwards; }
.fadeInDown { animation: fadeInDown var(--animation-speed-normal) ease-out forwards; }
.fadeInRight { animation: fadeInRight var(--animation-speed-normal) ease-out forwards; }
.fadeInLeft { animation: fadeInLeft var(--animation-speed-normal) ease-out forwards; }
.fadeInScale { animation: fadeInScale var(--animation-speed-normal) ease-out forwards; }
.pulse { animation: pulse var(--animation-speed-slow) ease-in-out; }
.float { animation: float var(--animation-speed-slow) ease-in-out infinite; }
.glow { animation: glow var(--animation-speed-slow) ease-in-out infinite; }

/* Улучшения существующих стилей */
.img-bonus {
    width: 100%;
    height: auto;
    padding: 15px;
    transition: transform 0.3s ease-out;
}

.img-bonus:hover {
    transform: scale(1.02);
}

.join-ds {
    width: 80%;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

.join-ds:hover {
    transform: translateY(-3px);
}

.theme-dark.authBox {
    font-family: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
    text-rendering: optimizeLegibility
}

.authBox {
    width: 100%;
    padding: 20px
}

.centeringWrapper {
    width: 100%;
    text-align: center
}

.icon-dis {
    background-image: url();
    position: relative;
    background-clip: padding-box;
    background-color: none;
    background-position: 50%;
    background-size: 100% 100%
}

.iconInactive {
    border-radius: 60%
}

.iconSizeXLarge {
    width: 100px;
    height: 100px
}

.inviteIcon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.inviteLargeIcon {
    margin-right: 0
}

.guildIcon {
    margin-bottom: 20px
}

.colorHeaderPrimary {
    font-size: 24px;
    line-height: 30px;
    margin-top: 8px;
    color: #fff;
    justify-content: center;
    font-weight: 600
}

.size16 {
    font-size: 16px;
    line-height: 20px
}

#discord-widget {
    display: flex;
    flex-direction: column;
    align-items: center
}

.discordWidget-stats {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px
}

.discordWidget-stats__row {
    margin-bottom: 8px;
    padding: 7px 16px;
    border-radius: 100px;
    background-color: #1e2736;
    display: flex;
    justify-content: start;
    align-items: center
}

.discordWidget-stats__circle_green {
    background-color: #43b581
}

.discordWidget-stats__circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 12px;
    display: block
}

.discordWidget-stats__row:last-child {
    margin-bottom: 0
}

.discordWidget-stats__row:hover,
.xbox:hover,
.faqModal__content:hover,
.ruleAccordion:hover,
.serverAccordion:hover,
.Custom-module__wrapper:hover,
.Header-module__wrapper:hover,
.Product-module__wrapper:hover,
.Shop-module__wrapper .boxBody:hover,
.Shop-module__wrapper .boxFooter:hover,
.ModalLayout-module__modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-color-medium);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.discordWidget-stats {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px
}

.btn.btn-success {
    color: #fff;
    border-color: #5cb85c
}

.btn {
    margin-bottom: 20px;
    padding: 0;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 9px;
    font: inherit;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 160%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: none;
    border: none!important;
    font-size: 14px;
    border-radius: 4px;
    color: #ffffffb3;
    background: #1e2736;
    padding: 8px 12px;
    min-height: 13px;
    min-width: 13px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: left 0.7s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-block {
    width: 100%
}

.btn-block:hover {
    color: #fff;
    background: #ff3333!important;
    text-shadow: 0 1px 1px #0006;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.5);
}

.discordWidget-stats__circle_gray {
    background-color: #b9bbbe
}

.xbox,
.faqModal__content,
.ruleAccordion,
.serverAccordion,
.Custom-module__wrapper,
.Header-module__wrapper,
.Product-module__wrapper,
.Shop-module__wrapper .boxBody,
.Shop-module__wrapper .boxFooter,
.ModalLayout-module__modal {
    box-shadow: 0 5px 15px var(--shadow-color-soft);
}

.xbox {
    background: #0f1828;
    border-radius: 8px;
    padding: 20px;
    color: white;
}

.xbox__header h4 {
    margin: 0;
    text-align: center;
    font-size: 18px;
}

.xbox__body {
    margin-top: 10px;
}

.xbox_bonus {
    font-size: 14px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    line-height: 2.5;
}

.xbox_bonus__cell {
    width: 50%;
    background: #3a4b5a;
    border-radius: 10px 0 0 10px;
    padding: 10px;
}

.xbox_bonus__cell.bonus {
    border-radius: 0 10px 10px 0;
    background: #4a5b6a;
}

.xbox__footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.xbox__button--discord,
.xbox__button--telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.xbox__button--discord:before,
.xbox__button--telegram:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.xbox__button--discord:hover:before,
.xbox__button--telegram:hover:before {
    left: 100%;
}

.xbox__button--discord {
    background-image: url('https://i.postimg.cc/nrd23QLF/free-icon-discord-3670157.png');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-color: #ff3333;
    padding-left: 40px;
}

.xbox__button--telegram {
    background-image: url('https://i.postimg.cc/YSf1XmX5/free-icon-round-16166102-1.png');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-color: #0088cc;
    padding-left: 40px;
}

.xbox__button--discord:hover {
    background-color: #5b6eae;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

.xbox__button--telegram:hover {
    background-color: #007bb5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.desc-service .tooltiptext {
    top: unset;
    bottom: 0;
    transform: translate(0, calc(100% + 17px));
    left: 0;
    background-color: #000000b3
}

.desc-service .tooltiptext:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-99%, -50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #00000080!important
}

@media screen and (max-width: 992px) {
    .desc-service .tooltiptext:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        transform: translate(-50%, -99%);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #000000b3!important
    }
}

.desc-service.tooltipparent:after {
    content: "?";
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #0003;
    border-radius: 8px 0 15px 0;
    padding: 3px 8px 2px 10px;
    line-height: initial;
    font-size: 12px;
    color: #e8e6e3
}

.faqModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    overflow-y: auto;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
    background-color: #13161b99;
    z-index: 9999
}

.faqModal ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.faqModal_active {
    opacity: 1;
    height: unset;
    width: unset;
    pointer-events: unset;
    transition: opacity .2s ease-out
}

.faqModal_active .faqModal__content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faqModal__content {
    margin: 30px auto;
    border-radius: 40px;
    box-shadow: 0 0 100px var(--modal-shadow-color);
    padding: 40px;
    opacity: 0;
    transform: translateY(-6px);
    max-width: 800px;
    width: 100%;
    min-width: 320px;
    background-color: #171925
}

.faqModal__content:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.faqModal__title {
    font-size: 24px;
    font-weight: 800;
    width: 100%;
    text-align: center;
    padding: 15px;
    color: #bbb;
    margin: 0;
    text-shadow: 1px 1px 1px #000
}

.faqModal__body {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 10px
}

.faqModal__body_active .faqModal__item-row {
    opacity: 1;
    transform: translateX(0)
}

.faqModal__body_animation .faqModal__item-row {
    transition: all .1s ease-out;
    opacity: 1;
    transform: translateX(0)
}

.faqModal__item-row {
    cursor: pointer;
    line-height: 16px;
    margin: 12px 0;
    opacity: 0;
    transform: translateX(-5px);
    font-size: 16px;
    color: #bbb;
    text-shadow: 1px 1px 1px #000;
    background: #2e3d6247;
    border-radius: 15px;
    padding: 5px 0 5px 15px
}

.faqModal__item-row:hover {
    text-decoration: underline
}

.faqModal__item-row_btn {
    color: #bdb8b8
}

.faqModal__item-row_btn svg {
    margin-left: 4px
}

.faqModal__item {
    padding: 20px
}

.faqModal__item-title {
    cursor: pointer;
    margin: 0;
    display: inline-flex;
    align-items: center;
    text-shadow: 1px 1px 1px #000;
    padding: 10px;
    background: #292f3659;
    font-weight: 700;
    border-radius: 8px
}

.faqModal__item-title:hover .faqModal__item-title-text {
    text-decoration: underline
}

.faqModal__item-title_static {
    cursor: default
}

.faqModal__item-title_static:hover .faqModal__item-title-text {
    text-decoration: none!important
}

.faqModal__item-title-text {
    font-size: 17px;
    color: #bbb
}

.faqModal__item-img {
    margin-right: 8px;
    border-radius: 3px;
    max-width: 32px;
    max-height: 32px;
    object-fit: cover
}

.faqModal__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.faqModal__backBtn {
    background-color: #ff3333;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 9px;
    transition: all .2s ease-out;
    color: #bbb;
    font-weight: 700;
    display: flex;
    align-items: center
}

.faqModal__backBtn svg {
    margin-right: 7px;
    transform: translateY(-2px)
}

.faqModal__backBtn:hover {
    background-color: #852a1b
}

.faqModal__item-help-list {
    padding: 0;
    margin-bottom: 20px
}

.faqModal__item-help-row {
    padding: 5px 10px;
    font-size: 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    margin: 10px 0
}

.faqModal__item-help-row_active {
    background: #403b3b29;
    border: 1px solid #292f3659;
    transition: all .2s ease-out
}

.faqModal__item-help-row_active .faqModal__item-help-row-title {
    font-size: 19px
}

.faqModal__item-help-row_active .faqModal__item-help-row-body {
    pointer-events: unset;
    transform: translateY(0);
    opacity: 1;
    height: unset;
    transition: opacity .2s ease-out, transform .2s ease-out
}

.faqModal__item-help-row-title {
    cursor: pointer;
    font-size: 18px;
    color: #bbb;
    transition: all .2s ease-out
}

.faqModal__item-help-row-title:hover {
    text-decoration: underline
}

.faqModal__item-help-row-body {
    padding: 5px 20px;
    transform: translateY(-5px);
    pointer-events: none;
    opacity: 0;
    height: 0;
    font-size: 16px;
    color: #bbb
}

.faqModal__item-help-row-body a {
    color: #64b5f6;
    text-decoration: none;
    transition: all .2s ease-out
}

.faqModal__item-help-row-body a:hover {
    color: #349ef3
}

.faqModal__closeBtn {
    background-color: #ff3333;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 9px;
    transition: all .2s ease-out;
    color: #bbb;
    font-weight: 700;
    margin-left: auto;
    display: block
}

.faqModal__closeBtn:hover {
    background-color: #852a1b
}

.ruleAccordion__block p {
    margin: 6px 0 0;
    text-align: left
}

.boxHeader.Shop-module__header, .boxHeader.MonitoringWidget-module__header {
    display: none
}

.MonitoringServer-module__link {
    display: none
}

.Widgets-module__widgetWrapper .boxFooter {
    display: none
}

.Widgets-module__widgetWrapper .boxBody {
    border-radius: 10px;
    padding: 20px 15px
}

.MonitoringServer-module__name {
    color: gray;
    font-weight: 700
}

.MonitoringServer-module__progressBarWrapper {
    height: 10px;
    background-color: #ffffff1a;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.MonitoringServer-module__progressBar {
    background-color: #ff3333!important;
    background-image: none;
    box-shadow: 5px 0 10px 4px #ff3333;
    transition: width 1s ease-in-out, box-shadow 0.3s ease;
    position: relative;
}

.MonitoringServer-module__progressBarAnim {
    background-image: linear-gradient(45deg, #ffffff26 25%, transparent 25%, transparent 50%, #ffffff26 50%, #ffffff26 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    box-shadow: none;
    animation: progressAnimation 1.5s linear infinite;
}

@keyframes progressAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 0;
    }
}

.MonitoringServer-module__progressBarWrapper:hover .MonitoringServer-module__progressBar {
    box-shadow: 5px 0 15px 6px #ff3333;
}

.menu {
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    height: 60px;
    left: 12px;
    top: 20px;
    width: 60px
}

.hamburger {
    cursor: pointer;
    height: 30px;
    left: 25%;
    position: relative;
    top: 25%;
    width: 30px
}

.ruleAccordion-wrapper {
    margin-bottom: 20px
}

.ruleAccordion {
    margin-bottom: 15px;
    transition: all .2s ease-out;
    padding: 10px 20px
}

.ruleAccordion.ruleAccordion_active .ruleAccordion__block {
    height: auto;
    opacity: 1;
    pointer-events: all;
    margin-top: 0;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                margin-top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ruleAccordion.ruleAccordion_active .ruleAccordion__title {
    margin-bottom: 10px;
    transition: margin-bottom .2s step-end
}

.ruleAccordion__title {
    cursor: pointer;
    margin: 0!important;
    transition: height 0s step-end;
    padding: 10px 0
}

.ruleAccordion__block {
    height: 0;
    opacity: 0;
    pointer-events: none;
    margin-top: -7px;
    transform: translateY(-5px)
}

.ruleAccordion__block p {
    margin: 6px 0 0
}

.serverAccordion-wrapper {
    margin-bottom: 20px
}

.serverAccordion {
    margin-bottom: 15px;
    transition: all .2s ease-out;
    border: #e5e5e5 solid 2px;
    border-radius: 8px
}

.serverAccordion.serverAccordion_active .serverAccordion__block {
    height: auto;
    opacity: 1;
    pointer-events: all;
    margin-top: 0;
    transform: translateY(0);
    padding: 0 20px 20px;
    transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                margin-top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.serverAccordion.serverAccordion_active .serverAccordion__title svg {
    transform: rotate(90deg)
}

.serverAccordion.serverAccordion_active .serverAccordion__title:hover {
    background: transparent
}

.serverAccordion__info {
    margin-bottom: 10px;
    padding-bottom: 10px
}

.serverAccordion__header {
    background-color: #ff3333!important;
    text-shadow: 1px 1px 1px #333;
    padding: 0 4px 2px;
    border-radius: 4px;
    margin-bottom: 6px
}

.serverAccordion__title {
    cursor: pointer;
    margin: 0!important;
    transition: height 0s step-end;
    padding: 20px
}

.serverAccordion__title:hover {
    background: #5a595929
}

.serverAccordion__title svg {
    transition: all .2s ease-out;
    margin-right: 5px
}

.serverAccordion__block {
    height: 0;
    opacity: 0;
    pointer-events: none;
    margin-top: -7px;
    transform: translateY(-5px);
    padding: 0
}

.serverAccordion__block p {
    margin: 6px 0 0
}

.Header-module__wrapper {
    background: #0f1828;
    border-radius: 8px;
    font-size: 16px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 20px;
    margin-top: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px var(--shadow-color-soft);
}

.Header-module__wrapper:hover {
    box-shadow: 0 8px 25px var(--shadow-color-medium);
}

.Header-module__button {
    background-color: #ff3333;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.Header-module__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.Header-module__button:hover::before {
    left: 100%;
}

.Header-module__button--telegram {
    background-color: #0088cc;
}

.Header-module__button:hover {
    background-color: #5b6eae;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

.Header-module__button--telegram:hover {
    background-color: #007bb5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.navbar-brand {
    margin: 0 10px 0 3px;
    height: 53px;
    background-repeat: no-repeat;
    background-image: url();
    background-position: 100%;
    background-size: auto 100%;
    color: transparent!important
}

.Header-module__nav {
    margin-left: 10px
}

.HeaderNav-module__link, .SupportLink-module__link, .LangSwitcher-module__btn, .PlayerBalance-module__btn, .PlayerMenu-module__profileLink, .PlayerMenu-module__loginLink {
    color: #ffffffab;
    background: #292f3659;
    border-radius: 6px;
    position: relative;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px
}

.LangSwitcher-module__btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all .1s ease;
    max-height: 40px
}

.LangSwitcher-module__list {
    left: -40%;
    background: #30395b
}

.LangSwitcher-module__lang:hover, .LangSwitcher-module__lang:focus {
    background-color: #ff3333!important
}

.HeaderNav-module__link:focus, .SupportLink-module__link:focus, .LangSwitcher-module__btn:focus, .PlayerBalance-module__btn:focus, .PlayerMenu-module__profileLink:focus, .PlayerMenu-module__loginLink:focus {
    color: #ffffffab;
    background: #292f3659
}

.HeaderNav-module__link:hover, .SupportLink-module__link:hover, .LangSwitcher-module__btn:hover, .PlayerBalance-module__btn:hover, .PlayerMenu-module__profileLink:hover, .PlayerMenu-module__loginLink:hover {
    color: #fff;
    background: #ff3333!important;
    text-shadow: 0 1px 1px #0006;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 51, 51, 0.5);
}

.Banner-module__img {
    display: none
}

.info-donate {
    display: block;
    margin-bottom: 14px;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    color: #a09fa3;
    background: #1e273680;
    border-radius: 15px;
    border: 1px solid #1e2736
}

.info-donate-ds {
    color: #d0cddb
}

.Servers-module__server {
    min-width: 100px;
    background-color: #1e2736;
    color: #bfbfbf;
    border-radius: 4px
}

.Servers-module__server:focus {
    background-color: #1e2736;
    color: #bfbfbf
}

.Servers-module__server:hover {
    background-color: #131f34;
    color: #ffffffb3
}

.Servers-module__server.Servers-module__active {
    background: #ff3333ab;
    border-radius: .4rem
}

.Categories-module__category.Categories-module__enableFocus {
    background-color: #1e2736;
    color: #ffffffb3;
    border-radius: 9px;
    font-size: 14px
}

.Categories-module__category.Categories-module__enableFocus:focus {
    background-color: #1e2736;
    color: #ffffffb3
}

.Categories-module__category.Categories-module__enableFocus:hover {
    background-color: #131f34;
    color: #ffffffb3
}

.Categories-module__category.Categories-module__active {
    color: #fff;
    background: #ff3333!important;
    text-shadow: 0 1px 1px #0006
}

.Search-module__wrapper {
    border-radius: 8px;
    background: #1e2736
}

.Search-module__iconWrapper {
    background: #131f34
}

.divInfo {
    color: #ffffff4d;
    text-align: center;
    font-size: 13px;
    padding: 16px
}

.Shop-module__wrapper .boxBody {
    border-radius: 11px 11px 0 0
}

.Shop-module__wrapper .boxFooter {
    background-color: #292f3663;
    border-radius: 0 0 11px 11px
}

.ShopFooter-module__link {
    color: #ff3333c2
}

.ShopFooter-module__link:hover, .ShopFooter-module__link:focus {
    color: #ff3333
}

.Product-module__wrapper {
    background: #46464624;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--shadow-color-soft);
    position: relative;
    overflow: hidden;
}

.Product-module__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transition: left 0.7s ease;
    z-index: 2;
    pointer-events: none;
}

.Product-module__wrapper:hover::before {
    left: 100%;
}

.Product-module__wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.4) 0%, rgba(255, 51, 51, 0.3) 100%), var(--product-bg-color, #46464624);
    opacity: 0;
    transition: opacity .3s ease-in-out;
    z-index: -1;
    border-radius: inherit;
}

.Product-module__wrapper:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 25px var(--shadow-color-medium);
}

.Product-module__name, .Product-module__discount {
    background-color: #ff3333;
    text-align: center
}

.Product-module__name {
    padding: 4px 8px
}

.Product-module__discount {
    border-radius: 0 8px 0 2px
}

.Product-module__price {
    background-color: #2e3d6247
}

.ProductModal-module__command, .ProductModal-module__bp, .ProductModal-module__item, .ProductModal-module__dropdown {
    width: 350px;
    border-radius: 6px;
}

.ProductModal-module__header.boxHeader {
    border-radius: 10px 30px 0 0
}

.SelectContent-module__footer.boxFooter {
    border-radius: 0 0 10px 30px
}

.ProductModal-module__header {
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center
}

.productModalDescription img {
    border-radius: 8px;
    transition: all .2s cubic-bezier(.79, .14, .15, .86);
    cursor: pointer;
    z-index: 10;
    position: relative;
    background: #6F7DFA
}

.productModalFormRow {
    display: flex;
    flex-direction: column;
    padding: 0 10px
}

.TotalSum-module__inputWrapper, .CountSelector-module__inputWrapper {
    border-radius: 5px 15px 5px 15px;
    background: #1e2736!important
}

.TotalSum-module__currency {
    background: #1c2030
}

.CountSelector-module__changeCountBtn.CountSelector-module__left, .CountSelector-module__changeCountBtn.CountSelector-module__right {
    background: #1c2030;
    border: none
}

.SelectContent-module__footer.boxFooter .Button-module__btn.Button-module__gray {
    background: #2e3d6247;
    border-radius: 9px
}

.SelectContent-module__footer.boxFooter .Button-module__btn.Button-module__accent {
    background: #ff3333!important;
    border-radius: 9px;
    border: none
}

.ProductItemSelector-module__serverSelector.dropDownWrapper .dropDownCurrentItem, .dropDownCurrentItem:hover, .dropDownCurrentItem:focus {
    border-radius: 2px;
    border: 1px solid #ff3333;
    background-color: #1d2336;
    outline: none
}

.ProductItemSelector-module__serverSelector.dropDownWrapper .dropDownList {
    background-color: #131f34;
    color: #ffffffb3;
    outline: 1px solid #ff3333
}

.ProductItemSelector-module__serverSelector.dropDownWrapper .dropDownItem:hover, .ProductItemSelector-module__serverSelector.dropDownWrapper .dropDownItem:focus {
    background: #ff3333ab
}

.ProductItemSelector-module__serverSelector.dropDownWrapper .dropDownItem.ProductItemSelector-module__active {
    background: #ff3333!important;
    text-shadow: 0 1px 1px #0006
}

.ProductModal-module__header.boxHeader {
    font-size: 20px;
    font-weight: 700;
    display: block;
    text-align: center;
    color: #bbb;
    text-transform: uppercase
}

.ModalLayout-module__wrapper {
    backdrop-filter: blur(2px);
    background-color: transparent
}

.ModalLayout-module__modal {
    border-radius: 16px
}

.PlayerBalanceModal-module__header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #bbb;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 16px 16px 0 0
}

.PlayerBalanceModal-module__footer {
    border-radius: 0 0 16px 16px;
    background: #1e2736
}

.PlayerBalanceModal-module__footer .Button-module__btn.Button-module__accent {
    background: #ff3333ab;
    border-radius: .4rem;
    border: none
}

.PlayerBalanceModal-module__footer .Button-module__btn.Button-module__accent:hover, .PlayerBalanceModal-module__footer .Button-module__btn.Button-module__accent:focus {
    color: #fff;
    background: #ff3333!important;
    text-shadow: 0 1px 1px #0006
}

.PlayerBalanceModal-module__footer .Button-module__btn.Button-module__gray {
    border-radius: .4rem;
    border: none
}

.PlayerBalanceModal-module__inputWrapper {
    background: #1e2736;
    border-radius: 3px 15px 3px 3px
}

.PlayerBalanceModal-module__currency {
    background: #ff3333ab;
    min-width: 40px
}

.ProfileContent-module__infoLine {
    background-color: #131f34;
    color: #ffffffb3
}

.ProfileContent-module__infoLine+.ProfileContent-module__infoLine {
    border-top: 1px solid #ffffff4f
}

.ProfileContent-module__infoLineValue.ProfileContent-module__steamid {
    color: #ff3333
}

.ProfileContent-module__infoLineValue.ProfileContent-module__steamid:hover {
    color: #ff3333
}

.ProfileContent-module__infoWrapper .ProfileContent-module__title, .ProfileContent-module__infoWrapper .Selector-module__dropDownWrapper {
    display: none
}

.ProfileContent-module__input {
    background: #1e2736;
    border-radius: 8px
}

.ProfileContent-module__inputWrapper .Button-module__btn.Button-module__accent {
    background: #292f3659;
    border-radius: 8px;
    border: none
}

.ProfileContent-module__inputWrapper .Button-module__btn.Button-module__accent:hover {
    color: #fff;
    background: #ff3333!important;
    text-shadow: 0 1px 1px #0006
}

.ProfileContent-module__header.boxHeader, .ProfileNav-module__header.boxHeader, .BasketContent-module__header.boxHeader, .HistoryContent-module__header.boxHeader, .SupportContent-module__wrapper .boxHeader {
    background-color: #292f3663;
    border-radius: 11px 11px 0 0
}

.ProfileContent-module__body.boxBody, .ProfileNav-module__wrapper .boxFooter, .BasketContent-module__wrapper .boxBody, .HistoryContent-module__wrapper .boxBody, .SupportContent-module__wrapper .boxBody {
    border-radius: 0 0 11px 11px
}

.ProfileNav-module__name {
    color: #fff;
    font-weight: 700
}

.Profile-module__wrapper .boxFooter {
    border-radius: 0 0 11px 11px;
    background-color: #292f3663
}

.ProfileNav-module__navItem {
    background-color: #ffffff1a;
    border-radius: .4rem;
    color: #adadad
}

.ProfileNav-module__navItem:focus {
    background-color: #ffffff1a;
    color: #adadad
}

.ProfileNav-module__navItem:hover {
    background-color: #131f34;
    color: #ffffffb3
}

.ProfileNav-module__navItem.ProfileNav-module__active {
    background: #ff3333ab;
    color: #ffffffb3
}

.BasketSearch-module__wrapper {
    border-radius: 8px;
    background: #1e2736
}

.BasketSearch-module__iconWrapper {
    background: #131f34
}

.BasketTable-module__tableTitle {
    color: #f7f6f6
}

.BasketTable-module__tableLine, .BasketTable-module__tableHeader {
    padding: 3px 12px;
    border-bottom: 1px solid #292c2e
}

.BasketTable-module__tableLine:nth-child(2n-1) {
    background-color: transparent
}

.HistorySearch-module__wrapper {
    border-radius: 8px;
    background: #1e2736
}

.HistorySearch-module__iconWrapper {
    background: #131f34
}

.HistoryTable-module__tableTitle {
    color: #f7f6f6
}

.HistoryTable-module__tableLine:nth-child(2n-1) {
    background-color: transparent
}

.HistoryTable-module__tableLine, .HistoryTable-module__tableHeader {
    padding: 9px 12px;
    border-bottom: 1px solid #292c2e
}

.Pagination-module__page:hover, .Pagination-module__page.Pagination-module__active, .Pagination-module__page:focus {
    color: #ff3333
}

.Toast-module__toast {
    background: #1a2232
}

.ProfileNav-module__wrapper .boxFooter .Button-module__btn.Button-module__accent {
    background-color: #ff3333;
    border-color: #ff3333
}

.TicketsTable-module__tableTitle {
    color: #f7f6f6!important
}

.TicketsTable-module__tableLine, .TicketsTable-module__tableHeader {
    padding: 3px 12px;
    border-bottom: 1px solid #292c2e
}

.TicketsTable-module__tableLine:nth-child(2n-1) {
    background-color: transparent!important
}

.TicketsTable-module__tableLine:hover .TicketsTable-module__value:not(:last-child) {
    color: #ff3333!important
}

.TicketsMenu-module__wrapper .Button-module__btn.Button-module__gray, .NewTicketModal-module__footer .Button-module__btn.Button-module__gray {
    border-radius: .4rem;
    background-color: #292f3659;
    border: none
}

.TicketsMenu-module__wrapper .Button-module__btn.Button-module__gray:hover, .NewTicketModal-module__footer .Button-module__btn.Button-module__gray:hover {
    color: #fff;
    background: #ff3333!important;
    text-shadow: 0 1px 1px #0006
}

.TicketsMenu-module__wrapper .Button-module__btn.Button-module__accent, .NewTicketModal-module__footer .Button-module__btn.Button-module__accent {
    border-radius: .4rem;
    background-color: #ff3333ab;
    border: none
}

.TicketsMenu-module__wrapper .Button-module__btn.Button-module__accent:hover, .NewTicketModal-module__footer .Button-module__btn.Button-module__accent:hover {
    color: #fff;
    background: #ff3333!important;
    text-shadow: 0 1px 1px #0006
}

.TicketMessageTextArea-module__textarea {
    border-radius: 2px;
    border: 1px solid #ff3333;
    background-color: #1d2336
}

.TicketThemeInput-module__inputWrapper {
    border-radius: 8px!important;
    background: #1e2736!important
}

.TicketThemeInput-module__iconWrapper {
    background: #131f34!important
}

.NewTicketModal-module__multiCol .Selector-module__dropDownCurrentItem {
    border-radius: 8px!important;
    background: #1e2736!important
}

.NewTicketModal-module__multiCol .Selector-module__dropDownCurrentItem:hover, .Selector-module__dropDownCurrentItem:focus {
    outline: 1px solid #ff3333
}

.NewTicketModal-module__multiCol .Selector-module__dropDownList.Selector-module__openOnBottom {
    background-color: #131f34;
    color: #ffffffb3
}

.NewTicketModal-module__multiCol .Selector-module__dropDownItem:hover, .NewTicketModal-module__multiCol .Selector-module__dropDownItem:focus {
    background: #ff3333ab
}

.NewTicketModal-module__multiCol .Selector-module__dropDownItem.Selector-module__active {
    background: #ff3333!important;
    text-shadow: 0 1px 1px #0006
}

.customModalContent {
    background-color: #171925;
    border-radius: 15px 30px 15px 30px;
    width: 900px
}

.customModalContent .boxHeader {
    border-radius: 15px 30px 0 0;
    font-size: 35px;
    font-weight: 700;
    display: block;
    text-align: center;
    color: #bbb;
    padding-top: 15px;
    text-transform: uppercase
}

.customModalContent .boxFooter {
    border-radius: 0 0 15px 30px
}

.modal, .modal-open {
    overflow: hidden
}

.customModalContent .boxFooter .btn.Button-module__btn.Button-module__gray {
    background: #ff3333!important;
    color: #bebcbc
}

.serverAccordion__block p {
    margin: 6px 0 0;
    text-align: left
}

.HeaderNav-module__wrapper a[href="/"] {
    display: none
}

.gs-loader {
    background-color: transparent;
    backdrop-filter: blur(5px)
}

@keyframes loader4 {
    from {
        transform: rotate(360deg)
    }

    to {
        transform: rotate(0)
    }
}

.DesktopCopyright-module__link {
    color: #ff3333
}

.TicketsTable-module__status.TicketsTable-module__open {
    background-color: #ff3333!important
}

.TicketModal-module__footer.boxFooter .Button-module__btn.Button-module__accent {
    background: #ff3333ab;
    border-radius: .4rem;
    border: none
}

.TicketModal-module__footer.boxFooter .Button-module__btn.Button-module__accent:hover, .TicketModal-module__footer.boxFooter .Button-module__btn.Button-module__accent:focus {
    color: #fff;
    background: #ff3333!important;
    text-shadow: 0 1px 1px #0006
}

.TicketModal-module__messageAuthor {
    color: #ff3333!important
}

div[data-currentserverid="28851"].Products-module__wrapper.Products-module__grid5 {
    margin-top: 15px;
    width: 100%;
    display: flex;
    gap: 15px;
    justify-content: center
}

div[data-currentserverid="28851"].Products-module__wrapper.Products-module__grid5 .Product-module__wrapper {
    max-width: 154px
}
.Custom-module__wrapper {
    background: #0f1828;
    border-radius: 8px;
    font-size: 16px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    margin-top: 30px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px var(--shadow-color-soft);
}

.Custom-module__wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color-medium);
}

.Custom-module__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.Custom-module__footer {
    text-align: center;
    width: 100%;
}

.Custom-module__footer span {
    color: #e0e0e0;
    font-size: 14px;
}

.Custom-module__footer strong {
    color: #ffffff;
    font-weight: 700;
}

/* Стилизация для фокуса на элементах */
button:focus, a:focus, input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-color-800);
}

/* Анимация загрузки страницы для блоков */
@keyframes fadeInStagger {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.xbox,
.faqModal__content,
.ruleAccordion,
.serverAccordion,
.Custom-module__wrapper,
.Header-module__wrapper,
.Product-module__wrapper {
    opacity: 0;
    animation: fadeInStagger 0.5s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

/* Добавляем эффект 3D-глубины при наведении */
.Product-module__wrapper:hover,
.xbox:hover,
.Header-module__wrapper:hover,
.Custom-module__wrapper:hover {
    transform: perspective(1000px) translateY(-5px) rotateX(5deg);
    box-shadow: 0 15px 25px var(--shadow-color-hard);
}

/* Применяем улучшенные кривые Безье к элементам */
.xbox__button--discord:hover,
.xbox__button--telegram:hover,
.Header-module__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
    transition: all 0.3s var(--animation-ease-out-bounce);
}

.btn:hover::before {
    left: 100%;
    transition: left 0.5s var(--animation-swift-out);
}

.Product-module__wrapper:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 25px var(--shadow-color-medium);
    transition: all 0.4s var(--animation-ease-out-smooth);
}

.Header-module__wrapper:hover,
.Custom-module__wrapper:hover,
.faqModal__content:hover,
.ruleAccordion:hover,
.serverAccordion:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color-medium);
    transition: all 0.3s var(--animation-ease-out-bounce);
}

/* Анимация "дыхание" для важных элементов */
@keyframes gentle-breathing {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.important-button {
    animation: gentle-breathing 4s var(--animation-soft-spring) infinite;
}

/* Оптимизирум длительность анимаций */
.fadeInUp, 
.fadeInDown, 
.fadeInRight, 
.fadeInLeft { 
    animation-duration: 350ms; /* Оптимальная длительность для кратких анимаций */
}

.fadeInScale { 
    animation-duration: 280ms; /* Чуть быстрее для масштабирования */
}

.float { 
    animation-duration: 3s; /* Более плавная анимация парения */
}

/* Добавляем кнопку Steam */
.xbox__button--steam {
    background-image: url('https://i.postimg.cc/cCLcVdwH/Steam.png');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-color: #171a21; /* Темный цвет Steam */
    padding-left: 40px;
    position: relative;
    overflow: hidden;
}

.xbox__button--steam:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.xbox__button--steam:hover:before {
    left: 100%;
}

.xbox__button--steam:hover {
    background-color: #1b2838; /* Более светлый оттенок синего при наведении */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(23, 26, 33, 0.6);
    transition: all 0.3s var(--animation-ease-out-bounce);
}

/* Стиль для кнопки в хедере */
.Header-module__button--steam {
    background-color: #171a21;
    background-image: url('https://i.postimg.cc/cCLcVdwH/Steam.png');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 35px;
}

.Header-module__button--steam:hover {
    background-color: #1b2838;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(23, 26, 33, 0.6);
}