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

/* Конфигурация для Red Black Theme */
:root[data-theme=red_black] {
    --accent-color-800: #8f2e1d;
    --accent-color-900: #7a281a;

    --font-color-700: #fff;
    --font-color-800: rgba(255, 255, 255, .7);
    --font-color-909: #7b7b7b;

    --bg-color-800: #202020;
    --bg-color-700: #121212;
    --bg-color-900: #1d1b1a;

    --background-color: #070707;
    --product-items-trans-bg-color: rgba(0, 0, 0, .4);
}

:root {
    --safe-padding: 10px;
    --default-border-radius: 10px;
    --default-font-size: 16px;
    --default-font-family: "Montserrat", sans-serif;

    --title-font-size: 24px;
    --title-font-weight: 600;

    --price-font-size: 18px;
}

/* Стилизация */
body {
    background-color: var(--background-color);
}

/* === СКРЫТИЕ СЛОВА "МАГАЗИН" === */
.Shop-module__header,
.Shop-module__title,
[data-testid="shop-title"],
.shop-title,
.shop-header-title,
.shop-panel-title,
.panel-shop-title,
a.HeaderNav-module__link[href="/"] {
    display: none !important;
}

/* === СКРЫТИЕ СТАНДАРТНЫХ СПОСОБОВ ПОПОЛНЕНИЯ === */
/* Скрываем платёжные системы (Юкасса, СБП, карты и т.д.) */
.PlayerBalanceModal-module__paymentSystem,
.PlayerBalanceModal-module__paymentMethods,
.PaymentMethod-module__wrapper,
.PaymentSystem-module__wrapper,
.payment-systems-container,
.payment-methods-list,
.payment-system-item {
    display: none !important;
}

