@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

/* === ПЕРЕМЕННЫЕ === */
:root[data-theme=red_black] {
    --accent-color-800: #50e341;
    --accent-color-900: #3dd330;
    --accent-gradient: linear-gradient(135deg, #50e341 0%, #3dd330 100%);
    
    --font-color-700: #fff;
    --font-color-800: rgba(255, 255, 255, .85);
    --font-color-900: rgba(255, 255, 255, .6);
    
    --bg-color-800: #202020;
    --bg-color-700: #282828;
    --bg-color-900: #1c1c1c;
    
    --product-items-trans-bg-color: rgba(0, 0, 0, .4);
}

/* === АНИМАЦИИ === */
@keyframes fadeIn {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

@keyframes logoGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(80, 227, 65, 0.5),
            0 0 20px rgba(80, 227, 65, 0.3),
            0 0 30px rgba(80, 227, 65, 0.2);
        filter: brightness(1);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(80, 227, 65, 0.8),
            0 0 40px rgba(80, 227, 65, 0.5),
            0 0 60px rgba(80, 227, 65, 0.3);
        filter: brightness(1.2);
    }
}

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(80, 227, 65, 0.3);
        border-color: rgba(80, 227, 65, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(80, 227, 65, 0.5);
        border-color: rgba(80, 227, 65, 0.5);
    }
}

@keyframes plusPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0.5;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px rgba(80, 227, 65, 0.3); }
    50% { box-shadow: 0 0 30px rgba(80, 227, 65, 0.6); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes blick {
    0% { transform: translate(-100%, -25%) rotate(10deg); }
    20% { transform: translate(100%, -25%) rotate(10deg); }
    100% { transform: translate(100%, -25%) rotate(10deg); }
}

@keyframes float {
    0%, 100% { transform: translatey(0px); }
    50% { transform: translatey(-10px); }
}

/* === БАЗОВЫЕ СТИЛИ === */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    background-color: #1c1c1c !important;
}

body {
    background-color: #1c1c1c !important;
    animation: fadeIn 0.3s ease-out;
}

h1, h2, h3, h4 {
    font-size: 14px;
    font-weight: 400;
    font-family: "Unbounded", sans-serif;
    color: #fff;
}

/* === СКРЫТИЕ ЭЛЕМЕНТОВ === */
.Banner-module__img,
.LangSwitcher-module__btn,
.MonitoringWidget-module__header,
.Product-module__oldPrice,
.PlayerBalanceModal-module__label,
.Search-module__iconWrapper {
    display: none;
}

/* === HEADER === */
.container.headerContainer {
    width: 100% !important;
    background: rgba(33, 33, 33, 0.4) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(80, 227, 65, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
}

.container.headerContainer .Header-module__wrapper {
    max-width: 1200px;
    padding: 0px;
    margin: 0 auto;
    background-color: transparent;
    min-height: 70px;
}

.Header-module__logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Unbounded", sans-serif;
    animation: logoGlow 3s ease-in-out infinite, logoFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.Header-module__logo:hover {
    animation: logoGlow 1.5s ease-in-out infinite, logoFloat 2s ease-in-out infinite;
    letter-spacing: 1px;
}

/* === НАВИГАЦИЯ === */
.HeaderNav-module__wrapper {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-left: 20px;
    flex-wrap: wrap;
}

.HeaderNav-module__link {
    display: flex;
    gap: 0.5rem;
    cursor: pointer;
    padding: 8px 10px;
    transition: all .2s ease;
    background: rgb(255 255 255 / 5%);
    border-radius: 10px;
    color: rgb(255 255 255 / 50%);
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    flex-direction: row-reverse;
    align-items: center;
}

.HeaderNav-module__link:hover,
.HeaderNav-module__link:focus {
    color: rgb(255 255 255);
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2));
    border-radius: 10px;
}

.nav-icon {
    width: 18px;
}

/* === ПОДДЕРЖКА === */
.SupportLink-module__link {
    display: flex;
    cursor: pointer;
    padding: 8px 10px;
    transition: all .2s ease;
    background: rgb(255 255 255 / 5%);
    border-radius: 10px;
    color: rgb(255 255 255 / 50%);
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.5rem;
}

.SupportLink-module__link:hover,
.SupportLink-module__link:focus {
    color: rgb(255 255 255);
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2));
    border-radius: 10px;
}

/* === USER MENU === */
.PlayerMenu-module__profileLink,
.PlayerMenu-module__loginLink {
    text-transform: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    border-radius: 10px;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    white-space: nowrap;
    transition: 0.3s all;
    flex-direction: row-reverse;
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.15), rgba(61, 211, 48, 0.15));
    border: 1px solid rgba(80, 227, 65, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
}

.PlayerMenu-module__profileLink:hover,
.PlayerMenu-module__profileLink:focus,
.PlayerMenu-module__loginLink:hover,
.PlayerMenu-module__loginLink:focus {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.4);
    transform: scale(1.05);
}

#user-icon {
    margin-top: 3px;
    width: 18px;
}

.user-avatar {
    border-radius: 10px;
    border: 2px solid #50e341;
    width: 36px;
    height: 36px;
    box-shadow: 0 0 10px rgba(80, 227, 65, 0.4);
    animation: glow 3s infinite;
}

.user-avatar-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* === BALANCE === */
.PlayerBalance-module__btn {
    text-transform: none;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2));
    border: 1px solid rgba(80, 227, 65, 0.4);
    border-radius: 10px;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    padding: 5px 30px 5px 10px;
    white-space: nowrap;
    transition: all .2s ease;
    flex-direction: row-reverse;
    position: relative;
    animation: pulseGlow 3s ease-in-out infinite;
}

.PlayerBalance-module__btn::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 700;
    color: #50e341;
    opacity: 0.8;
    animation: plusPulse 2s ease-in-out infinite;
}

.PlayerBalance-module__btn:hover,
.PlayerBalance-module__btn:focus {
    background: var(--accent-gradient);
    color: #fff;
    border-color: rgba(80, 227, 65, 0.6);
    box-shadow: 0 0 25px rgba(80, 227, 65, 0.5);
    transform: scale(1.05);
}

.PlayerBalance-module__btn:hover::after {
    opacity: 1;
    color: #fff;
    animation: plusPulse 1s ease-in-out infinite;
}

.PlayerBalanceModal-module__inputWrapper {
    width: 100%;
    display: flex;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    background: rgb(255 255 255 / 5%);
    flex-direction: row-reverse;
}

.PlayerBalanceModal-module__currency {
    position: relative;
    top: 5px;
    right: 5px;
    height: 30px;
    padding: 0px 10px;
    background: rgb(255 255 255 / 5%);
    border-radius: 8px;
    color: rgb(255 255 255 / 50%);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 32px;
}

.PlayerBalance-module__modal {
    width: 300px;
    margin-top: 200px;
}

