:root[data-theme=red_black] {
    --accent-color-800: rgb(43, 20, 20);
    --accent-color-900: rgba(220, 38, 38, 0.25);
    --font-color-700: #fff;
    --font-color-800: rgba(255, 255, 255, .7);
    --font-color-900: #8a7070;
    --bg-color-800: #1a0f0f;
    --bg-color-700: rgba(220, 38, 38, 0.06);
    --bg-color-900: #1a0f0f;
    --product-items-trans-bg-color: rgba(0, 0, 0, .4);
}

:root {
    --background: #0e0808;
    --font-size: 15px;
    --font-weight: 600;
    --letter-spacing: 1px;
    --border-radius: 10px;
    --border-radius-oval: 30px;
    --margin: 30px;
    --container: 1340px;

    --over-big-font-size: 46px;
    --big-font-size: 18px;
    --small-font-size: 14px;

    --color-1: #DBDBDB80;
    --color-1-hover: #f5e4e4;
    --color-2: rgb(44, 15, 15);
    --color-2-hover: rgb(70, 20, 20);
    --color-3: rgb(220, 60, 60);
    --color-4: #1a0f0f;

    --progress-bar: #dc3c3c;

    --widget-vk: linear-gradient(235.62deg, rgb(240, 89, 89) -4.64%, rgb(180, 0, 0) 71.129%);
    --widget-ds: linear-gradient(248.75deg, rgb(180, 60, 60) 0.689%, rgb(120, 20, 20) 89.436%);

    /* Красный неон-гlow эффект */
    --glow-red: 0 0 15px rgba(220, 38, 38, 0.4);
    --glow-red-strong: 0 0 30px rgba(220, 38, 38, 0.6);
}

/* ───────── Шрифты ───────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ───────── Скрытые элементы ───────── */
.container.bannerContainer,
.PlayerMenu-module__langSwitcher,
.PlayerMenu-module__profileLink,
.boxHeader.MonitoringWidget-module__header,
.boxHeader.Shop-module__header,
.Widgets-module__widgetWrapper > .boxFooter,
[data-monitoringserverid="total"],
.Search-module__wrapper,
.ProfileNav-module__body.boxBody,
.ProfileContent-module__title,
.Shop-module__wrapper .boxFooter,
.Product-module__oldPrice,
.productModalProductAvailability,
.ProductItemSelector-module__label,
.TotalSum-module__label,
.CountSelector-module__label,
.PlayerBalanceModal-module__label,
.SupportLink-module__link,
.boxHeader.SupportContent-module__header,
.boxHeader.NewTicketModal-module__header,
.TicketModal-module__header {
    display: none !important;
}

/* ───────── Глобальные стили ───────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

a, p, li, ul, font, h1, h2, h3, h4, h5, span, button {
    font-weight: var(--font-weight);
    font-style: normal;
    font-size: var(--font-size);
    letter-spacing: var(--letter-spacing);
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--background);
    /* Тонкая текстура из полосок */
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(220, 38, 38, 0.015) 2px,
        rgba(220, 38, 38, 0.015) 4px
    );
}

/* ───────── Скроллбар ───────── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0e0808;
}
::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.4);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 38, 38, 0.7);
}

/* ───────── Хедер ───────── */
.Header-module__wrapper {
    height: 70px;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #ffffff00 !important;
    background-color: #ffffff00 !important;
}

.Header-module__logoWrapper {
    gap: 15px;
}

.Header-module__logoWrapper::before {
    content: "";
    width: 50px;
    height: 50px;
    background-image: url();
    background-size: cover;
}

/* Название магазина с красным акцентом */
.Header-module__logo {
    font-size: 26px;
    text-transform: none;
    font-weight: 800;
    color: var(--color-1-hover);
    letter-spacing: 2px;
    position: relative;
}

/* Тильда и "Rust" подсвечены красным */
.Header-module__logo::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc3c3c, transparent);
    border-radius: 2px;
}

.HeaderNav-module__link {
    color: var(--color-1);
    position: relative;
    transition: color 0.2s;
}