/* === ВЫДЕЛЕНИЕ ПОПОЛНЕНИЯ СКИНАМИ === */
/* Стили для кастомного виджета пополнения скинами */
.skin-deposit-widget {
    background: linear-gradient(145deg, #1e1e2d, #151520) !important;
    border-radius: 15px !important;
    padding: 25px !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        inset 0 0 15px rgba(255, 102, 0, 0.1) !important;
    border: 1px solid rgba(255, 102, 0, 0.2) !important;
    max-width: 400px !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
    position: relative !important;
    overflow: hidden !important;
}

.skin-deposit-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.skin-deposit-widget-content {
    position: relative;
    z-index: 1;
}

/* Кнопка пополнения скинами */
.skin-deposit-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 18px 30px !important;
    background: linear-gradient(145deg, #ff6600, #cc3300) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    box-shadow: 
        0 6px 20px rgba(255, 102, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.2) !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    letter-spacing: 0.5px !important;
}

.skin-deposit-btn:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 
        0 10px 25px rgba(255, 102, 0, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
    background: linear-gradient(145deg, #ff8033, #ff5500) !important;
}

.skin-deposit-btn:active {
    transform: translateY(1px) scale(0.98) !important;
    box-shadow: 
        0 4px 15px rgba(255, 102, 0, 0.5),
        inset 0 2px 0 rgba(0, 0, 0, 0.2) !important;
}

/* Бонусный бейдж */
.bonus-badge {
    background: linear-gradient(145deg, #ff3333, #e60000) !important;
    color: white !important;
    padding: 5px 12px !important;
    border-radius: 15px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    display: inline-block !important;
    margin-top: 15px !important;
    box-shadow: 
        0 0 10px rgba(255, 51, 51, 0.6),
        inset 0 0 8px rgba(255, 0, 0, 0.3) !important;
    letter-spacing: 1px !important;
    animation: pulse 2s infinite !important;
}

@keyframes pulse {
    0% { box-shadow: 0 0 10px rgba(255, 51, 51, 0.6), inset 0 0 8px rgba(255, 0, 0, 0.3); }
    50% { box-shadow: 0 0 15px rgba(255, 51, 51, 0.8), inset 0 0 12px rgba(255, 0, 0, 0.5); }
    100% { box-shadow: 0 0 10px rgba(255, 51, 51, 0.6), inset 0 0 8px rgba(255, 0, 0, 0.3); }
}

/* Минимальная сумма */
.min-amount-text {
    color: #aaa !important;
    font-size: 12px !important;
    margin-top: 10px !important;
    margin-bottom: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
}

/* Инструкция */
.deposit-instructions {
    margin-top: 20px !important;
    text-align: left !important;
    color: #999 !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}

.deposit-instructions strong {
    color: #fff !important;
    font-weight: 600 !important;
}

/* === НАЗВАНИЕ САЙТА "Desert Rust" КРАСНЫМ === */
.Header-module__logo {
    font-size: var(--title-font-size) !important;
    text-transform: uppercase !important;
    font-weight: var(--title-font-weight) !important;
    letter-spacing: 1px !important;
    color: #ff0000 !important;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

/* === НЕОНОВОЕ СВЕЧЕНИЕ ПРИ НАВЕДЕНИИ НА "Desert Rust" === */
.Header-module__logo:hover {
    color: #ff0000 !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 0, 0.7),
        0 0 20px rgba(255, 0, 0, 0.5),
        0 0 30px rgba(255, 0, 0, 0.3) !important;
    transform: scale(1.05) !important;
}

/* === ЗАКРУГЛЕННЫЕ УГЛЫ ЯЧЕЕК (КАРТОЧЕК ТОВАРОВ) === */
.Product-module__wrapper {
    border-radius: 15px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

/* === ОСТАЛЬНОЙ ОРИГИНАЛЬНЫЙ CSS === */
/* Масштабирование по центру */
.Product-module__wrapper,
.Widgets-module__customWidgetWrapper .boxBody,
.Widgets-module__customPrefixWidgetWrapper .boxBody,
.resource-item {
    transform-origin: center center;
    transition: transform 0.2s ease;
}

.Product-module__wrapper:hover,
.Product-module__wrapper:focus,
.Widgets-module__customWidgetWrapper .boxBody:hover,
.Widgets-module__customPrefixWidgetWrapper .boxBody:hover,
.resource-item:hover {
    transform: scale(0.97);
    transform-origin: center center;
}

.Header-module__wrapper,
.MonitoringWidget-module__body.boxBody,
.Search-module__iconWrapper,
.Categories-module__category,
.MonitoringServer-module__progressBarWrapper,
.Search-module__wrapper,
.Product-module__wrapper,
.Servers-module__server,
.MonitoringServer-module__wrapper,
.PlayerMenu-module__profileLink, 
.PlayerMenu-module__loginLink,
.PlayerBalance-module__btn,
.Shop-module__wrapper .boxFooter,
.LangSwitcher-module__btn,
.LangSwitcher-module__list,
.Product-module__discount,
.Widgets-module__customWidgetWrapper .boxBody,
.Widgets-module__customPrefixWidgetWrapper .boxBody,
.Button-module__btn,
.PlayerBalanceModal-module__currency,
.PlayerBalanceModal-module__inputWrapper,
.ProfileContent-module__body.boxBody,
.ProfileNav-module__img,
.ProfileNav-module__navItem,
.ProfileContent-module__box,
.Selector-module__dropDownCurrentItem,
.Selector-module__dropDownList,
.ProfileContent-module__input,
.BasketContent-module__wrapper .boxBody,
.BasketTable-module__tableLine, 
.BasketTable-module__tableHeader,
.HistoryTable-module__tableHeader,
.HistoryTable-module__tableLine,
.ProductItemSelector-module__item,
.TotalSum-module__currency,
.TotalSum-module__inputWrapper,
.CountSelector-module__inputWrapper,
.PlayerMenuMobile-module__profileLink,
.dropDownCurrentItem {
    border-radius: var(--default-border-radius);
}

.ProductItemSelector-module__item.ProductItemSelector-module__active, 
.ProductItemSelector-module__item:hover, 
.ProductItemSelector-module__item:focus {
    border: 1px solid var(--accent-color-800);
    background: var(--accent-color-800);
}

.productModalFormRowItem .Selector-module__dropDownCurrentItem {
    background: var(--bg-color-700) !important;
}

.Selector-module__dropDownList {
    background: var(--bg-color-700);
}

.CountSelector-module__changeCountBtn {
    background: var(--accent-color-900);
}

.CountSelector-module__changeCountBtn:hover, .CountSelector-module__changeCountBtn:focus {
    background: var(--accent-color-800);
}

.SelectContent-module__footer.boxFooter {
    gap: var(--safe-padding);
}

.ProductModal-module__command, 
.ProductModal-module__bp, 
.ProductModal-module__item, 
.ProductModal-module__dropdown {
    width: 500px;
}

.ProductItemSelector-module__item {
    border: 1px solid var(--bg-color-700);
    background: var(--bg-color-800);
}

.Selector-module__dropDownCurrentItem {
    background: var(--bg-color-800);
}

.Shop-module__wrapper .boxFooter {
    margin-top: var(--safe-padding);
    background: var(--bg-color-700);
}

.BasketContent-module__wrapper .boxBody,
.HistoryContent-module__wrapper .boxBody {
    background: var(--bg-color-700);
}

.BasketTable-module__tableHeader,
.HistoryTable-module__tableHeader {
    background: var(--bg-color-800);
}

.ProfileContent-module__usePromoBtn {
    margin-left: var(--safe-padding);
}

.MonitoringWidget-module__header,
.Widgets-module__widgetWrapper .boxFooter,
.Product-module__oldPrice,
.PlayerBalanceModal-module__label,
.ProfileContent-module__header.boxHeader,
.BasketSearch-module__wrapper,
.BasketContent-module__header.boxHeader,
.HistoryContent-module__header.boxHeader,
.HistoryFilters-module__wrapper {
    display: none;
}

.BasketFilters-module__serverSelector {
    margin-left: 0px;
}

.ProfileContent-module__usePromoBtn {
    width: auto !important;
}

.ProfileContent-module__input {
    background: var(--bg-color-900);
}

.Selector-module__dropDownList {
    background: var(--bg-color-900);
}

.container {
    width: 1300px;
}

.Header-module__wrapper {
    min-height: 70px;
}

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

.MonitoringServer-module__progressBarWrapper {
    background-color: var(--bg-color-800);
    height: 15px;
}

.Shop-module__wrapper .boxBody {
    padding: 0;
    background: transparent;
}

.Categories-module__categories {
    display: flex;
    width: 101%;
}

.Categories-module__category {
    flex: 1;
    text-align: center;
}

.MonitoringServer-module__progressBarAnim {
    background: var(--accent-color-800);
}

.Header-module__wrapper {
    margin-bottom: var(--safe-padding);
}

.Widgets-module__wrapper {
    margin-right: var(--safe-padding);
}

.Search-module__wrapper {
    margin-top: var(--safe-padding);
}

.Products-module__wrapper {
    margin-top: var(--safe-padding);
    gap: var(--safe-padding);
}

.Product-module__price {
    top: 10px;
    left: 10px;
    background-color: transparent;
    font-size: var(--price-font-size);
}

.Product-module__wrapper {
    transition: all 0.2s;
}

.DesktopCopyright-module__wrapper {
    background-color: transparent !important;
    font-size: 14px;
}

.DesktopCopyright-module__link {
    color: var(--font-color-700);
}

.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);
}

.Servers-module__servers {
    display: flex;
    flex-wrap: wrap;
    margin: -5px -5px calc(var(--safe-padding) / 2);
    justify-content: center;
}

.Servers-module__server {
    max-width: unset;
}

.MonitoringServer-module__wrapper {
    background: var(--bg-color-700);
    padding: var(--safe-padding);
}

.MonitoringServer-module__wrapper+.MonitoringServer-module__wrapper {
    margin-top: var(--safe-padding);
}

.Product-module__name {
    text-align: center;
}

.ShopFooter-module__ipInfo {
    text-align: center;
    font-size: 12px;
    color: var(--font-color-700);
    margin: var(--safe-padding) 0;
}

.LangSwitcher-module__list {
    background: var(--bg-color-800);
}

.Product-module__discount {
    top: 10px;
    right: 10px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.swiper-slide-active img,
.swiper-slide-prev img,
.swiper-slide-next img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--default-border-radius);
}

.mySwiper {
    height: 250px;
}

.container.swiperContainer {
    margin-top: var(--safe-padding);
    margin-bottom: var(--safe-padding);
}

.Widgets-module__customWidgetWrapper .boxBody {
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    gap: 15px;
    max-height: 84px;
}

.Widgets-module__customWidgetWrapper .boxBody,
.Widgets-module__customPrefixWidgetWrapper .boxBody {
    background: var(--bg-color-700);
    display: flex;
    transition: all 0.2s;
}

.Widgets-module__customPrefixWidgetWrapper .boxBody {
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.Widgets-module__widgetTitle {
    font-weight: 600;
}

.Widgets-module__widgetDescription {
    font-size: 12px;
}

.Widgets-module__widgetText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

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

.Widgets-module__widgetPrefix {
    padding: var(--safe-padding);
    background: var(--accent-color-800);
    border-radius: var(--default-border-radius);
    font-weight: 600;
}

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

.ModalLayout-module__positionWrapper {
    align-items: center;
    justify-content: center;
    background: #000000e8;
}

.boxHeader,
.boxFooter {
    background: var(--bg-color-900);
}

.boxHeader {
    border-radius: var(--default-border-radius) var(--default-border-radius) 0 0;
}

.boxFooter {
    border-radius: 0 0 var(--default-border-radius) var(--default-border-radius);
}

.Button-module__btn.Button-module__accent {
    width: 100%;
}

.PlayerBalanceModal-module__footer {
    gap: var(--safe-padding);
}

.Button-module__btn.Button-module__gray:hover, .Button-module__btn.Button-module__gray:focus {
    background-color: var(--product-items-trans-bg-color);
}

.boxHeader {
    align-items: center;
    justify-content: center;
}

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

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

.PlayerBalanceModal-module__bonusItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--bg-color-800);
    border-radius: var(--default-border-radius);
}

.PlayerBalanceModal-module__bonusPercent {
    font-weight: var(--title-font-weight);
    font-size: 18px;
    color: var(--font-color-700);
}

.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);
}

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