/* === PRODUCTS === */
.Products-module__wrapper {
    margin-top: 15px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.Product-module__wrapper {
    background: radial-gradient(rgb(80 227 65 / 10%) 0%, transparent 60%) 50% 0% / 300% 300% no-repeat rgb(255 255 255 / 3%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    position: relative;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    transition: 0.3s all;
    animation: fadeInUp 0.3s ease-out backwards;
}

.Product-module__wrapper:hover {
    background: radial-gradient(rgb(80 227 65 / 15%) 0%, transparent 60%) 50% 10% / 300% 300% no-repeat rgb(255 255 255 / 5%);
    border: none;
    transform: scale(1.03);
}

.Product-module__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: 0.6s;
}

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

.Products-module__wrapper .Product-module__wrapper:nth-child(1) { animation-delay: 0.02s; }
.Products-module__wrapper .Product-module__wrapper:nth-child(2) { animation-delay: 0.04s; }
.Products-module__wrapper .Product-module__wrapper:nth-child(3) { animation-delay: 0.06s; }
.Products-module__wrapper .Product-module__wrapper:nth-child(4) { animation-delay: 0.08s; }
.Products-module__wrapper .Product-module__wrapper:nth-child(5) { animation-delay: 0.1s; }
.Products-module__wrapper .Product-module__wrapper:nth-child(6) { animation-delay: 0.12s; }

.Product-module__img {
    position: relative;
    top: -15px;
    object-fit: contain;
    width: 100%;
    aspect-ratio: 1 / 1;
    transform: scale(0.7);
}

.Product-module__name {
    z-index: 6;
    transition: all .2s ease;
    transform: translateY(0%);
    width: 100%;
    padding: 0px;
    bottom: 28px;
    left: 15px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #fafafa;
}

.Product-module__price {
    top: unset;
    left: 15px;
    bottom: 10px;
    background-color: transparent;
    padding: 0px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: rgb(255 255 255 / 75%);
    font-size: 13px;
}

.Product-module__discount {
    top: 10px;
    bottom: unset;
    right: 10px;
    left: unset;
    background: var(--accent-gradient);
    color: var(--font-color-700);
    padding: 1px 6px;
    border-radius: 6px;
    font-size: 11px;
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.5);
}

.Product-module__count {
    right: 5px;
    top: unset;
    background: rgb(255 255 255 / 10%);
    border-radius: 8px;
    padding: 3px 6px;
    transition: all .15s ease;
    color: rgb(255 255 255 / 75%);
    font-size: 13px;
}

/* === SERVERS === */
.Servers-module__server {
    cursor: pointer;
    color: var(--font-color-900);
    background-color: #282828;
    padding: 10px 15px;
    border-radius: 10px;
    flex: 1;
    margin: 5px;
    min-width: 200px;
    max-width: 300px;
    transition: all .15s ease;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.Servers-module__server.Servers-module__active,
.Servers-module__server:hover,
.Servers-module__server:focus {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.3), rgba(61, 211, 48, 0.3));
    border-radius: 10px;
    color: #fff;
}

.Servers-module__servers {
    display: flex;
    flex-wrap: wrap;
    margin: -5px -5px 10px;
    justify-content: center;
}

/* === CATEGORIES === */
.Categories-module__category {
    margin-bottom: 10px;
    background: rgb(255 255 255 / 5%);
    border-radius: 10px;
    padding: 5px 15px;
    font-size: 14px;
    height: 34px;
    transition: all .2s ease;
}

.Categories-module__category.Categories-module__active,
.Categories-module__category:hover {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2));
    color: var(--font-color-700);
}

/* === SEARCH === */
.Search-module__wrapper {
    width: 100%;
    display: flex;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    background: rgb(255 255 255 / 5%);
    margin-top: 0px;
    transition: 0.3s;
}

.Search-module__wrapper:hover {
    background: rgb(255 255 255 / 10%);
}

/* === BUTTONS === */
.Button-module__btn.Button-module__gray {
    color: rgb(209 209 209);
    background-color: #282828;
    border-color: #333333;
    border-radius: 10px;
    padding: 10px 15px;
    transition: all .2s ease;
}

.Button-module__btn.Button-module__gray:hover,
.Button-module__btn.Button-module__gray:focus {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.1), rgba(61, 211, 48, 0.1));
    border-color: rgba(80, 227, 65, 0.3);
    color: #fff;
}

.Button-module__btn.Button-module__accent {
    color: var(--font-color-700);
    background: var(--accent-gradient);
    border-color: transparent;
    border-radius: 10px;
    padding: 10px 15px;
    transition: all .2s ease;
}

.Button-module__btn.Button-module__accent:hover,
.Button-module__btn.Button-module__accent:focus {
    background: linear-gradient(135deg, #3dd330, #50e341);
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.4);
}

/* === WIDGETS === */
.Widgets-module__wrapper.Widgets-module__rightSide {
    margin-right: 0;
    margin-left: 10px;
    margin-top: 5px;
}

.Widgets-module__widgetWrapper+.Widgets-module__widgetWrapper {
    margin-top: 15px;
}

.boxBody {
    padding: 15px;
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 10px;
    border-top: 1px solid rgba(80, 227, 65, 0.3);
    border-left: 1px solid rgba(80, 227, 65, 0.3);
    border-right: 1px solid rgba(80, 227, 65, 0.3);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.boxBody:hover {
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.2);
}

.boxBody:last-child {
    border-radius: 10px;
    margin-bottom: 0;
}

.boxFooter {
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 10px;
    border-bottom: 1px solid rgba(80, 227, 65, 0.3);
    border-left: 1px solid rgba(80, 227, 65, 0.3);
    border-right: 1px solid rgba(80, 227, 65, 0.3);
    transition: all 0.3s ease;
}

.boxFooter:hover {
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.2);
}

.boxHeader {
    display: none;
}

/* === MODAL === */
.ModalLayout-module__wrapper {
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(8 8 8 / 85%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999 !important;
}

.modal-content {
    position: relative !important;
    z-index: 10000 !important;
}

/* Deposit Modal Styling */
.PlayerBalanceModal-module__wrapper {
    background: rgba(28, 28, 28, 0.95) !important;
    backdrop-filter: blur(40px) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(80, 227, 65, 0.2) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(80, 227, 65, 0.15) !important;
    max-width: 500px !important;
    width: 90% !important;
    padding: 0 !important;
}

.PlayerBalanceModal-module__header {
    padding: 24px !important;
    border-bottom: 1px solid rgba(80, 227, 65, 0.15) !important;
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.1), rgba(61, 211, 48, 0.05)) !important;
    border-radius: 20px 20px 0 0 !important;
}

.PlayerBalanceModal-module__title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Unbounded", sans-serif;
}

/* Replace "Deposit" with Russian text */
.PlayerBalanceModal-module__title {
    font-size: 0 !important;
}

.PlayerBalanceModal-module__title::before {
    content: "Пополнение баланса";
    font-size: 20px !important;
    font-weight: 700 !important;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Unbounded", sans-serif;
}

.PlayerBalanceModal-module__body {
    padding: 24px !important;
}

.PlayerBalanceModal-module__inputWrapper {
    width: 100%;
    display: flex;
    height: 48px !important;
    border-radius: 12px !important;
    overflow: hidden;
    background: rgba(40, 40, 40, 0.5) !important;
    flex-direction: row-reverse;
    border: 1px solid rgba(80, 227, 65, 0.2) !important;
    transition: all 0.3s ease;
    margin-bottom: 20px !important;
}

