@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css");

/* Убираем лишние строки:
-webkit-backdrop-filter
backdrop-filter
*/

.DesktopCopyright-module__wrapper {
    mix-blend-mode: difference;
}

/* ================================
   СТИЛИ ДЛЯ ОПИСАНИЯ ТОВАРА (как в примере)
   ================================ */

/* Убираем скрытие описания */
.productModalDescription {
    display: block !important;
    color: #fff;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Основной контейнер описания */
.service__description {
    width: 100%;
}

/* Заголовок категории */
.perm_desc_title {
    font-size: 24px;
    font-weight: 700;
    color: #fc0;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-align: left;
    border-bottom: 2px solid #fc0;
    padding-bottom: 8px;
    letter-spacing: 1px;
}

/* Контейнер для каждой секции */
.perm_desc_1, .perm_desc_2, .perm_desc_3 {
    margin-bottom: 40px;
    position: relative;
}

/* Контейнер элемента */
.perm_dop_item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(90deg, rgba(32, 32, 32, 0.8) 0%, rgba(22, 38, 37, 0.9) 100%);
    border-radius: 12px;
    border-left: 4px solid #fc0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px;
}

.perm_dop_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(252, 192, 0, 0.2);
    border-left: 4px solid #ff4081;
}

/* Название характеристики */
.perm_dop_item_name {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    min-width: 200px;
    padding-right: 20px;
    line-height: 1.4;
}

/* Значение характеристики */
.perm_dop_item_value {
    flex: 0 0 120px;
    text-align: center;
    font-weight: 800;
    color: #fc0;
    font-size: 2.9rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding-top: 37px;
}

/* Специальные стили для некоторых значений */
.perm_dop_item_value[style*="font-size: xx-large"] {
    font-size: 2.5rem !important;
    padding-top: 20px !important;
}

.perm_dop_item_value[style*="color: rgb(255, 99, 71)"] {
    color: #ff6347 !important;
}

.perm_dop_item_value[style*="color: rgb(218 218 218)"] {
    color: #dadada !important;
}

/* Изображение в элементе */
.perm_dop_item_image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 25px;
    border: 2px solid #fc0;
    position: relative;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perm_dop_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Иконка поиска */
.perm_dop_item_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fc0;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 10px rgba(252, 192, 0, 0.8);
    z-index: 2;
}

.perm_dop_item:hover .perm_dop_item_icon {
    opacity: 1;
}

.perm_dop_item:hover .perm_dop_item_image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Всплывающая подсказка */
.product__name {
    position: absolute;
    left: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    background: #162625;
    border: 2px solid #fc0;
    padding: 15px;
    border-radius: 10px;
    width: 280px;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    text-align: left;
}

.product__name::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent #fc0 transparent transparent;
}

.product__name::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent #162625 transparent transparent;
    margin-right: -2px;
}

.perm_dop_item:hover .product__name {
    opacity: 1;
    visibility: visible;
}

/* Для первой подсказки с другим расположением */
.product__name[style*="top: -56px"] {
    top: -56px;
    transform: none;
}

.product__name[style*="top: -56px"]::before {
    top: 70px;
    right: 100%;
    transform: none;
    border-color: transparent #fc0 transparent transparent;
}

.product__name[style*="top: -56px"]::after {
    top: 70px;
    right: 100%;
    transform: none;
    border-color: transparent #162625 transparent transparent;
    margin-right: -2px;
}

/* Секция с временем действия */
.perm_desc_1 .ml-auto {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
}

/* Секция с китами */
.perm_desc_3 .perm_dop_item {
    cursor: pointer;
    background: linear-gradient(90deg, rgba(32, 32, 32, 0.9) 0%, rgba(70, 0, 51, 0.9) 100%);
}

.perm_desc_3 .perm_dop_item:hover {
    background: linear-gradient(90deg, rgba(32, 32, 32, 1) 0%, rgba(120, 0, 80, 0.9) 100%);
}

/* Изображение товара */
.service__image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(252, 192, 0, 0.5));
}

/* Стили для формы цены */
.form-group {
    margin: 30px 0;
    padding: 20px;
    background: rgba(22, 38, 37, 0.8);
    border-radius: 10px;
    border: 1px solid #333;
}