.ProfileNav-module__header.boxHeader,
.ProfileNav-module__body.boxBody,
.ProfileNav-module__wrapper .boxFooter,
.ProfileContent-module__body.boxBody {
    background: var(--bg-color-700);
}

.ProfileNav-module__wrapper {
    margin-right: var(--safe-padding);
}

.ProfileNav-module__navItem {
    background: var(--bg-color-900);
}

.ProfileNav-module__body {
    gap: var(--safe-padding);
}

.ProfileContent-module__title {
    font-size: 12px;
    color: var(--font-color-900);
}

.ProfileContent-module__box {
    background-color: var(--bg-color-800);
}

.ProductItemSelector-module__items {
    grid-template-columns: repeat(4, minmax(50px, 1fr));
}

.productModalDescription {
    padding: 0px;
}

.productModalDescription {
    list-style: inside;
    text-align: left;
    padding: 0px;
    margin-bottom: var(--safe-padding);
    background-color: transparent;
}

.privilege-title {
    font-size: var(--default-font-size);
    margin-bottom: var(--safe-padding);
    text-align: center;
}

.privilege-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: var(--default-border-radius);
    padding: 15px;
    margin-bottom: var(--safe-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privilege-value {
    font-weight: var(--title-font-weight);
    color: var(--font-color-700);
    background: var(--accent-color-800);
    padding: 5px 10px;
    border-radius: var(--default-border-radius);
}

.resources-container {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: var(--default-border-radius);
    padding: 15px;
    margin-bottom: var(--safe-padding);
}

.resources-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--safe-padding);
}