.PlayerBalanceModal-module__inputWrapper:focus-within {
    border-color: rgba(80, 227, 65, 0.5) !important;
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.2) !important;
}

.PlayerBalanceModal-module__input {
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 0 16px !important;
    outline: none !important;
}

.PlayerBalanceModal-module__input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.PlayerBalanceModal-module__currency {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    height: 100% !important;
    padding: 0 16px !important;
    background: rgba(80, 227, 65, 0.1) !important;
    border-radius: 0 !important;
    color: #50e341 !important;
    text-transform: uppercase;
    font-size: 14px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    border-left: 1px solid rgba(80, 227, 65, 0.2) !important;
}

.PlayerBalanceModal-module__methods {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
    gap: 12px !important;
    margin-top: 20px !important;
}

.PlayerBalanceModal-module__method {
    background: rgba(40, 40, 40, 0.5) !important;
    border: 1px solid rgba(80, 227, 65, 0.2) !important;
    border-radius: 12px !important;
    padding: 16px 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
}

.PlayerBalanceModal-module__method:hover {
    background: rgba(40, 40, 40, 0.8) !important;
    border-color: rgba(80, 227, 65, 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(80, 227, 65, 0.15) !important;
}

.PlayerBalanceModal-module__method.PlayerBalanceModal-module__active {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2)) !important;
    border-color: rgba(80, 227, 65, 0.5) !important;
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.3) !important;
}

.PlayerBalanceModal-module__methodIcon {
    width: 32px !important;
    height: 32px !important;
    filter: brightness(1.2) !important;
}

.PlayerBalanceModal-module__methodName {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.PlayerBalanceModal-module__footer {
    padding: 20px 24px !important;
    border-top: 1px solid rgba(80, 227, 65, 0.15) !important;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    display: flex !important;
    gap: 12px !important;
    background: rgba(20, 20, 20, 0.5) !important;
}

.PlayerBalanceModal-module__footer .Button-module__btn {
    flex: 1 !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
}

.PlayerBalance-module__modal {
    width: auto !important;
    margin-top: 0 !important;
}

/* Custom Modal Wrapper (для виджетов) */
.customModalWrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important;
}

.customModalWrapper .modal-content {
    position: relative !important;
    z-index: 100000 !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(80, 227, 65, 0.15) !important;
}

/* Disable hover effects for boxBody and boxFooter inside modals */
.customModalWrapper .boxBody:hover,
.customModalWrapper .boxFooter:hover {
    box-shadow: none !important;
    border-color: rgba(80, 227, 65, 0.15) !important;
}

/* Modal boxBody and boxFooter styling */
.customModalWrapper .boxBody {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.customModalWrapper .boxFooter {
    background: rgba(20, 20, 20, 0.5) !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* === SHOP === */
.Shop-module__wrapper {
    width: 915px;
    margin-bottom: 20px;
    margin-top: 5px;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.Shop-module__wrapper:hover {
    box-shadow: 0 0 30px rgba(80, 227, 65, 0.15);
}

/* Fix corners for boxBody and boxFooter in Shop */
.Shop-module__wrapper .boxBody {
    border-radius: 10px 10px 0 0 !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.Shop-module__wrapper .boxFooter {
    border-radius: 0 0 10px 10px !important;
    border-top: none !important;
    margin-top: 0 !important;
}

/* Disable individual hover effects */
.Shop-module__wrapper .boxBody:hover,
.Shop-module__wrapper .boxFooter:hover {
    box-shadow: none !important;
}

.Shop-module__wrapper:hover .boxBody,
.Shop-module__wrapper:hover .boxFooter {
    border-color: rgba(80, 227, 65, 0.4) !important;
}

/* === FOOTER === */
.ShopFooter-module__text {
    margin-bottom: 10px;
    text-align: left;
    font-size: 12px;
    background: rgb(255 255 255 / 3%);
    padding: 20px;
    border-radius: 10px;
}

.ShopFooter-module__links {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
    text-transform: none;
    font-weight: 500;
    padding: 0px;
    border-radius: 10px;
}

.ShopFooter-module__link {
    font-size: 13px;
    padding: 6px 6px;
    color: rgb(255 255 255 / 50%);
    font-weight: 400;
    text-align: center;
    border: none;
    background: rgb(255 255 255 / 5%);
    border-radius: 8px;
    transition: all .1s ease;
}

.ShopFooter-module__link:hover {
    color: #ffffff;
    background: rgb(255 255 255 / 10%);
    border: none;
}

/* === MONITORING === */
[data-widgettype="monitoring"] {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

[data-widgettype="monitoring"]:hover {
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.2) !important;
}

[data-widgettype="monitoring"] .boxBody {
    padding: 10px;
    background: rgba(28, 28, 28, 0.8) !important;
    border: 1px solid rgba(80, 227, 65, 0.2) !important;
    border-radius: 10px 10px 0 0 !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

[data-widgettype="monitoring"] .boxFooter {
    background: rgba(28, 28, 28, 0.8) !important;
    border: 1px solid rgba(80, 227, 65, 0.2) !important;
    border-radius: 0 0 10px 10px !important;
    border-top: none !important;
    margin-top: 0 !important;
    padding: 10px;
}

/* Disable default boxBody hover for monitoring widget */
[data-widgettype="monitoring"] .boxBody:hover {
    box-shadow: none !important;
}

[data-widgettype="monitoring"] .boxFooter:hover {
    box-shadow: none !important;
}

[data-widgettype="monitoring"]:hover .boxBody,
[data-widgettype="monitoring"]:hover .boxFooter {
    border-color: rgba(80, 227, 65, 0.4) !important;
}

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

.MonitoringWidget-module__footer.boxFooter {
    padding: 10px;
}

[data-widgettype="monitoring"] {
    animation: fadeIn 0.3s ease-out;
}

.MonitoringWidget-module__updateBtn {
    width: 100%;
    background: rgba(80, 227, 65, 0.1) !important;
    border: 1px solid rgba(80, 227, 65, 0.2) !important;
    color: #50e341 !important;
    transition: all 0.2s ease;
    border-radius: 8px !important;
}

.MonitoringWidget-module__updateBtn:hover {
    background: rgba(80, 227, 65, 0.2) !important;
    border-color: rgba(80, 227, 65, 0.4) !important;
    box-shadow: 0 2px 8px rgba(80, 227, 65, 0.15);
    transform: translateY(-1px);
}

.MonitoringWidget-module__updateBtn:active {
    transform: translateY(0);
}

/* === LOADER ANIMATION === */
.Loader-module__loader {
    border: 3px solid rgba(80, 227, 65, 0.2) !important;
    border-top-color: #50e341 !important;
    width: 24px !important;
    height: 24px !important;
    animation: loaderSpin 0.8s linear infinite !important;
}

@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
        box-shadow: 0 0 0 rgba(80, 227, 65, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(80, 227, 65, 0.6);
    }
    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 0 rgba(80, 227, 65, 0.4);
    }
}

.MonitoringServer-module__wrapper {
    padding: 12px;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 8px;
    transition: all .2s ease;
}

.MonitoringServer-module__wrapper:hover {
    background: rgba(40, 40, 40, 0.8);
}

.MonitoringServer-module__wrapper+.MonitoringServer-module__wrapper {
    margin-top: 8px;
}

.MonitoringServer-module__name {
    color: #ffffff;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.MonitoringServer-module__info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.MonitoringServer-module__progressInfo {
    z-index: 7;
    position: absolute;
    border-radius: 8px;
    width: 100%;
    padding: 6px 10px;
    background-color: #212121;
    border: 1px solid rgb(43, 43, 43);
    bottom: 100%;
    left: 0;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(5px);
    visibility: hidden;
    transition: transform .2s ease, opacity .2s ease, visibility .2s step-end;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.MonitoringServer-module__progressBarWrapper:hover .MonitoringServer-module__progressInfo {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: transform .2s ease, opacity .2s ease, visibility .2s step-start;
}

.MonitoringServer-module__progressInfo span {
    color: #50e341;
    font-weight: 500;
}

.MonitoringServer-module__progressBarWrapper {
    margin-bottom: 8px;
    border-radius: 6px;
    position: relative;
    width: 100%;
    height: 6px;
    overflow: visible;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(80, 227, 65, 0.15);
}

.MonitoringServer-module__progressBarAnim {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #50e341, #3dd330);
    box-shadow: 0 0 8px rgba(80, 227, 65, 0.4);
}

.MonitoringServer-module__status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.2;
}

.MonitoringServer-module__status--online {
    background: rgba(80, 227, 65, 0.15);
    color: #50e341;
    border: 1px solid rgba(80, 227, 65, 0.3);
}

.MonitoringServer-module__status--offline {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.3);
}

.MonitoringServer-module__players {
    color: #50e341;
    font-weight: 500;
    font-size: 11px;
}

/* === SUPPORT PAGE === */
.SupportPage-module__wrapper {
    animation: fadeIn 0.3s ease-out;
    margin-top: 5px;
}

.SupportContent-module__wrapper {
    margin-top: 5px;
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(80, 227, 65, 0.2);
    border-radius: 15px;
    overflow: hidden;
    animation: fadeInUp 0.4s ease-out;
}

/* === PROFILE PAGE === */
.ProfileContent-module__wrapper {
    margin-top: 5px;
}

.ProfileNav-module__wrapper {
    margin-top: 5px;
}

.Profile-module__wrapper {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    animation: fadeIn 0.3s ease-out;
}

/* Profile Navigation */
.ProfileNav-module__wrapper {
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(80, 227, 65, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideInRight 0.4s ease-out;
}

.ProfileNav-module__wrapper:hover {
    border-color: rgba(80, 227, 65, 0.4);
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.15);
}

/* Disable glow for inner elements */
.ProfileNav-module__wrapper .boxBody:hover,
.ProfileNav-module__wrapper .boxFooter:hover {
    box-shadow: none !important;
}

.ProfileNav-module__header {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2)) !important;
    border-bottom: 1px solid rgba(80, 227, 65, 0.3) !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-radius: 15px 15px 0 0 !important;
}