.HeaderNav-module__link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-3);
    border-radius: 2px;
    transition: width 0.3s;
}

.HeaderNav-module__link:hover::after,
.HeaderNav-module__link:focus::after {
    width: 100%;
}

.HeaderNav-module__link:hover,
.HeaderNav-module__link:focus {
    color: var(--color-1-hover);
}

.HeaderNav-module__wrapper {
    margin-left: 150px;
}

/* ───────── Аватар игрока ───────── */
.PlayerMenu-module__avatar {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    transition: 0.2s;
    padding: 3px;
    border: 2px solid rgba(220, 60, 60, 0.5);
    box-shadow: var(--glow-red);
}

.PlayerMenu-module__avatar:hover,
.PlayerMenu-module__avatar:focus {
    transform: scale(1.1);
    transition: 0.3s;
    border: 2px solid rgba(220, 60, 60, 0.9);
    box-shadow: var(--glow-red-strong);
    padding: 2px;
}

.PlayerMenu-module__avatar > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-oval);
}

.PlayerMenu-module__wrapper {
    column-gap: 30px;
}

/* ───────── Кнопка баланса ───────── */
.PlayerBalance-module__btn {
    text-transform: none;
    background: var(--color-2);
    border-radius: var(--border-radius-oval);
    padding: 10px 20px;
    color: var(--color-3);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(220, 60, 60, 0.2);
    transition: all 0.3s;
}

.PlayerBalance-module__btn::after {
    content: url(https://i.imgur.com/yd2bJ4m.png);
    transform: translateY(2px);
    filter: hue-rotate(140deg) saturate(2);
}

.PlayerBalance-module__btn:hover,
.PlayerBalance-module__btn:focus {
    background: var(--color-2-hover);
    border-color: rgba(220, 60, 60, 0.5);
    box-shadow: var(--glow-red);
}

/* ───────── Кнопка логина ───────── */
.PlayerMenu-module__loginLink {
    background: #1a0f0f;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    color: var(--color-1);
    transition: 0.2s all;
    border: 1px solid rgba(220, 60, 60, 0.15);
}

.PlayerMenu-module__loginLink:hover {
    color: var(--color-1-hover);
    transform: translateY(-4px);
    border-color: rgba(220, 60, 60, 0.4);
    box-shadow: var(--glow-red);
}

/* ───────── Фоны блоков ───────── */
.MonitoringWidget-module__body.boxBody,
.Shop-module__wrapper .boxBody,
.ProfileContent-module__body.boxBody {
    background: #ffffff00 !important;
    background-color: #ffffff00 !important;
}

/* ───────── Сервера мониторинга ───────── */
.MonitoringServer-module__wrapper {
    background: var(--color-4);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: var(--margin);
    height: 207px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.MonitoringServer-module__wrapper:hover {
    border-color: rgba(220, 38, 38, 0.35);
    box-shadow: var(--glow-red);
}

.MonitoringWidget-module__body.boxBody {
    padding: 0px;
}

.MonitoringServer-module__progressBarAnim {
    background: var(--progress-bar);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
    border-radius: var(--border-radius);
    height: 8px;
}

.MonitoringServer-module__progressBar {
    box-shadow: unset;
    border-radius: var(--border-radius);
    height: 8px;
}

.MonitoringServer-module__progressBarWrapper {
    margin-bottom: 15px;
    height: 8px !important;
}

.MonitoringServer-module__name {
    margin-bottom: 40px;
    font-size: var(--big-font-size);
    color: var(--color-1-hover);
}

.MonitoringServer-module__name::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 15px;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.4), transparent);
    border-radius: var(--border-radius);
}

.MonitoringServer-module__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50px);
}

.MonitoringServer-module__btns {
    position: relative;
    top: -15px;
}

.MonitoringServer-module__serverInfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.MonitoringServer-module__serverName {
    font-size: 18px;
}