.resources-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--safe-padding);
}

.resources-title {
    font-weight: var(--title-font-weight);
    font-size: var(--default-font-size);
}

.resources-reload {
    color: var(--font-color-900);
    font-size: var(--default-font-size);
}

.reload-icon {
    display: inline-block;
    margin-right: 5px;
}

.resource-item {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--default-border-radius);
    padding: var(--safe-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.resource-amount {
    color: var(--font-color-700);
    font-size: var(--default-font-size);
}

.resource-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.privilege-name {
    font-weight: var(--title-font-weight);
    font-size: var(--default-font-size);
    margin-bottom: 5px;
}

.privilege-description {
    color: var(--font-color-900);
    font-size: var(--default-font-size);
}

.ItemContent-module__footer.boxFooter {
    gap: var(--safe-padding);
}

.PlayerMenuMobile-module__menuWrapper {
    background-color: #000000e8;
}

.MobileCopyright-module__link {
    white-space: nowrap;
    margin-left: 5px;
    color: var(--font-color-700);
}

.MobileCopyright-module__wrapper {
    background-color: transparent !important;
    display: flex;
    justify-content: center;
}

.CountSelector-module__changeCountBtn.CountSelector-module__left,
.CountSelector-module__changeCountBtn.CountSelector-module__right {
    border-radius: var(--default-border-radius);
}

/* === ДОПОЛНИТЕЛЬНЫЕ СЕЛЕКТОРЫ ДЛЯ СКРЫТИЯ "МАГАЗИН" === */
.shop-footer-title,
.shop-footer-text,
.shop-subtitle,
.shop-description,
.magenta-text,
.shop-magazin,
.shop-magazin-text,
.shop-magazin-label,
.shop-footer .text,
.shop-footer span,
.shop-footer div,
.shop-footer p {
    display: none !important;
}

/* === МОБИЛЬНАЯ АДАПТАЦИЯ === */
@media (max-width: 1310px) {
    .container {
        width: auto;
    }
}

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

    .ProfileNav-module__body.boxBody {
        border-radius: var(--default-border-radius);
    }

    .resources-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 680px) {
    .privilege-value {
        min-width: 70px;
    }

    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .privilege-description, .resources-reload, .privilege-value {
        font-size: 12px;
    }
    
    .skin-deposit-widget {
        padding: 20px !important;
    }
    
    .skin-deposit-btn {
        padding: 16px !important;
        font-size: 16px !important;
    }
    
    .bonus-badge {
        padding: 4px 10px !important;
        font-size: 13px !important;
    }
}
/* === ИСПРАВЛЕНИЕ РАСПОЛОЖЕНИЯ БОНУСНОГО БЕЙДЖА === */
.bonus-container {
    margin-top: 15px; /* Уменьшено с 15px до 10px */
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.bonus-badge {
    background: linear-gradient(145deg, #ff3333, #e60000) !important;
    color: white !important;
    padding: 5px 12px !important;
    border-radius: 15px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    display: inline-block !important;
    margin-top: -1px !important; /* Увеличен отрицательный отступ для поднятия бейджа */
    box-shadow: 
        0 0 10px rgba(255, 51, 51, 0.6),
        inset 0 0 8px rgba(255, 0, 0, 0.3) !important;
    letter-spacing: 1px !important;
    animation: pulse 2s infinite !important;
}
/* === GAMESTORES: WIPE BLOCK - БЛОКИРОВКА ПРЕДМЕТОВ === */

/* Основной класс для заблокированных товаров */
.product-wipe-blocked {
    position: relative !important;
    opacity: 0.75 !important;
    pointer-events: none !important;
    filter: grayscale(40%) !important;
    transition: all 0.3s ease !important;
}

/* Бейдж "ВАЙП-БЛОК" */
.product-wipe-blocked::after {
    content: 'ВАЙП-БЛОК' !important;
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    background: linear-gradient(145deg, #cc0000, #990000) !important;
    color: #fff !important;
    padding: 5px 12px !important;
    border-radius: 10px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    z-index: 20 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    animation: wipePulse 2.5s infinite !important;
}

/* Анимация пульсации бейджа */
@keyframes wipePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(204, 0, 0, 0.4); }
    50% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(204, 0, 0, 0); }
}