.form-group label {
    color: #fc0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.input-group {
    display: flex;
    align-items: center;
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #333;
}

.input-group-addon {
    background: #fc0;
    color: #1e1e1e;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 18px;
    min-width: 80px;
    text-align: center;
}

.form-control {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 12px 20px;
    outline: none;
}

/* Информация о серверах */
.product__servers {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 99, 71, 0.1);
    border: 1px solid rgba(255, 99, 71, 0.3);
    border-radius: 8px;
    color: #ff6347;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

/* Адаптация под мобильные */
@media (max-width: 992px) {
    .perm_dop_item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .perm_dop_item_name {
        width: 100%;
        margin-bottom: 15px;
        min-width: auto;
    }
    
    .perm_dop_item_value {
        align-self: flex-start;
        text-align: left;
        padding-top: 0 !important;
        margin-bottom: 15px;
    }
    
    .perm_dop_item_image {
        margin: 15px 0;
    }
    
    .product__name {
        position: static;
        opacity: 1;
        visibility: visible;
        width: 100%;
        margin-top: 15px;
        transform: none;
        margin-left: 0;
        box-shadow: none;
    }
    
    .product__name::before,
    .product__name::after {
        display: none;
    }
    
    .service__image {
        width: 100px;
        height: 100px;
    }
    
    .perm_desc_title {
        font-size: 20px;
    }
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.perm_dop_item {
    animation: fadeInUp 0.5s ease forwards;
}

.perm_dop_item:nth-child(1) { animation-delay: 0.1s; }
.perm_dop_item:nth-child(2) { animation-delay: 0.2s; }
.perm_dop_item:nth-child(3) { animation-delay: 0.3s; }
.perm_dop_item:nth-child(4) { animation-delay: 0.4s; }
.perm_dop_item:nth-child(5) { animation-delay: 0.5s; }
.perm_dop_item:nth-child(6) { animation-delay: 0.6s; }
.perm_dop_item:nth-child(7) { animation-delay: 0.7s; }
.perm_dop_item:nth-child(8) { animation-delay: 0.8s; }
.perm_dop_item:nth-child(9) { animation-delay: 0.9s; }
.perm_dop_item:nth-child(10) { animation-delay: 1.0s; }
.perm_dop_item:nth-child(11) { animation-delay: 1.1s; }
.perm_dop_item:nth-child(12) { animation-delay: 1.2s; }

.swiper {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
}

.swiper-pagination-bullet-active {
    background-color: #ffffff;
}

:root[data-theme] {
    --product-items-trans-bg-color: none;
    --accent-color-800: #fff;
    --accent-color-900: #fff;
    --bg-color-900: #162625;
    --bg-color-700: #162625;
}

/* Исправленный селектор body */
body {
    background-image: url("https://gspics.org/images/2025/10/17/IHTD6j.png") !important;
    background-size: cover;
    background-attachment: fixed;
}

* {
    font-family: "Inter", sans-serif;
}

.LangSwitcher-module__currentLang, 
.Product-module__oldPrice, 
.Banner-module__img, 
.boxHeader.Shop-module__header, 
.boxHeader.MonitoringWidget-module__header, 
.Widgets-module__widgetWrapper .boxFooter {
    display: none;
}

.PlayerMenu-module__loginLink {
    background: #fff;
    color: #515151;
}

.PlayerMenu-module__loginLink:hover {
    background: #dfb200;
}

.Shop-module__wrapper .boxBody {
    background: none;
}

.Product-module__wrapper {
    height: 200px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    background: #162625;
}

.Product-module__wrapper:hover {
    background: linear-gradient(180deg, #162625 0%, #576683 100%), #162625;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.Product-module__img {
    transform: scale(0.7);
}

.Product-module__discount {
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 600;
    padding: 5px;
    border-radius: 10px;
    background: #fff;
    transform: translate(-10px, 10px);
    z-index: 1;
}

.Product-module__price {
    background: none;
    width: 100%;
    position: initial;
    color: #fff;
    font-weight: 600;
    transform: translateY(150px);
}

.Product-module__img {
    transform: translateY(-20px);
}

.RouletteContent-module__lineWrapper {
    background: #162625;
}

.productModalContainsItem {
    background: #202020;
    border-radius: 20px;
}

.RouletteContent-module__footer.boxFooter {
    border-radius: 0px 0px 20px 20px;
}

.RouletteContent-module__rouletteItem {
    border-radius: 20px;
    background: #202020;
}

.RouletteContent-module__triangle.RouletteContent-module__bottom {
    display: none;
}

.Product-module__name {
    z-index: 6;
    transition: all .2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    left: 7px;
    color: #fff;
    transform: translateY(0);
    top: 130px;
}

.DesktopCopyright-module__text {
    color: #fff;
}

.MonitoringServer-module__progressBarAnim {
    background: conic-gradient(from -30deg at 25%, #fc0 240deg, #fc0 0%) 0/1.44em, conic-gradient(from -30deg at 75%, #fc0 240deg, #fc0 0%) 0/1.44em;
}

.MonitoringServer-module__progressBarWrapper {
    background-color: #414141;
}

.widget-ds, .widget-vk {
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
    background: #5865f2;
    display: flex;
    padding: 20px 40px;
    align-items: center;
    color: white;
    justify-content: space-between;
}

.widget-ds:hover {
    transform: scale(1.05);
}

.widget-vk:hover {
    transform: scale(1.05);
}

.MonitoringWidget-module__body.boxBody {
    border-radius: 20px;
}

.Header-module__wrapper {
    background: none;
}

.Categories-module__category {
    color: white;
    border-radius: 10px;
    padding: 10px;
}

.Categories-module__category:hover {
    background-color: #515151;
    color: #ffffff;
}

.Categories-module__category.Categories-module__active, 
.Categories-module__category.Categories-module__enableFocus:focus {
    color: #515151;
}

.Header-module__logo {
    width: 80px;
    cursor: pointer;
    content: url("https://gspics.org/images/2025/10/17/IHT1FJ.png");
}

.gs-loader__spinner {
    content: url("https://gspics.org/images/2025/10/17/IHT1FJ.png");
}

.container {
    transform: translateY(10px);
    color: #1e1e1e00 !important;
}

.Categories-module__categories {
    display: inline-block;
}

.Servers-module__servers {
    display: none;
}

.Search-module__wrapper {
    border-radius: 20px;
}

.Search-module__iconWrapper {
    background: #162625;
}

.Search-module__icon path {
    stroke: #fff;
}

button[data-categoryid="302598"] {
    background: linear-gradient(64deg, #f00 0%, #ff7a00 100%);
    color: #1e1e1e;
}

button[data-categoryid="331312"] {
    background: linear-gradient(80deg, #fff 0%, #8fff00 100%), #162625;
    color: #1e1e1e;
}

button[data-categoryid="302583"] {
    background: linear-gradient(130deg, #3b6cd1 0%, #b96cf6 100%);
    color: #1e1e1e;
}

.Button-module__btn.Button-module__accent {
    color: #ffffff;
    background-color: #c03;
    border: none;
}

.Button-module__btn.Button-module__accent:hover,
.Button-module__btn.Button-module__accent:focus {
    background-color: #515151;
    border: none;
    color: #fff;
}

.PlayerMenu-module__profileLink:hover {
    background-color: #515151;
    color: #fff;
}

.PlayerBalance-module__btn:hover {
    background-color: #515151;
    color: #fff;
}

.ProductModal-module__header.boxHeader, 
.ProfileNav-module__header.boxHeader, 
.ProfileContent-module__header.boxHeader, 
.BasketContent-module__header.boxHeader, 
.HistoryContent-module__header.boxHeader {
    border-radius: 20px 20px 0px 0px;
}

.ItemContent-module__footer.boxFooter, 
.ProfileNav-module__wrapper .boxFooter, 
.ProfileContent-module__body.boxBody, 
.BasketContent-module__wrapper .boxBody, 
.HistoryContent-module__wrapper .boxBody {
    border-radius: 0px 0px 20px 20px;
}

.Selector-module__dropDownItem:hover,
.Selector-module__dropDownItem:focus,
.Selector-module__dropDownItem.Selector-module__active {
    background-color: #515151;
}

.ProfileNav-module__navItem:hover,
.ProfileNav-module__navItem:focus,
.ProfileNav-module__navItem.ProfileNav-module__active {
    background: #fc0;
    color: #515151;
}

.CountSelector-module__changeCountBtn.CountSelector-module__left, 
.CountSelector-module__changeCountBtn.CountSelector-module__right {
    border: none;
}

.PlayerBalanceModal-module__currency, 
.BasketSearch-module__iconWrapper, 
.HistorySearch-module__iconWrapper, 
.TotalSum-module__currency {
    background: #162625;
    color: #c5c5c5;
}

.ProfileNav-module__header.boxHeader {
    display: none;
}

.ProfileNav-module__body.boxBody {
    background: none;
    text-align: center;
    padding: 1px;
}

.ProfileNav-module__wrapper.ProfileNav-module__rightSide .boxFooter {
    background: none;
    padding: 1px;
    margin-top: 20px;
}

.ProfileNav-module__navItem {
    color: #fff;
}

.ProfileContent-module__input {
    background: #414141;
}

.ProfileContent-module__infoLine+.ProfileContent-module__infoLine {
    border-top: none;
}

.ProfileContent-module__body.boxBody::before {
    content: "Промокоды можно найти в сообществе Discord/Telegram сервера.";
    border-radius: 20px;
    position: absolute;
    width: 45%;
    color: #fff;
    background: linear-gradient(65deg, #5865f2 0%, #5865f2 40%, #fff 50%, #5865f2 60%, #0b5aba 100%);
    background-size: 400% 400%;
    padding: 15px 30px;
    animation: gradient 5s ease infinite;
    transform: translate3d(0, 0, 0);
    transform: translateY(300px);
}

@media screen and (max-width: 992px) {
    .ProfileContent-module__body.boxBody::before {
        position: static;
        width: auto;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.modal {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

#modal-servers .modal__container,
#modal-rules .modal__container {
    min-width: 850px;
}

#modal-servers .modal__container .modal__header,
#modal-rules .modal__container .modal__header {
    margin-bottom: 20px;
}

#modal-servers .modal__container .modal__header .modal__close::before,
#modal-rules .modal__container .modal__header .modal__close::before {
    font-size: 24px;
}

#modal-servers .modal__container .modal__header h2,
#modal-rules .modal__container .modal__header h2 {
    color: #fc0;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

#modal-servers .modal__container .modal__content,
#modal-rules .modal__container .modal__content {
    margin: 0;
}

#modal-servers .modal__container .modal__content .accordions,
#modal-rules .modal__container .modal__content .accordions {
    padding: 0;
    margin: 0;
}

#modal-servers .modal__container .modal__content .accordions .accordion,
#modal-rules .modal__container .modal__content .accordions .accordion {
    background: #1e1e1e00;
}

#modal-servers .modal__container .modal__content .accordions .accordion .accordion__intro h4,
#modal-rules .modal__container .modal__content .accordions .accordion .accordion__intro h4 {
    color: #fff;
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
}

#modal-servers .modal__container .modal__content .accordions .accordion .accordion__content,
#modal-rules .modal__container .modal__content .accordions .accordion .accordion__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#modal-servers .modal__container .modal__content .accordions .accordion .accordion__content p,
#modal-rules .modal__container .modal__content .accordions .accordion .accordion__content p {
    color: #fff;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}

#modal-servers .modal__container .modal__content .accordions .accordion .accordion__content p:last-child,
#modal-rules .modal__container .modal__content .accordions .accordion .accordion__content p:last-child {
    margin-bottom: 20px;
}

#modal-gamewer .modal__container {
    min-width: 590px;
}

#modal-gamewer .modal__container .modal__header {
    margin-bottom: 25px;
}