.ProfileNav-module__img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    border: 3px solid #50e341 !important;
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.5) !important;
    transition: all 0.3s ease;
    animation: glow 3s infinite;
}

.ProfileNav-module__img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(80, 227, 65, 0.8) !important;
}

.ProfileNav-module__name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-align: center;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Unbounded", sans-serif;
}

.ProfileNav-module__body {
    padding: 10px !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ProfileNav-module__navItem {
    padding: 12px 16px !important;
    border-radius: 10px !important;
    background: rgba(40, 40, 40, 0.5) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-decoration: none;
    display: block;
}

.ProfileNav-module__navItem:hover {
    background: rgba(80, 227, 65, 0.1) !important;
    color: #50e341 !important;
    border-color: rgba(80, 227, 65, 0.3);
    transform: translateX(5px);
}

.ProfileNav-module__navItem.ProfileNav-module__active {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2)) !important;
    color: #50e341 !important;
    border-color: rgba(80, 227, 65, 0.4);
    box-shadow: 0 0 15px rgba(80, 227, 65, 0.2);
    font-weight: 600 !important;
}

.ProfileNav-module__logOut {
    width: 100% !important;
    background: rgba(255, 59, 48, 0.15) !important;
    border: 1px solid rgba(255, 59, 48, 0.3) !important;
    color: #ff3b30 !important;
    transition: all 0.2s ease;
}

.ProfileNav-module__logOut:hover {
    background: rgba(255, 59, 48, 0.25) !important;
    border-color: rgba(255, 59, 48, 0.5) !important;
    box-shadow: 0 0 20px rgba(255, 59, 48, 0.4) !important;
    transform: scale(1.02);
}

/* Profile Content */
.ProfileContent-module__wrapper {
    flex: 1;
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(80, 227, 65, 0.2);
    border-radius: 15px;
    overflow: hidden;
    animation: fadeInUp 0.4s ease-out;
}

.ProfileContent-module__header {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2)) !important;
    border-bottom: 1px solid rgba(80, 227, 65, 0.3) !important;
    padding: 20px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    border-radius: 15px 15px 0 0 !important;
}

.ProfileContent-module__body {
    padding: 20px !important;
}

.ProfileContent-module__title {
    display: block;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 12px;
}

.ProfileContent-module__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.ProfileContent-module__box {
    background: rgba(40, 40, 40, 0.5) !important;
    border: 1px solid rgba(80, 227, 65, 0.2);
    border-radius: 12px !important;
    padding: 16px !important;
    margin-bottom: 24px !important;
    transition: all 0.3s ease;
}

.ProfileContent-module__box:hover {
    border-color: rgba(80, 227, 65, 0.4);
    background: rgba(40, 40, 40, 0.7) !important;
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.1);
}