/* Затемнение поверх карточки */
.product-wipe-blocked::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.4) 100%) !important;
    border-radius: 15px !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

/* === СЕРЫЕ КНОПКИ ДЛЯ GAMESTORES === */
/* Основная кнопка покупки */
.product-wipe-blocked .Product-module__buyBtn,
.product-wipe-blocked .Button-module__btn.Button-module__accent,
.product-wipe-blocked button[class*="buy"],
.product-wipe-blocked [data-testid="buy-button"] {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a) !important;
    color: #777 !important;
    cursor: not-allowed !important;
    border: 1px solid #444 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: none !important;
}

/* Отключение hover-эффектов */
.product-wipe-blocked .Product-module__buyBtn:hover,
.product-wipe-blocked .Button-module__btn:hover,
.product-wipe-blocked button[class*="buy"]:hover {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a) !important;
    color: #777 !important;
    transform: none !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

/* Отключение анимаций карточки */
.product-wipe-blocked:hover {
    transform: none !important;
    opacity: 0.75 !important;
    filter: grayscale(40%) !important;
}

/* === АЛЬТЕРНАТИВНЫЕ СЕЛЕКТОРЫ GAMESTORES === */
/* Если используется data-атрибут */
[data-wipe-blocked="true"],
[data-gs-wipe="blocked"],
[data-item-wipe="true"] {
    position: relative !important;
    opacity: 0.75 !important;
    pointer-events: none !important;
    filter: grayscale(40%) !important;
}