#modal-gamewer .modal__container .modal__header h2 {
    color: #fc0;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

#modal-gamewer .modal__container .modal__content {
    color: #fff;
    margin: 0;
}

#modal-gamewer .modal__container .modal__content h2 {
    margin: 0;
    color: #fff;
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
}

#modal-gamewer .modal__container .modal__content p {
    color: #fff;
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
}

#modal-gamewer .modal__container .modal__content p a {
    color: #fff;
    text-decoration-line: underline;
}

#modal-plugin .modal__container {
    width: 400px;
    padding: 40px 50px;
}

#modal-plugin .modal__title {
    text-align: center;
}

#modal-plugin .modal__content {
    display: flex;
    justify-content: space-between;
    margin: 0;
    margin-top: 25px;
}

#modal-plugin .modal__content a {
    padding: 15px 30px;
    font-size: 18px;
    color: #1e1e1e;
    font-style: normal;
    font-weight: 500;
    border-radius: 20px;
    background: #fc0;
}

#modal-plugin .modal__content button {
    padding: 15px 30px;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid #fc0;
    background: transparent;
}

#modal-wipe .modal__container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#modal-wipe .modal__container::-webkit-scrollbar {
    display: none;
}

#modal-wipe .modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#modal-wipe .modal__content #tab-btn-wipe-1:checked ~ #content-wipe-1,
#modal-wipe .modal__content #tab-btn-wipe-2:checked ~ #content-wipe-2 {
    display: block;
}