/* ───────── Пользовательский блок сервера ───────── */
.MonitoringServer {
    padding: 20px;
    border-radius: var(--border-radius);
    background: var(--color-4);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.Block-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ServerName {
    font-size: var(--big-font-size);
    color: var(--color-1-hover);
}

.Status {
    font-size: 12px;
    font-weight: 400;
    padding: 3px 10px;
    border-radius: var(--border-radius-oval);
}

.Status.On {
    background: rgba(220, 38, 38, 0.12);
    color: rgba(255, 100, 100, 0.9);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.2);
}

.Status.Off {
    background: rgba(100, 100, 100, 0.12);
    color: rgba(150, 150, 150, 0.8);
}

.MonitoringServer hr {
    border: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.3), transparent);
    border-radius: var(--border-radius);
}

.Players {
    display: flex;
    gap: 6px;
}

.Block-2::after {
    content: " ";
    width: 20px;
    height: 20px;
    background: url(https://i.imgur.com/MhzjAvf.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    filter: hue-rotate(140deg) saturate(2);
}

.Block-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Players > p {
    color: #c0a0a0;
    font-weight: 500;
}

.ProgressBar {
    height: 8px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: var(--border-radius);
}

.ProgressBarAnim {
    width: 30%;
    background: var(--progress-bar);
    height: 8px;
    border-radius: var(--border-radius);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.5);
    transition: width 0.5s ease-in-out;
}

.Block-3 {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

/* ───────── Кнопка подключения ───────── */
.BtnConnect {
    background: rgba(220, 38, 38, 0.06);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.2s;
    width: 100%;
    border: 1px solid rgba(220, 38, 38, 0.15);
    color: var(--color-1-hover);
}

.BtnConnect:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: var(--glow-red);
    cursor: pointer;
}

.BtnConnect::after {
    content: " ";
    width: 22px;
    height: 22px;
    background: url(https://i.imgur.com/F0usN6z.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    filter: hue-rotate(140deg) saturate(2);
}

/* ───────── Виджеты ───────── */
.Widgets-module__wrapper {
    margin-right: var(--margin);
    min-width: 290px;
}

.Widgets-module__widgetWrapper + .Widgets-module__widgetWrapper {
    margin-top: var(--margin);
}

.Widgets-module__widgetPrefix {
    padding: var(--safe-padding);
    background: var(--accent-color-800);
    border-radius: var(--border-radius);
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.Widgets-module__widgetPrefixDescription {
    font-size: 12px;
    margin-top: var(--safe-padding);
}

.Widgets-module__customPrefixWidgetWrapper .boxBody {
    background: var(--bg-color-700);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.Widgets-module__customPrefixWidgetWrapper:hover {
    cursor: pointer;
}

/* ───────── Виджеты VK / Discord ───────── */
.Widget {
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius);
    transition: all 0.2s;
}

.Widget:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-red);
}

.Widget.vk {
    background: var(--widget-vk);
}

.Widget.ds {
    background: var(--widget-ds);
}

.Block-11 {
    display: flex;
    gap: 10px;
    align-items: center;
}

.Text {
    color: #fff;
}

.BtnLink {
    font-weight: 500;
    font-size: var(--small-font-size);
    color: #fff;
}

/* ───────── Серверы блок ───────── */
.Servers-module__server {
    max-width: unset;
    border-radius: var(--border-radius);
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.2s;
}

.Servers-module__server.Servers-module__active,
.Servers-module__server:hover,
.Servers-module__server:focus {
    background-color: var(--accent-color-800);
    color: var(--font-color-700);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: var(--glow-red);
}

/* ───────── Категории ───────── */
.Categories-module__category {
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 10px;
}

.Categories-module__categories button {
    font-weight: 500;
}

[data-categoryid="0"] {
    background-color: rgba(220, 38, 38, 0.1) !important;
    color: #c1c1c1 !important;
}

[data-categoryid="0"]:hover,
[data-categoryid="0"].Categories-module__active {
    background-color: rgba(220, 38, 38, 0.25) !important;
    color: var(--color-1-hover) !important;
}

[data-categoryid="329659"] {
    background-color: rgba(220, 120, 38, 0.1) !important;
    color: #c1c1c1 !important;
}

[data-categoryid="329675"] {
    background-color: rgba(180, 38, 38, 0.1) !important;
    color: #c1c1c1 !important;
}