.ProfileContent-module__infoLine {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.ProfileContent-module__infoLine:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ProfileContent-module__infoLine:hover {
    padding-left: 8px;
}

.ProfileContent-module__infoLine > span:first-child {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px !important;
    font-weight: 500;
}

.ProfileContent-module__infoLineValue {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.ProfileContent-module__steamid {
    color: #50e341 !important;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(80, 227, 65, 0.1);
}

.ProfileContent-module__steamid:hover {
    background: rgba(80, 227, 65, 0.2);
    box-shadow: 0 0 10px rgba(80, 227, 65, 0.3);
    transform: scale(1.05);
}

/* Promocode Input */
.ProfileContent-module__inputWrapper {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
}

.ProfileContent-module__input {
    flex: 1 !important;
    background: rgba(40, 40, 40, 0.5) !important;
    border: 1px solid rgba(80, 227, 65, 0.2) !important;
    border-radius: 10px !important;
    padding: 11px 16px !important;
    color: #fff !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    height: 42px !important;
    line-height: 20px !important;
    box-sizing: border-box !important;
}

.ProfileContent-module__input:focus {
    outline: none !important;
    border-color: rgba(80, 227, 65, 0.5) !important;
    background: rgba(40, 40, 40, 0.8) !important;
    box-shadow: 0 0 15px rgba(80, 227, 65, 0.2) !important;
}

.ProfileContent-module__input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.ProfileContent-module__usePromoBtn {
    padding: 11px 24px !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
    height: 42px !important;
    line-height: 20px !important;
    box-sizing: border-box !important;
}

.ProfileContent-module__usePromoBtn:hover {
    transform: scale(1.05) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .Profile-module__wrapper {
        flex-direction: column;
    }
    
    .ProfileNav-module__wrapper {
        width: 100%;
    }
}

.SupportPage-module__header {
    background: rgba(28, 28, 28, 0.8);
    border: 1px solid rgba(80, 227, 65, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.SupportPage-module__table,
.TicketsTable-module__wrapper {
    background: rgba(28, 28, 28, 0.8) !important;
    border: 1px solid rgba(80, 227, 65, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.TicketsTable-module__tableData {
    background: rgba(28, 28, 28, 0.8) !important;
    border: 1px solid rgba(80, 227, 65, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.SupportPage-module__tableHeader,
.TicketsTable-module__tableHeader {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.15), rgba(61, 211, 48, 0.15)) !important;
    border-bottom: 1px solid rgba(80, 227, 65, 0.3);
    padding: 15px;
    border-radius: 10px 10px 0 0;
}

.SupportPage-module__tableHeaderCell,
.TicketsTable-module__tableHeaderCell {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.SupportPage-module__tableRow,
.TicketsTable-module__tableRow {
    border-bottom: 1px solid rgba(80, 227, 65, 0.1);
    transition: all 0.2s ease;
}

.SupportPage-module__tableRow:hover,
.TicketsTable-module__tableRow:hover {
    background: rgba(80, 227, 65, 0.05);
}

.SupportPage-module__tableRow:last-child,
.TicketsTable-module__tableRow:last-child {
    border-radius: 0 0 10px 10px;
    border-bottom: none;
}

.SupportPage-module__tableCell,
.TicketsTable-module__tableCell {
    padding: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.SupportTicket-module__status {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.SupportTicket-module__status--open {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2));
    color: #50e341;
    border: 1px solid rgba(80, 227, 65, 0.3);
}

.SupportTicket-module__status--closed {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.SupportTicket-module__status--answered {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.3), rgba(61, 211, 48, 0.3));
    color: #50e341;
    border: 1px solid rgba(80, 227, 65, 0.4);
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    height: 8px;
    width: 8px;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background: rgb(255 255 255 / 5%);
    border-radius: 5px;
}

/* === TOAST NOTIFICATIONS === */
.Toast-module__toast {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    background: rgb(37 37 37 / 80%);
    box-shadow: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.Toasts-module__wrapper {
    position: fixed;
    top: 80px;
    right: 10px;
    max-height: 100vh;
    z-index: 400;
}

/* === BONUS CALCULATOR === */
.deposit-bonus-block {
    background: var(--bg-color-900);
    border-radius: 10px;
    border: 1px solid var(--bg-color-800);
    padding: 20px 24px 18px 24px;
    margin-bottom: 18px;
    color: #bfc1c7;
    font-family: "Unbounded", sans-serif;
    box-sizing: border-box;
    width: 100%;
    max-width: 420px;
    margin-top: 30px;
}

.deposit-bonus-block__title {
    font-size: 16px;
    margin-bottom: 16px;
    color: #bfc1c7;
    font-weight: 500;
}

.deposit-bonus-block__bonuses {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.deposit-bonus-block__bonus {
    flex: 1;
    background: #181818;
    color: #bfc1c7;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.deposit-bonus-block__bonus--active,
.deposit-bonus-block__bonus:focus {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.15), rgba(61, 211, 48, 0.15));
    color: #fff;
    outline: none;
    box-shadow: 0px 2px 10px rgba(80, 227, 65, 0.2);
    border: 1px solid rgba(80, 227, 65, 0.3);
}

.deposit-bonus-block__amounts {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
}

.deposit-bonus-block__amount {
    flex: 1;
    text-align: center;
    color: #6e6e6e;
    font-size: 15px;
    padding-top: 6px;
    border-top: 2px solid var(--bg-color-800);
    transition: all 0.2s;
}

.deposit-bonus-block__amount--active {
    color: #50e341;
    border-top: 2px solid #50e341;
}

.deposit-bonus-block__result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    font-size: 18px;
    font-weight: 500;
}

.deposit-bonus-block__result-label {
    color: #bfc1c7;
    font-size: 15px;
    font-weight: 400;
    margin-right: 8px;
}

.deposit-bonus-block__result-value {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.deposit-bonus-block__result-bonus {
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 8px;
    padding: 3px 14px;
    font-size: 15px;
    font-weight: 500;
    margin-left: 8px;
    display: inline-block;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 430px) {
    .Header-module__nav,
    .user-avatar,
    .user-avatar-pic {
        display: none;
    }

    .container.headerContainer .Header-module__wrapper {
        padding: 0px 10px;
        min-height: 60px;
        justify-content: space-between;
    }

    .Shop-module__wrapper {
        width: 100%;
        margin-top: 0px;
    }

    .Widgets-module__wrapper.Widgets-module__rightSide {
        margin-left: 0px;
        margin-top: 0px;
    }
}

/* === TABLET RESPONSIVE === */
@media (max-width: 768px) {
    /* Header adjustments */
    .container.headerContainer .Header-module__wrapper {
        padding: 0px 15px;
        min-height: 65px;
    }
    
    .Header-module__logo {
        font-size: 20px;
    }
    
    .HeaderNav-module__wrapper {
        margin-left: 10px;
        column-gap: 6px;
    }
    
    .HeaderNav-module__link,
    .SupportLink-module__link {
        padding: 6px 8px;
        font-size: 13px;
    }
    
    .nav-icon {
        width: 16px;
    }
    
    /* Hide user avatar on tablet */
    .user-avatar {
        display: none;
    }
    
    /* Balance button */
    .PlayerBalance-module__btn {
        padding: 5px 25px 5px 8px;
        font-size: 13px;
    }
    
    /* Profile/Login buttons */
    .PlayerMenu-module__profileLink,
    .PlayerMenu-module__loginLink {
        padding: 5px 8px;
        font-size: 13px;
    }
    
    #user-icon {
        width: 16px;
    }
    
    /* Shop wrapper */
    .Shop-module__wrapper {
        width: 100%;
        margin-top: 5px;
    }
    
    /* Products grid - 3 columns on tablet */
    .Products-module__wrapper {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
    }
    
    .Product-module__wrapper {
        padding: 8px;
    }
    
    .Product-module__name {
        font-size: 13px;
        left: 12px;
    }
    
    .Product-module__price {
        font-size: 12px;
        left: 12px;
    }
    
    /* Widgets */
    .Widgets-module__wrapper.Widgets-module__rightSide {
        margin-left: 8px;
        margin-top: 5px;
    }
    
    /* Categories */
    .Categories-module__category {
        padding: 5px 12px;
        font-size: 13px;
        height: 32px;
    }
    
    /* Servers */
    .Servers-module__server {
        padding: 8px 12px;
        min-width: 150px;
        font-size: 13px;
    }
    
    /* Profile page */
    .Profile-module__wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .ProfileNav-module__wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .ProfileContent-module__wrapper {
        width: 100%;
    }
    
    /* Modals */
    .modal-content {
        width: 95% !important;
        max-width: 95% !important;
    }
    
    .PlayerBalanceModal-module__wrapper {
        width: 95% !important;
        max-width: 95% !important;
    }
    
    /* Deposit bonus calculator */
    .deposit-bonus-block {
        padding: 16px 20px;
    }
    
    .deposit-bonus-block__bonuses {
        gap: 6px;
    }
    
    .deposit-bonus-block__bonus {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .deposit-bonus-block__amounts {
        gap: 6px;
    }
    
    .deposit-bonus-block__amount {
        font-size: 14px;
    }
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 480px) {
    /* Header - compact version */
    .container.headerContainer .Header-module__wrapper {
        padding: 0px 10px;
        min-height: 60px;
        flex-wrap: wrap;
    }
    
    .Header-module__logo {
        font-size: 18px;
    }
    
    /* Hide navigation on mobile */
    .Header-module__nav {
        display: none !important;
    }
    
    /* Hide user avatar */
    .user-avatar {
        display: none !important;
    }
    
    /* Compact balance button */
    .PlayerBalance-module__btn {
        padding: 5px 20px 5px 8px;
        font-size: 12px;
    }
    
    .PlayerBalance-module__btn::after {
        right: 6px;
        font-size: 14px;
    }
    
    /* Compact profile/login buttons */
    .PlayerMenu-module__profileLink,
    .PlayerMenu-module__loginLink {
        padding: 5px 8px;
        font-size: 12px;
    }
    
    #user-icon {
        width: 14px;
        margin-top: 2px;
    }
    
    /* Shop wrapper */
    .Shop-module__wrapper {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 10px;
    }
    
    /* Products grid - 2 columns on mobile */
    .Products-module__wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 10px;
    }
    
    .Product-module__wrapper {
        padding: 8px;
    }
    
    .Product-module__img {
        top: -10px;
    }
    
    .Product-module__name {
        font-size: 12px;
        left: 10px;
        bottom: 24px;
    }
    
    .Product-module__price {
        font-size: 11px;
        left: 10px;
        bottom: 8px;
    }
    
    .Product-module__discount {
        top: 8px;
        right: 8px;
        font-size: 10px;
        padding: 1px 5px;
    }
    
    .Product-module__count {
        right: 4px;
        padding: 2px 5px;
        font-size: 11px;
    }
    
    /* Widgets - full width on mobile */
    .Widgets-module__wrapper.Widgets-module__rightSide {
        margin-left: 0px;
        margin-top: 10px;
        width: 100%;
    }
    
    /* Categories - scrollable */
    .Categories-module__wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .Categories-module__categories {
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
    }
    
    .Categories-module__category {
        padding: 5px 10px;
        font-size: 12px;
        height: 30px;
        white-space: nowrap;
    }
    
    /* Servers - scrollable */
    .Servers-module__servers {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .Servers-module__server {
        padding: 8px 12px;
        min-width: 140px;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    /* Search */
    .Search-module__wrapper {
        height: 38px;
        margin-top: 0px;
    }
    
    /* Buttons */
    .Button-module__btn {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    /* Profile page */
    .Profile-module__wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .ProfileNav-module__wrapper {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
    
    .ProfileNav-module__header {
        padding: 16px !important;
    }
    
    .ProfileNav-module__img {
        width: 70px !important;
        height: 70px !important;
    }
    
    .ProfileNav-module__name {
        font-size: 15px !important;
    }
    
    .ProfileNav-module__body {
        padding: 8px !important;
    }
    
    .ProfileNav-module__navItem {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
    
    .ProfileContent-module__wrapper {
        width: 100%;
    }
    
    .ProfileContent-module__header {
        padding: 16px !important;
        font-size: 16px !important;
    }
    
    .ProfileContent-module__body {
        padding: 16px !important;
    }
    
    .ProfileContent-module__title {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }
    
    .ProfileContent-module__box {
        padding: 14px !important;
        margin-bottom: 20px !important;
    }
    
    .ProfileContent-module__infoLine {
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .ProfileContent-module__infoLine > span:first-child {
        font-size: 12px !important;
    }
    
    .ProfileContent-module__infoLineValue {
        font-size: 13px !important;
    }
    
    /* Promocode input */
    .ProfileContent-module__inputWrapper {
        flex-direction: column;
        gap: 8px !important;
    }
    
    .ProfileContent-module__input {
        width: 100% !important;
        height: 40px !important;
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
    
    .ProfileContent-module__usePromoBtn {
        width: 100% !important;
        height: 40px !important;
        padding: 10px 20px !important;
    }
    
    /* Basket & History pages */
    .BasketContent-module__wrapper,
    .HistoryContent-module__wrapper {
        margin-top: 0px;
    }
    
    .BasketContent-module__header,
    .HistoryContent-module__header {
        padding: 16px !important;
        font-size: 16px !important;
    }
    
    .BasketContent-module__wrapper .boxBody,
    .HistoryContent-module__wrapper .boxBody {
        padding: 16px !important;
    }
    
    .BasketFilters-module__wrapper,
    .HistoryFilters-module__wrapper {
        flex-direction: column;
        gap: 8px;
    }
    
    .BasketSearch-module__wrapper,
    .HistorySearch-module__wrapper {
        width: 100%;
        min-width: 100%;
    }
    
    .BasketSearch-module__input,
    .HistorySearch-module__input {
        height: 40px !important;
        padding: 10px 14px 10px 38px !important;
        font-size: 13px !important;
    }
    
    .BasketSearch-module__iconWrapper,
    .HistorySearch-module__iconWrapper {
        top: 11px !important;
    }
    
    .BasketFilters-module__serverSelector {
        width: 100%;
        min-width: 100%;
    }
    
    .Selector-module__dropDownCurrentItem {
        height: 40px !important;
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
    
    /* Tables - horizontal scroll */
    .BasketTable-module__table,
    .HistoryTable-module__table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .BasketTable-module__tableHeader,
    .HistoryTable-module__tableHeader {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .BasketTable-module__tableHeader {
        grid-template-columns: 1fr 150px;
        gap: 12px;
    }
    
    .HistoryTable-module__tableHeader {
        grid-template-columns: 1fr 120px 100px;
        gap: 10px;
    }
    
    /* Support page */
    .SupportContent-module__wrapper {
        margin-top: 0px;
    }
    
    .SupportPage-module__header {
        padding: 16px;
        margin-bottom: 10px;
    }
    
    .SupportPage-module__table,
    .TicketsTable-module__wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .SupportPage-module__tableHeader,
    .TicketsTable-module__tableHeader {
        padding: 12px;
    }
    
    .SupportPage-module__tableHeaderCell,
    .TicketsTable-module__tableHeaderCell {
        font-size: 12px;
    }
    
    .SupportPage-module__tableCell,
    .TicketsTable-module__tableCell {
        padding: 12px;
        font-size: 13px;
    }
    
    /* Modals - full screen on mobile */
    .modal-content,
    .customModalWrapper .modal-content {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
    }
    
    .customModalWrapper .boxHeader {
        padding: 20px 16px !important;
        border-radius: 0 !important;
    }
    
    .customModalWrapper .boxHeader h2 {
        font-size: 16px !important;
    }
    
    .customModalWrapper .boxBody {
        padding: 20px 16px !important;
        max-height: calc(100vh - 160px) !important;
    }
    
    .customModalWrapper .boxFooter {
        padding: 16px !important;
        border-radius: 0 !important;
    }
    
    .customModalWrapper .boxBody ul li {
        padding: 10px !important;
        font-size: 12px !important;
    }
    
    .customModalWrapper .boxBody h3 {
        font-size: 14px !important;
    }
    
    /* Deposit modal */
    .PlayerBalanceModal-module__wrapper {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
    }
    
    .PlayerBalanceModal-module__header {
        padding: 20px 16px !important;
        border-radius: 0 !important;
    }
    
    .PlayerBalanceModal-module__title::before {
        font-size: 18px !important;
    }
    
    .PlayerBalanceModal-module__body {
        padding: 20px 16px !important;
    }
    
    .PlayerBalanceModal-module__inputWrapper {
        height: 44px !important;
        margin-bottom: 16px !important;
    }
    
    .PlayerBalanceModal-module__input {
        font-size: 15px !important;
        padding: 0 14px !important;
    }
    
    .PlayerBalanceModal-module__currency {
        padding: 0 14px !important;
        font-size: 13px !important;
    }
    
    .PlayerBalanceModal-module__methods {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)) !important;
        gap: 10px !important;
    }
    
    .PlayerBalanceModal-module__method {
        padding: 14px 10px !important;
    }
    
    .PlayerBalanceModal-module__methodIcon {
        width: 28px !important;
        height: 28px !important;
    }
    
    .PlayerBalanceModal-module__methodName {
        font-size: 11px !important;
    }
    
    .PlayerBalanceModal-module__footer {
        padding: 16px !important;
        flex-direction: column;
        gap: 10px !important;
    }
    
    .PlayerBalanceModal-module__footer .Button-module__btn {
        padding: 11px 18px !important;
        font-size: 13px !important;
    }
    
    /* Deposit bonus calculator */
    .deposit-bonus-block {
        padding: 16px;
        margin-top: 20px;
    }
    
    .deposit-bonus-block__title {
        font-size: 15px;
        margin-bottom: 14px;
    }
    
    .deposit-bonus-block__bonuses {
        gap: 6px;
        margin-bottom: 16px;
    }
    
    .deposit-bonus-block__bonus {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .deposit-bonus-block__amounts {
        gap: 6px;
    }
    
    .deposit-bonus-block__amount {
        font-size: 13px;
        padding-top: 5px;
    }
    
    .deposit-bonus-block__result {
        margin-top: 18px;
        font-size: 16px;
    }
    
    .deposit-bonus-block__result > div {
        font-size: 12px !important;
    }
    
    .deposit-bonus-block__result #bonusResultValue,
    .deposit-bonus-block__result #bonusResultBonus,
    .deposit-bonus-block__result #bonusResultTotal {
        font-size: 13px !important;
    }
    
    /* Monitoring widget */
    [data-widgettype="monitoring"] .boxBody {
        padding: 8px;
    }
    
    [data-widgettype="monitoring"] .boxFooter {
        padding: 8px;
    }
    
    .MonitoringServer-module__wrapper {
        padding: 10px;
    }
    
    .MonitoringServer-module__name {
        font-size: 12px;
    }
    
    .MonitoringServer-module__info {
        font-size: 10px;
    }
    
    .MonitoringServer-module__players {
        font-size: 10px;
    }
    
    .MonitoringServer-module__status {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .MonitoringWidget-module__updateBtn {
        font-size: 13px;
        padding: 8px;
    }
    
    /* Footer */
    .ShopFooter-module__text {
        padding: 16px;
        font-size: 11px;
    }
    
    .ShopFooter-module__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    
    .ShopFooter-module__link {
        font-size: 12px;
        padding: 5px 5px;
    }
    
    /* Toast notifications */
    .Toasts-module__wrapper {
        top: 70px;
        right: 5px;
        left: 5px;
    }
    
    .Toast-module__toast {
        padding: 8px;
        font-size: 13px;
    }
    
    /* Easter egg modal */
    .easter-egg-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .easter-egg-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .easter-egg-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .easter-egg-dev-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .easter-egg-dev-list li {
        font-size: 16px;
        padding: 6px;
    }
    
    .easter-egg-footer {
        margin-top: 24px;
        font-size: 12px;
    }
    
    /* Scrollbar for mobile */
    ::-webkit-scrollbar {
        height: 4px;
        width: 4px;
    }
}


/* === BASKET PAGE === */
.BasketContent-module__wrapper {
    flex: 1;
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(80, 227, 65, 0.2);
    border-radius: 15px;
    overflow: hidden;
    animation: fadeInUp 0.4s ease-out;
    margin-top: 5px;
}

.BasketContent-module__header.boxHeader {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2)) !important;
    border-bottom: 1px solid rgba(80, 227, 65, 0.3) !important;
    padding: 20px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    border-radius: 15px 15px 0 0 !important;
}

.BasketContent-module__wrapper .boxBody {
    padding: 20px !important;
    background: transparent !important;
    border: none !important;
}

.BasketFilters-module__wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.BasketSearch-module__wrapper,
.HistorySearch-module__wrapper {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.BasketSearch-module__iconWrapper,
.HistorySearch-module__iconWrapper {
    position: absolute !important;
    left: 4px !important;
    top: 12px !important;
    width: 18px !important;
    height: 18px !important;
    pointer-events: none !important;
    z-index: 2 !important;
    background: transparent !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.BasketSearch-module__icon,
.HistorySearch-module__icon {
    width: 18px !important;
    height: 18px !important;
    stroke: #fff !important;
    fill: none !important;
    color: #fff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.BasketSearch-module__input,
.HistorySearch-module__input {
    width: 100% !important;
    background: rgba(40, 40, 40, 0.5) !important;
    border: 1px solid rgba(80, 227, 65, 0.2) !important;
    border-radius: 10px !important;
    padding: 11px 16px 11px 42px !important;
    color: #fff !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    height: 42px !important;
    line-height: 20px !important;
    box-sizing: border-box !important;
}

.BasketSearch-module__input:focus,
.HistorySearch-module__input:focus {
    outline: none !important;
    border-color: rgba(80, 227, 65, 0.5) !important;
    background: rgba(40, 40, 40, 0.8) !important;
    box-shadow: 0 0 15px rgba(80, 227, 65, 0.2) !important;
}

.BasketSearch-module__input:focus ~ .BasketSearch-module__iconWrapper .BasketSearch-module__icon,
.HistorySearch-module__input:focus ~ .HistorySearch-module__iconWrapper .HistorySearch-module__icon {
    stroke: #50e341 !important;
    color: #50e341 !important;
}

.BasketSearch-module__input::placeholder,
.HistorySearch-module__input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.BasketFilters-module__serverSelector {
    min-width: 200px;
}

.Selector-module__dropDownWrapper {
    position: relative;
}

.Selector-module__dropDownCurrentItem {
    width: 100%;
    background: rgba(40, 40, 40, 0.5) !important;
    border: 1px solid rgba(80, 227, 65, 0.2) !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    color: #fff !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 42px !important;
    box-sizing: border-box !important;
    line-height: 20px !important;
}

.Selector-module__dropDownCurrentItem:hover {
    border-color: rgba(80, 227, 65, 0.4) !important;
    background: rgba(40, 40, 40, 0.7) !important;
}

.Selector-module__dropDownCurrentText {
    color: rgba(255, 255, 255, 0.9) !important;
}

.Selector-module__icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.2s ease;
}

.BasketTable-module__table,
.HistoryTable-module__table {
    background: rgba(40, 40, 40, 0.5) !important;
    border: 1px solid rgba(80, 227, 65, 0.2) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.BasketTable-module__tableData,
.HistoryTable-module__tableData {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    background: transparent !important;
    border-radius: 12px !important;
}

.BasketTable-module__tableHeader,
.HistoryTable-module__tableHeader {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.15), rgba(61, 211, 48, 0.15)) !important;
    border-bottom: 1px solid rgba(80, 227, 65, 0.3);
    padding: 16px 20px;
    display: grid;
    gap: 16px;
}

.BasketTable-module__tableHeader {
    grid-template-columns: 1fr 200px;
}

.HistoryTable-module__tableHeader {
    grid-template-columns: 1fr 150px 120px;
}

.BasketTable-module__tableTitle,
.HistoryTable-module__tableTitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.errorMessage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* === HISTORY PAGE === */
.HistoryContent-module__wrapper {
    flex: 1;
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(80, 227, 65, 0.2);
    border-radius: 15px;
    overflow: hidden;
    animation: fadeInUp 0.4s ease-out;
    margin-top: 5px;
}

.HistoryContent-module__header.boxHeader {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2)) !important;
    border-bottom: 1px solid rgba(80, 227, 65, 0.3) !important;
    padding: 20px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    border-radius: 15px 15px 0 0 !important;
}

.HistoryContent-module__wrapper .boxBody {
    padding: 20px !important;
    background: transparent !important;
    border: none !important;
}

.HistoryFilters-module__wrapper {
    margin-bottom: 20px;
}


/* Profile Navigation Fixes */
.ProfileNav-module__wrapper {
    min-width: 250px;
    max-width: 280px;
}

.ProfileNav-module__header.boxHeader {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2)) !important;
    border-bottom: 1px solid rgba(80, 227, 65, 0.3) !important;
}

.ProfileNav-module__body.boxBody {
    background: transparent !important;
    border: none !important;
}

.ProfileNav-module__wrapper .boxFooter {
    background: transparent !important;
    border: none !important;
    padding: 10px !important;
}

.ProfileNav-module__img {
    object-fit: cover !important;
}

/* Profile Content Fixes */
.ProfileContent-module__header.boxHeader {
    background: linear-gradient(135deg, rgba(80, 227, 65, 0.2), rgba(61, 211, 48, 0.2)) !important;
    border-bottom: 1px solid rgba(80, 227, 65, 0.3) !important;
}

.ProfileContent-module__body.boxBody {
    background: transparent !important;
    border: none !important;
}

.ProfileContent-module__infoWrapper {
    background: rgba(40, 40, 40, 0.5) !important;
    border: 1px solid rgba(80, 227, 65, 0.2) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    margin-bottom: 24px !important;
    transition: all 0.3s ease;
}

.ProfileContent-module__infoWrapper:hover {
    border-color: rgba(80, 227, 65, 0.4) !important;
    background: rgba(40, 40, 40, 0.7) !important;
    box-shadow: 0 0 20px rgba(80, 227, 65, 0.1) !important;
}


/* Fix border-radius for search inputs */
.BasketSearch-module__wrapper input,
.HistorySearch-module__wrapper input {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
}

.BasketSearch-module__wrapper,
.HistorySearch-module__wrapper {
    border-radius: 10px !important;
    overflow: visible !important;
}

/* Search icons visibility */
.BasketSearch-module__iconWrapper svg,
.HistorySearch-module__iconWrapper svg {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 18px !important;
    height: 18px !important;
}

.BasketSearch-module__iconWrapper *,
.HistorySearch-module__iconWrapper * {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.BasketSearch-module__iconWrapper path,
.HistorySearch-module__iconWrapper path {
    stroke: #fff !important;
    fill: none !important;
}





/* Particles canvas behind everything */
#particles-canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

/* Content above particles but without z-index to avoid blocking modals */
.container,
.Header-module__wrapper,
.Widgets-module__wrapper,
.Profile-module__wrapper,
.BasketContent-module__wrapper,
.HistoryContent-module__wrapper,
.SupportPage-module__wrapper {
    position: relative !important;
}

/* === EASTER EGG === */
/* Hidden trigger in footer - DISABLED */
.easter-egg-trigger {
    display: none !important;
}

/* Easter egg modal */
.easter-egg-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.easter-egg-modal.active {
    display: flex;
    opacity: 1;
}

.easter-egg-content {
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(40px);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(80, 227, 65, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(80, 227, 65, 0.3);
    position: relative;
    text-align: center;
    animation: easterEggAppear 0.5s ease-out;
}

@keyframes easterEggAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.easter-egg-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 59, 48, 0.15);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    line-height: 30px;
    transition: all 0.3s;
}

.easter-egg-close:hover {
    background: rgba(255, 59, 48, 0.25);
    transform: rotate(90deg);
}

.easter-egg-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    fill: #50e341;
    filter: drop-shadow(0 0 10px rgba(80, 227, 65, 0.5));
}

.easter-egg-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    font-family: "Unbounded", sans-serif;
}

.easter-egg-title .heart {
    color: #ff3b30;
    display: inline-block;
    animation: heartBeat 1.2s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { 
        transform: scale(1); 
    }
    10%, 30% { 
        transform: scale(1.3); 
    }
    20%, 40% { 
        transform: scale(1.1); 
    }
}

.easter-egg-developers {
    margin: 20px 0;
}

.easter-egg-dev-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.easter-egg-dev-icon {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.7);
}

.easter-egg-dev-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.easter-egg-dev-list li {
    font-size: 18px;
    font-weight: 500;
    color: #50e341;
    margin: 8px 0;
    padding: 8px;
    background: rgba(80, 227, 65, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.easter-egg-dev-list li:hover {
    background: rgba(80, 227, 65, 0.2);
    transform: translateX(5px);
}

.easter-egg-footer {
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Particles boost effect */
#particles-canvas.boosted {
    filter: brightness(1.5);
    transition: filter 0.5s ease;
}