[data-wipe-blocked="true"]::after,
[data-gs-wipe="blocked"]::after,
[data-item-wipe="true"]::after {
    content: 'ВАЙП-БЛОК' !important;
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    background: linear-gradient(145deg, #cc0000, #990000) !important;
    color: #fff !important;
    padding: 5px 12px !important;
    border-radius: 10px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    z-index: 20 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}

/* Серая кнопка для data-атрибутов */
[data-wipe-blocked="true"] .Product-module__buyBtn,
[data-wipe-blocked="true"] .Button-module__btn,
[data-gs-wipe="blocked"] .Product-module__buyBtn,
[data-gs-wipe="blocked"] .Button-module__btn {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a) !important;
    color: #777 !important;
    cursor: not-allowed !important;
    border: 1px solid #444 !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

/* === ПОДСКАЗКА ПРИ НАВЕДЕНИИ (через title) === */
.product-wipe-blocked[title]:hover::before {
    content: attr(title) !important;
    position: absolute !important;
    bottom: -35px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(0, 0, 0, 0.9) !important;
    color: #fff !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    z-index: 30 !important;
    border: 1px solid #555 !important;
}

/* === МОБИЛЬНАЯ АДАПТАЦИЯ === */
@media (max-width: 768px) {
    .product-wipe-blocked::after {
        font-size: 10px !important;
        padding: 4px 10px !important;
        top: 10px !important;
        right: 10px !important;
    }
    
    .product-wipe-blocked {
        opacity: 0.8 !important;
    }
}

@media (max-width: 480px) {
    .product-wipe-blocked::after {
        font-size: 9px !important;
        padding: 3px 8px !important;
    }
}