#modal-wipe .modal__content .kit-tabs {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-bottom: 5px;
}

#modal-wipe .modal__content .kit-tabs > input[type=radio] {
    display: none;
}

#modal-wipe .modal__content .kit-tabs > label {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    position: relative;
    top: 1px;
}

#modal-wipe .modal__content .kit-tabs > div {
    display: none;
}

#modal-wipe .modal__content .kit-tabs > input[type=radio]:checked + label {
    background-color: #fff;
    color: #1e1e1e;
}

#modal-wipe .modal__content .kit-tabs .kit-tab {
    padding: 15px 20px;
    border-radius: 7px;
    background: #1e1e1e;
    color: #fff;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    border: none;
}

#modal-wipe .modal__content .kit-tabs .kit-tab:hover {
    background: #515151;
}

.boxHeader.Page-module__header {
    color: white;
}

.privilege_kit {
    width: 1000px;
    max-width: 1200px !important;
    padding: 40px 50px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.privilege_kit::-webkit-scrollbar {
    display: none;
}

.privilege_kit h2 {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 25px;
}

.privilege_kit .arrow-dropdown {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.privilege_kit .arrow-dropdown span {
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.privilege_kit .arrow-dropdown::before {
    content: "Выберите сервер:";
    margin-right: 10px;
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.privilege_kit .arrow-dropdown .dropdown .dropdown-elem.active > a {
    background-color: transparent !important;
}

.privilege_kit .arrow-dropdown .dropdown .dropdown-elem.active > a:hover {
    background: #162625;
    color: #ffffff;
}

.privilege_kit .arrow-dropdown .dropdown .dropdown-elem.active > a:active {
    background: #162625;
    color: #ffffff;
}

.privilege_kit .arrow-dropdown .dropdown .dropdown-elem :hover {
    background: #162625;
    color: #ffffff;
}

.privilege_kit .arrow-dropdown .dropdown.dropped {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: #162625;
    color: #ffffff;
}

.privilege_kit .arrow-dropdown .dropdown.dropped .dropdown-elem {
    width: 100%;
    background-color: transparent;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: justify;
    transition: color 0.3s ease-in-out;
}

.privilege_kit .arrow-dropdown .dropdown.dropped .dropdown-elem .active a {
    background-color: transparent !important;
}

.privilege_kit .arrow-dropdown .dropdown.dropped .dropdown-elem .active a:hover {
    background: #162625;
    color: #ffffff;
}

.privilege_kit .arrow-dropdown .dropdown.dropped .dropdown-elem .active a:active {
    background: #162625;
    color: #ffffff;
}

.privilege_kit .arrow-dropdown .dropdown.dropped .dropdown-elem:hover {
    background: #162625;
    color: #ffffff;
}

.privilege_kit .arrow-dropdown .dropdown.dropped .dropdown-elem:active {
    background: #162625;
    color: #ffffff;
}

.privilege_kit .modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.privilege_kit .modal__content #tab-btn-1:checked ~ #content-1,
.privilege_kit .modal__content #tab-btn-2:checked ~ #content-2,
.privilege_kit .modal__content #tab-btn-3:checked ~ #content-4,
.privilege_kit .modal__content #tab-btn-4:checked ~ #content-5,
.privilege_kit .modal__content #tab-btn-5:checked ~ #content-3 {
    display: block;
}

.privilege_kit .modal__content #tab-2-btn-1:checked ~ #content-2-1,
.privilege_kit .modal__content #tab-2-btn-2:checked ~ #content-2-2,
.privilege_kit .modal__content #tab-2-btn-3:checked ~ #content-2-3,
.privilege_kit .modal__content #tab-2-btn-4:checked ~ #content-2-4,
.privilege_kit .modal__content #tab-2-btn-5:checked ~ #content-2-5 {
    display: block;
}

.privilege_kit .modal__content .kit-tabs {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-bottom: 5px;
}

.privilege_kit .modal__content .kit-tabs > input[type=radio] {
    display: none;
}

.privilege_kit .modal__content .kit-tabs > label {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    position: relative;
    top: 1px;
}

.privilege_kit .modal__content .kit-tabs > div {
    display: none;
}

.privilege_kit .modal__content .kit-tabs > input[type=radio]:checked + label {
    background-color: #fff;
    color: #1e1e1e;
}

.privilege_kit .modal__content .kit-tabs .kit-tab {
    padding: 15px 20px;
    border-radius: 7px;
    background: #1e1e1e;
    color: #fff;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    border: none;
}

.privilege_kit .modal__content .kit-tabs .kit-tab:hover {
    background: #515151;
}

.privilege_kit .modal__content .kit-content {
    flex: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.privilege_kit .modal__content .kit-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    column-gap: 20px;
}

.privilege_kit .modal__content .kit-container .kit-item {
    padding: 25px;
    position: relative;
    flex: 0 0 calc(16.6666666667% - 20px);
}

.privilege_kit .modal__content .kit-container .kit-item-count {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px;
    border-radius: 10px;
    background: #fc0;
    color: #1e1e1e;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.privilege_kit .modal__content .kit-container .kit-item-img {
    width: 100%;
}

.privilege_kit .modal__content .kit-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
}

.privilege_kit .modal__content .kit-title .name {
    color: #fff;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.privilege_kit .modal__content .kit-title .cooldown {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #fc0;
    color: #fff;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal__container {
    padding: 30px;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
    border-radius: 40px;
    background: #162625;
}

.modal__container.wipe {
    max-width: 890px;
}

.modal__container.faq {
    max-width: 900px;
}

.modal__container.command {
    min-width: 450px;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.25;
    box-sizing: border-box;
    color: #1a2131;
    font-family: Inter;
    font-size: 22px;
    font-weight: 600;
}

.modal__close {
    background: transparent;
    border: 0;
    cursor: pointer;
}

.modal__close::before {
    font-size: 24px;
}

.modal__header .modal__close:before {
    content: "✕";
    color: #fff;
}

.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.8);
}