[data-categoryid="329675"]:hover,
[data-categoryid="329675"].Categories-module__active {
    background-color: rgba(180, 38, 38, 0.25) !important;
    color: var(--color-1-hover) !important;
}

[data-categoryid="329659"]:hover,
[data-categoryid="329659"].Categories-module__active {
    background-color: rgba(220, 120, 38, 0.25) !important;
    color: var(--color-1-hover) !important;
}

/* ───────── Кастомизация товаров ───────── */
[data-productid="5034266"],
[data-productid="5034268"],
[data-productid="5034267"],
[data-productid="5034269"],
[data-productid="5034270"] {
    background: linear-gradient(180deg, rgba(220, 38, 38, 0), rgba(220, 38, 38, 0.18) 100%), rgb(26, 15, 15) !important;
    margin-bottom: 20px;
}

@media (max-width: 760px) {
    [data-productid="5034266"],
    [data-productid="5034268"],
    [data-productid="5034267"],
    [data-productid="5034269"],
    [data-productid="5034270"] {
        margin-bottom: unset;
    }
}

/* ───────── Свайпер ───────── */
.swiper {
    max-width: var(--container);
    max-height: 470px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(220, 38, 38, 0.15);
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.1);
}

.swiperContainer {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 50px;
}

.swiperContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(10px);
}

.swiperContainer,
.swiperContainer::before {
    transition: background-image 0.5s ease;
}

.swiper-pagination-bullet {
    background: rgba(220, 38, 38, 0.5) !important;
}

.swiper-pagination-bullet-active {
    background: #dc3c3c !important;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background: rgba(220, 38, 38, 0.5) !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev,
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    color: rgba(220, 38, 38, 0.7) !important;
}

.swiper-button-next,
.swiper-button-prev {
    height: 20px !important;
}

.swiper-button-next {
    transform: translate(-12px, 20px);
}

.swiper-button-prev {
    transform: translateY(20px);
}

.swiper-button-next:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid rgba(220, 38, 38, 0.8);
    border-radius: 5px;
    font-size: 0px !important;
}

.swiper-button-prev:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid rgba(220, 38, 38, 0.8);
    border-radius: 5px;
    font-size: 0px !important;
}