.modal__content .wipe-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal__content .wipe-items-item {
    position: relative;
}

.modal__content .wipe-items-item-time {
    position: absolute;
    padding: 5px;
    border-radius: 5px;
    background: #1a2131;
    right: 0;
    color: #1e1e1e;
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
}

.modal__content .wipe-items-item img {
    width: 130px;
}

.modal__content .faq_items__item {
    margin-bottom: 20px;
    transition: 0.4s all ease;
}

.modal__content .faq_items__item h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal__content .faq_items__item h4 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.modal__content .commands__item {
    display: flex;
    flex-direction: column;
    color: #fff;
    margin-bottom: 25px;
}

.modal__content .commands__item__title {
    margin-bottom: 10px;
    font-size: 18px;
}

.modal__content .commands__item__command {
    display: flex;
    flex-direction: column;
}

.modal__content .commands__item__command__value {
    display: flex;
    font-size: 18px;
}

.modal__btn {
    font-size: 0.875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    border-radius: 0.25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff;
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80vh;
    gap: 70px;
}

.not-found-header {
    color: #fff;
    margin: 0;
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.not-found-link {
    padding: 20px 40px;
    border-radius: 15px;
    background: rgb(255, 255, 255);
    color: #1e1e1e;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.not-found-link:hover {
    background: rgb(255, 255, 255);
    color: #1e1e1e;
}

.not-found-link:active {
    outline: 1px solid rgb(255, 255, 255);
    background-color: transparent;
    color: #fff;
}

.MonitoringServer-module__info {
    color: #ffffff;
}

.MonitoringServer-module__playersInfo {
    color: #ffffff;
}

.Widgets-module__widgetWrapper {
    color: #ffffff;
}

.HeaderNav-module__link {
    color: #ffffff;
}

.Header-module__wrapper {
    color: #ffffff;
}

.ProfileContent-module__body {
    color: #ffffff;
}

.socials__title {
    font-weight: 1000;
    font-size: 15px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 22px;
}

.socials__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    padding: 20px 16px;
    position: relative;
    overflow: hidden;
}

.socials__item+.socials__item {
    margin-top: 16px;
}

.socials__item_vk {
    background: linear-gradient(180deg, rgba(50, 119, 170, 0.6) 0%, #477bff 100%);
}

.socials__item_vk .socials__item-bg {
    background: url("https://i.imgur.com/eIEvMCw.png");
    background-size: cover;
}

.socials__item_ds {
    background: linear-gradient(180deg, rgba(151, 71, 255, 0.6) 0%, #9747ff 100%);
}

.socials__item_ds .socials__item-bg {
    background-image: url("https://i.imgur.com/bcMvuX3.png");
    background-size: cover;
}

.socials__item_tg {
    background: linear-gradient(180deg, rgba(50, 119, 170, 0.6) 0%, #477bff 100%);
}

.socials__item_tg .socials__item-bg {
    background: url("https://i.imgur.com/caabuFI.png");
    background-size: cover;
}

.socials__item-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.socials__item-left {
    position: relative;
    z-index: 2;
}

.socials__item-title {
    text-transform: uppercase;
    font-size: 10px;
    color: rgba(224, 224, 224, 0.68);
    margin-bottom: 8px;
    font-weight: 300;
}

.socials__item-name {
    font-size: 15px;
    color: #f2f2f2;
    font-weight: 500;
}

.socials__item-right {
    position: relative;
    z-index: 2;
}

.socials__item-link {
    padding: 13px 9.5px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 500;
    color: #e0e0e0;
    font-size: 10px;
    transition: all 0.3s ease-out;
}

.socials__item-link:hover {
    background: #ffffff;
    color: #121218;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

.promo-widget {
    background: #162625;
    border-radius: 14px;
    padding: 16px 12px;
    max-width: 220px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
    margin: 20px auto;
}

/* Коробка подарка */
.gift-wrapper {
    text-align: center;
    margin-bottom: 12px;
}

.gift-container {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    position: relative;
    animation: giftFloat 3s ease-in-out infinite;
}

@keyframes giftFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.gift-top, .gift-bottom {
    position: absolute;
    width: 100%;
    background: #4FC3F7;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.gift-top {
    height: 38%;
    top: 0;
    background: #55d1ff;
}

.gift-bottom {
    height: 62%;
    bottom: 0;
    background: linear-gradient(135deg, #4FC3F7, #7fe4ff);
}

.ribbon-vertical, .ribbon-horizontal {
    position: absolute;
    background: #ff4081;
    border-radius: 2px;
}

.ribbon-vertical {
    width: 16%;
    height: 100%;
    left: 42%;
}

.ribbon-horizontal {
    width: 100%;
    height: 16%;
    top: 42%;
}

/* Заголовок */
.promo-header {
    text-align: center;
    background: #202b2b;
    border-radius: 6px;
    padding: 6px 0;
    margin-bottom: 10px;
}

.promo-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.promo-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #cdd8e8;
    margin-top: 2px;
}

/* Промо-код */
.promo-code-container {
    margin: 10px 0 6px;
    background: #202b2b;
    border-radius: 10px;
    padding: 6px;
}

.promo-code {
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.code-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.copy-button {
    width: 18px;
    height: 18px;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s;
}

.copy-button:hover {
    opacity: 1;
}

.copy-icon {
    fill: #fff;
}

/* Анимация при наведении */
.promo-code:hover {
    background: rgba(255,255,255,0.12);
}

/* Мобильная версия */
@media (max-width: 480px) {
    .promo-widget {
        padding: 12px;
        max-width: 200px;
        border-radius: 12px;
    }
    .promo-title { font-size: 14px; }
    .promo-subtitle { font-size: 12px; }
    .code-text { font-size: 18px; }
    .gift-container { width: 60px; height: 60px; }
}