.swiper-slide {
    position: relative;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-title {
    font-size: var(--over-big-font-size);
    color: var(--color-1-hover);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.slide-btn {
    padding: 20px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: var(--over-big-font-size);
    transition: all 0.2s;
    font-weight: var(--light-font-weight);
    color: var(--color-1-hover);
    backdrop-filter: blur(4px);
}

.slide-btn:hover {
    background: rgba(220, 38, 38, 0.4);
    color: #fff;
    box-shadow: var(--glow-red-strong);
}

/* ───────── Алерт ───────── */
.Alert {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
    font-weight: 400;
    background: var(--bg-color-800);
    border-radius: var(--border-radius);
    padding: var(--safe-padding);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-left: 3px solid rgba(220, 38, 38, 0.6);
}

/* ───────── Товары ───────── */
.Products-module__wrapper {
    margin-top: var(--margin);
    gap: 25px;
}

.Product-module__wrapper {
    height: 325px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(220, 38, 38, 0.08);
    transition: 0.2s all;
    overflow: visible;
}

.Product-module__wrapper:hover {
    transform: translateY(-7px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: var(--glow-red);
}

.Product-module__img {
    width: 95%;
    transition: 0.2s all;
}

.Product-module__wrapper:hover .Product-module__img {
    width: 97%;
}

.Product-module__price {
    top: unset;
    left: 0;
    bottom: 20px;
    width: 74%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    border-radius: var(--border-radius-oval);
    background-color: rgba(220, 38, 38, 0.12);
    padding: 10px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.Product-module__price span {
    font-weight: 500;
    color: #e86060;
}

.Product-module__name {
    transform: translateY(0);
    bottom: 55px;
    background: #ffffff00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    padding: 15px;
    font-weight: 500;
    color: var(--color-1-hover);
}

.Product-module__discount {
    top: 20px;
    left: -15px;
    padding: 7px 12px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: var(--border-radius) 4px var(--border-radius) 4px;
    font-weight: 500;
    color: white;
    right: unset;
    box-shadow: var(--glow-red);
}

.Shop-module__wrapper .boxBody {
    padding: 0 15px 15px 15px;
}

/* ───────── Профиль ───────── */
.ProfileContent-module__header,
.BasketContent-module__header.boxHeader,
.HistoryContent-module__header.boxHeader {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    padding: 15px 25px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.Block-111 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.Block-111 .Desc {
    font-weight: 500;
    color: var(--color-1-hover);
}

.BtnProfile {
    background: rgba(220, 38, 38, 0.06);
    padding: 15px;
    border-radius: var(--border-radius);
    color: var(--color-1);
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.BtnProfile:hover {
    background: rgba(220, 38, 38, 0.2);
    color: var(--color-1-hover);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: var(--glow-red);
}

.Block-222 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ProfileNav-module__img {
    width: 92%;
    height: auto;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
}

.ProfileNav-module__header {
    border-radius: var(--border-radius) var(--border-radius) 0px 0px;
}

.ProfileNav-module__wrapper .boxFooter {
    background: var(--bg-color-700);
    border-radius: 0px 0px var(--border-radius) var(--border-radius);
    padding: 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ProfileNav-module__logOut {
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--color-1) !important;
    transition: all 0.2s;
    padding: 20px;
    border: 0px;
}

.ProfileNav-module__logOut:hover {
    color: #ff6060 !important;
}

.ProfileNav-module__name {
    font-weight: 500;
}

.ProfileNav-module__header.boxHeader {
    padding: 25px !important;
}

.ProfileContent-module__body.boxBody {
    border-radius: var(--border-radius);
    background: var(--color-4);
    padding: 0px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.ProfileContent-module__infoWrapper {
    margin-bottom: 20px !important;
    border-radius: var(--border-radius);
}

.Selector-module__dropDownCurrentItem,
.ProfileContent-module__input,
.ProfileContent-module__usePromoBtn {
    border-radius: var(--border-radius);
    padding: 15px 25px;
}

.ProfileContent-module__usePromoBtn {
    font-weight: 500;
    color: var(--color-1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    transition: all 0.2s;
}

.ProfileContent-module__usePromoBtn:hover {
    color: #ff6060 !important;
    border: 0px;
}

.ProfileContent-module__infoLine {
    padding: 25px;
}

.ProfileContent-module__infoLine > span,
.ProfileContent-module__steamid,
.ProfileContent-module__infoLineValue {
    font-weight: 500;
}

.ProfileContent-module__infoLine:first-child {
    border-bottom: 2px solid rgba(220, 38, 38, 0.15);
}

.ProfileContent-module__infoLineValue.ProfileContent-module__steamid {
    color: var(--color-1-hover) !important;
}

.ProfileContent-module__infoLineValue {
    color: #e86060 !important;
    display: flex;
    justify-content: flex-end;
}

.ProfileContent-module__input {
    height: 38px;
}

/* ───────── История / Корзина ───────── */
.HistoryContent-module__wrapper .boxBody,
.HistorySearch-module__wrapper,
.HistoryTable-module__tableHeader,
.BasketSearch-module__wrapper,
.BasketContent-module__wrapper .boxBody,
.BasketTable-module__tableHeader.BasketTable-module__canSell {
    border-radius: var(--border-radius);
}

.BasketSearch-module__wrapper,
.HistorySearch-module__wrapper {
    height: 50px;
}

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

.Pagination-module__navPageBtn:hover .Pagination-module__pagIcon,
.Pagination-module__navPageBtn:focus .Pagination-module__pagIcon {
    stroke: #ff6060;
}

/* ───────── Поддержка (тикеты) ───────── */
.boxFooter.NewTicketModal-module__footer,
.TicketModal-module__footer {
    background: var(--bg-color-800);
    border-radius: 0 0 10px 10px;
}

.ModalLayout-module__modal .boxBody {
    border-radius: 10px 10px 0 0;
}

.SupportContent-module__wrapper .boxBody,
.TicketsTable-module__tableHeader,
.TicketsTable-module__value,
.TicketMessageTextArea-module__textarea {
    border-radius: var(--border-radius) !important;
}

.TicketsTable-module__tableLine:hover .TicketsTable-module__value:not(:last-child) {
    color: var(--color-1-hover) !important;
}

.TicketsTable-module__status {
    border-radius: var(--border-radius);
}

.TicketModal-module__messageText {
    font-weight: 400 !important;
}

.TicketModal-module__messageAuthor {
    color: #ff8080 !important;
}

/* ───────── Модальные окна ───────── */
.ModalLayout-module__positionWrapper {
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
}

.ProductModal-module__header.boxHeader,
.ItemContent-module__footer.boxFooter,
.SelectContent-module__footer.boxFooter,
.boxFooter.PlayerBalanceModal-module__footer {
    background: #1a0f0f;
}

.ProductModal-module__header.boxHeader,
.boxHeader.PlayerBalanceModal-module__header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.ItemContent-module__footer.boxFooter,
.SelectContent-module__footer.boxFooter,
.boxFooter.PlayerBalanceModal-module__footer {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.ProductModal-module__command,
.ProductModal-module__dropdown {
    width: 590px;
}

.ProductModal-module__header.boxHeader {
    font-weight: 600;
    font-size: 27px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(220, 38, 38, 0.2);
}

/* ───────── Кнопки ───────── */
.Button-module__btn.Button-module__accent {
    color: var(--color-1);
    background-color: var(--accent-color-800);
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-weight: 500;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.2s;
}

.Button-module__btn.Button-module__accent:hover,
.Button-module__btn.Button-module__accent:focus {
    background-color: rgba(220, 38, 38, 0.2);
    color: var(--color-1-hover);
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: var(--glow-red);
}

.Button-module__btn.Button-module__gray {
    color: var(--color-1);
    background-color: #ffffff00;
    border: solid 2px rgba(220, 38, 38, 0.2);
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.2s;
}

.Button-module__btn.Button-module__gray:hover,
.Button-module__btn.Button-module__gray:focus {
    background-color: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.4);
    color: var(--color-1-hover);
}

/* ───────── Описание товара ───────── */
.productModalDescription {
    padding: 0px;
    background: #ffffff00;
    margin-bottom: 15px;
}

.productModalGiveText {
    color: rgb(200, 170, 170);
    border: 2px dashed rgba(220, 38, 38, 0.25);
    padding: 2%;
    border-radius: 10px;
    background: var(--bg-color-900);
    font-size: 12px;
}

.desc__title {
    margin-bottom: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8080;
}

.desc__content {
    padding: 10px;
    background-color: var(--bg-color-700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    border: 1px solid rgba(220, 38, 38, 0.08);
}

.desc__title__kit {
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8080;
}

.desc__content > font,
.desc__content__img > font {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 50px 0px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.content__info > .title {
    font-size: 17px;
    color: var(--color-1-hover);
    margin-bottom: 3px;
    font-weight: 500;
}

.content__info > .description {
    font-weight: 300;
    color: #c0a0a0;
    font-size: 14px;
}

.desc__content__img {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.desc__content > a > img {
    width: 135px;
    border-radius: 8px;
    transition: 0.2s all;
}

.desc__content > a > img:hover {
    transform: scale(1.08);
}

/* ───────── Селекторы ───────── */
.ProductItemSelector-module__items {
    grid-template-columns: repeat(4, minmax(50px, 1fr));
}

.ProductItemSelector-module__item {
    border-radius: var(--border-radius);
    background: var(--bg-color-700);
    border: 1px solid rgba(220, 38, 38, 0.08);
}

.ProductItemSelector-module__item.ProductItemSelector-module__active,
.ProductItemSelector-module__item:hover,
.ProductItemSelector-module__item:focus {
    border: 2px solid rgba(220, 38, 38, 0.35);
    background: rgba(220, 38, 38, 0.1);
}

.Selector-module__dropDownList {
    background: #2a1515;
    border-radius: var(--border-radius);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.Selector-module__dropDownList button {
    font-weight: 500;
}

.Selector-module__dropDownCurrentText {
    font-weight: 500;
}

.dropDownCurrentItem {
    border-radius: var(--border-radius);
}

.dropDownList {
    background: #2a1515;
    border-radius: var(--border-radius);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.dropDownItem.ProductItemSelector-module__active {
    background-color: rgba(220, 38, 38, 0.2);
}

.dropDownCurrentText,
.dropDownItem {
    font-weight: 500;
}

/* ───────── Счётчик и сумма ───────── */
.TotalSum-module__inputWrapper {
    border-radius: var(--border-radius);
}

.TotalSum-module__currency {
    font-weight: 500;
    color: #e86060;
}

.CountSelector-module__inputWrapper {
    border-radius: var(--border-radius);
}

.CountSelector-module__changeCountBtn.CountSelector-module__left {
    border-right: 0px;
}

.CountSelector-module__changeCountBtn.CountSelector-module__right {
    border-left: 0px;
}

.CountSelector-module__changeCountBtn:hover,
.CountSelector-module__changeCountBtn:focus {
    background: rgba(220, 38, 38, 0.2);
}

/* ───────── Модалка пополнения ───────── */
.PlayerBalance-module__modal {
    width: 500px;
}

.PlayerBalanceModal-module__header {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background: var(--bg-color-800);
    border-bottom: 2px solid rgba(220, 38, 38, 0.2);
}

.PlayerBalanceModal-module__currency {
    font-weight: 500;
    color: #e86060;
}

.PlayerBalanceModal-module__inputWrapper {
    border-radius: var(--border-radius);
    border: 1px solid rgba(220, 38, 38, 0.2) !important;
}

.PlayerBalanceModal-module__bonusSection {
    margin-top: var(--safe-padding);
}

.PlayerBalanceModal-module__bonusContainer {
    background-color: var(--bg-color-800) !important;
    padding: var(--safe-padding);
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
}

.PlayerBalanceModal-module__bonusItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--accent-color-800);
    border-radius: var(--border-radius);
    border: 1px solid rgba(220, 38, 38, 0.15);
    transition: all 0.2s;
}

.PlayerBalanceModal-module__bonusItem:hover {
    border-color: rgba(220, 38, 38, 0.35);
    box-shadow: var(--glow-red);
}

.PlayerBalanceModal-module__bonusPercent {
    font-weight: 500;
    font-size: 18px;
    color: #ff6060;
}

.PlayerBalanceModal-module__bonusAmount {
    color: var(--font-color-800);
    font-size: 16px;
}

.PlayerBalanceModal-module__bonusEmpty {
    text-align: center;
    padding: var(--safe-padding);
    color: var(--font-color-900);
}

.PlayerBalanceModal-module__footer .Button-module__gray {
    display: none;
}

.PlayerBalanceModal-module__footer .Button-module__accent {
    width: 100%;
    background: rgba(160, 20, 20, 0.7);
    color: rgba(255, 200, 200, 0.9);
    border: 1px solid rgba(220, 38, 38, 0.4);
}

.PlayerBalanceModal-module__footer .Button-module__accent:hover {
    background: rgba(200, 30, 30, 0.9);
    color: #ffffff;
    box-shadow: var(--glow-red-strong);
}

.boxFooter.PlayerBalanceModal-module__footer {
    padding: 0px 15px 15px 15px;
}

/* ───────── FunPay кнопка ───────── */
.funpay-topup-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-color-800);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.funpay-topup-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: var(--glow-red);
}

.funpay-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.funpay-logo {
    height: 24px;
    width: auto;
}

.funpay-text {
    color: var(--font-color-700);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.funpay-subtext {
    color: var(--font-color-900);
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}

/* ───────── Тег ───────── */
.Tag {
    font-size: 14px;
    color: rgba(220, 38, 38, 0.6);
    font-weight: 500;
    margin-top: 3px;
}

/* ───────── Бонус контейнер ───────── */
.bonus-container {
    margin: 15px 0px;
    background: var(--accent-color-800);
    border-radius: var(--border-radius);
    padding: 10px 20px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.bonus-container .hh,
.bonus-container span {
    font-weight: 500;
    transition: all 0.2s ease;
    color: #8a6060;
}

.bonus-container .hh:hover {
    color: #ff8080;
    cursor: pointer;
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.bonus-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--border-radius-oval);
    padding: 10px 20px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.bonus-amounts {
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.bonus-summary {
    display: flex;
    justify-content: space-between;
    padding: 0px 40px;
    align-items: center;
}

.bonus-summary span {
    font-weight: 500;
}

.bonus-summary-amounts {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bonus-summary-amounts .bonus-extra {
    padding: 8px;
    background: rgba(180, 30, 30, 0.6);
    border-radius: var(--border-radius);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.bonus-icon {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    filter: hue-rotate(140deg) saturate(2);
}

/* ───────── Копирайт ───────── */
.DesktopCopyright-module__wrapper {
    left: 0 !important;
    bottom: 0 !important;
    border-radius: 0px var(--border-radius) 0px 0px !important;
    background-color: var(--color-4) !important;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    border-right: 1px solid rgba(220, 38, 38, 0.1);
}

.MobileCopyright-module__wrapper {
    border-radius: var(--border-radius) !important;
    background-color: var(--color-4) !important;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.DesktopCopyright-module__wrapper > span,
.MobileCopyright-module__wrapper > span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.7;
}

.DesktopCopyright-module__wrapper > a,
.MobileCopyright-module__wrapper > a {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-3);
}

/* ───────── Мобильное меню ───────── */
.PlayerMenuMobile-module__nav {
    align-items: flex-end;
}

.boxHeader.PlayerMenuMobile-module__header {
    background: #1a0808;
    border-radius: 2px 2px 0 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.PlayerMenuMobile-module__body {
    align-items: flex-end;
}

.PlayerMenuMobile-module__profileLink,
.PlayerMenuMobile-module__loginLink {
    color: var(--color-1);
    border-radius: 2px;
    background-color: #ffffff00;
    display: flex;
    justify-content: flex-end;
    text-transform: uppercase;
}

/* ───────── Прочее ───────── */
.LangSwitcher-module__btn {
    display: none;
}

.active {
    color: #ff6060 !important;
}

.activee {
    color: #ff6060 !important;
}

.container {
    width: unset;
    max-width: var(--container);
}

.container.Index-module__wrapper {
    margin-bottom: 40px;
}

/* ───────── Анимация при наведении на иконку ───────── */
@keyframes redPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(220, 38, 38, 0.3); }
    50%       { box-shadow: 0 0 25px rgba(220, 38, 38, 0.7); }
}

/* ───────── Медиа-запросы ───────── */
@media (max-width: 1350px) {
    .swiper {
        max-width: 1000px;
    }
}

@media (max-width: 1000px) {
    .swiperContainer {
        display: none;
    }

    .Header-module__wrapper {
        height: 70px;
        padding: 0;
        margin-top: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 970px) {
    .ProfileNav-module__header.boxHeader {
        display: none;
    }

    .ProfileNav-module__wrapper .boxFooter {
        border-radius: var(--border-radius);
    }
}

@media screen and (max-width: 600px) {
    .PlayerMenuMobile-module__playerMenu {
        margin-bottom: 10px;
    }
}

@media (max-width: 580px) {
    .ProfileContent-module__header,
    .BasketContent-module__header.boxHeader,
    .HistoryContent-module__header.boxHeader {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        border-radius: var(--border-radius);
        padding: 15px 25px;
        flex-direction: column;
        gap: 15px;
    }

    .bonus-options span {
        border-right: none !important;
    }
}

@media (max-width: 390px) {
    .Product-module__img {
        width: 60%;
    }

    .PlayerMenu-module__wrapper {
        column-gap: 0px;
    }

    .Block-222 {
        display: flex;
        align-items: stretch;
        gap: 15px;
        flex-direction: column;
    }
}