 body {
    background: 
        radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

/* Звезды */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}

/* Разные размеры звезд */
.stars::before, .stars::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars::before {
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 160px 120px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 190px 50px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 220px 100px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 250px 250px;
    animation: moveStars 10s linear infinite;
}

.stars::after {
    background-image: 
        radial-gradient(1px 1px at 50px 160px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 90px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 130px 200px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 170px 120px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 210px 60px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 240px 180px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 250px 250px;
    animation: moveStars 15s linear infinite;
}

/* Мерцающие звезды */
.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
    background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="40" cy="20" r="0.5" fill="#fff"/><circle cx="70" cy="80" r="0.8" fill="#fff"/><circle cx="10" cy="50" r="0.3" fill="#fff"/><circle cx="90" cy="10" r="0.6" fill="#fff"/><circle cx="30" cy="90" r="0.4" fill="#fff"/><circle cx="60" cy="40" r="0.7" fill="#fff"/></svg>') repeat top center;
    animation: twinkle 4s ease-in-out infinite alternate;
}

/* Большие звезды (редкие) */
.large-stars {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
    background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 500 500"><circle cx="100" cy="300" r="1.2" fill="#fff"/><circle cx="400" cy="150" r="1.5" fill="#fff"/><circle cx="250" cy="400" r="1" fill="#fff"/><circle cx="50" cy="100" r="1.3" fill="#fff"/><circle cx="350" cy="350" r="1.1" fill="#fff"/></svg>') repeat top center;
    animation: moveLargeStars 20s linear infinite;
}

/* Анимации */
@keyframes moveStars {
    0% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(5px) translateY(-5px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes moveLargeStars {
    0% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(-10px) translateY(10px); }
    100% { transform: translateX(0px) translateY(0px); }
}
.lang_img:hover{
    background: rgb(108 108 108 / 30%);
}
.quick-withdraw-wrap {
    margin-bottom: 15px;
}

.quick-withdraw-btn {
    background : #ccaa00!important;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    font-weight: 500;
}

.quick-withdraw-btn .icon-wallet {
    width: 18px;
    height: 18px;
}
   /* Стили для мобильных кнопок */
    .mobile-payment-actions {
        display: none; /* По умолчанию скрыто */
        width: 100%;
        background: rgba(20, 20, 20, 0.9);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding: 10px 0;
       
        top: 60px; /* Высота вашего хэдера */
        z-index: 999;
    }

    .mobile-payment-buttons {
        display: flex;
        justify-content: space-around;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .mobile-payment-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 8px 15px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        color: #e0e0e0;
        text-decoration: none;
        transition: all 0.3s;
        min-width: 80px;
        text-align: center;
    }

    .mobile-payment-btn .icon {
        width: 20px;
        height: 20px;
        margin-bottom: 5px;
        transition: all 0.3s;
    }

    .deposit-btn .icon {
        fill: #d4af37;
    }

    .withdraw-btn .icon {
        fill: #fff;
    }

    .deposit-btn {
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .withdraw-btn {
        background: rgba(0, 100, 200, 0.1);
        border: 1px solid rgba(0, 100, 200, 0.3);
    }

    .mobile-payment-btn:hover {
        transform: translateY(-2px);
    }

    .deposit-btn:hover {
        background: rgba(212, 175, 55, 0.2);
        box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    }

    .withdraw-btn:hover {
        background: rgba(0, 100, 200, 0.2);
        box-shadow: 0 2px 10px rgba(0, 100, 200, 0.2);
    }

    /* Показываем только на мобильных */
    @media (max-width: 768px) {
        .mobile-payment-actions {
            display: block;
        }
        
        /* Можно скрыть другие кнопки депозита/вывода на мобильных */
   
    }

    /* Анимация иконок */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    .mobile-payment-btn:hover .icon {
        animation: pulse 1s infinite;
    }


   /* Ваши оригинальные стили */
    .quick-withdraw-wrap {
        margin-bottom: 15px;
    }

    .quick-withdraw-btn {
        background : #ccaa00!important;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 15px;
        font-weight: 500;
    }

    .quick-withdraw-btn .icon-wallet {
        width: 18px;
        height: 18px;
    }
    
    .lang_img:hover{
        background: rgb(108 108 108 / 30%);
    }
    
    /* Новые luxury стили */
    .luxury-header {
        position: relative;
        font-family: 'Playfair Display', 'Times New Roman', serif;
        color: #e0e0e0;
    }
    
    .luxury-logo {
        transition: all 0.3s ease;
    }
    
    .luxury-logo:hover {
        filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.9)) !important;
    }
    
    .luxury-btn {
        position: relative;
        padding: 10px 5px!important;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        /* letter-spacing: 1px; */
        margin-left: 15px;
        transition: all 0.3s;
        overflow: hidden;
    }
    
    .luxury-login {
        background: transparent;
        color: #d4af37;
        border: 1px solid #d4af37;
    }
    
    .luxury-register {
        background: linear-gradient(to right, #d4af37, #f1e5ac);
        color: #000;
    }
    
    .luxury-btn:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
        transition: 0.5s;
    }
    
    .luxury-btn:hover:before {
        left: 100%;
    }
    
    .luxury-login:hover {
        background: rgba(212, 175, 55, 0.1);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }
    
    .luxury-register:hover {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
    .quick-actions-wrap{
    display: none; /* Сначала скрываем для всех */
    }

    @media (min-width: 992px) {
        .quick-actions-wrap {
            display: flex; /* Показываем только на широких экранах */
        }
    }

    /* Альтернативный вариант с более точным контролем */
    @media (max-width: 991.98px) {
        .quick-actions-wrap {
            display: none !important;
        }
        .luxury-btn {
        
            margin-left: 0px;
        
        }
    }
    .luxury-icon {
        width: 18px;
        height: 18px;
        fill: #d4af37;
        transition: all 0.3s;
    }
    
    .luxury-lang-menu, 
    .luxury-balance-menu,
    .luxury-user-menu {
        position: absolute;
        background: rgba(20, 20, 20, 0.95);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 4px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        padding: 8px 0;
        min-width: 200px;
        z-index: 1000;
        display: none;
        backdrop-filter: blur(5px);
    }
    
    .luxury-lang-item, 
    .luxury-balance-item,
    .luxury-user-menu-item {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        color: #e0e0e0;
        text-decoration: none;
        transition: all 0.2s;
    }
    
    .luxury-lang-item:hover, 
    .luxury-balance-item:hover,
    .luxury-user-menu-item:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #d4af37;
    }
    
    .luxury-lang-flag {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        margin-right: 12px;
        border: 1px solid rgba(212, 175, 55, 0.5);
    }
    
    .luxury-avatar {
        position: relative;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .luxury-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .luxury-avatar-frame {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid #d4af37;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        pointer-events: none;
    }
    
    .luxury-balance-value {
        color: #d4af37;
        font-weight: 700;
        margin-left: auto;
        font-size: 15px;
    }
    
    .luxury-balance-display {
        color: #d4af37;
        font-size: 18px;
        font-weight: 700;
    }
    
    .luxury-withdraw-btn {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid #d4af37;
        border-radius: 4px;
        color: #fff;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .luxury-withdraw-btn:hover {
        background: rgba(212, 175, 55, 0.2);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    
    .luxury-divider {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
    }
    
    .luxury-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
        pointer-events: none;
        z-index: -1;
    }
    
    .luxury-opener {
        display: none;
        background: none;
        border: none;
        padding: 5px;
    }
    
    .luxury-bar {
        width: 25px;
        height: 2px;
        background: #d4af37;
        margin: 6px 0;
        transition: all 0.3s;
    }
    
    @keyframes goldPulse {
        0% { opacity: 0.7; }
        50% { opacity: 1; }
        100% { opacity: 0.7; }
    }
    
    .luxury-pulse {
        animation: goldPulse 3s infinite;
    }

  .header {
                        transition: background-color 0.3s ease;
                        /* остальные ваши стили */
                    }
                    .dropdown-menu {
                        position: absolute;
                        top: calc(100% + 5px);
                        left: 0;
                        z-index: 1000;
                        display: none;
                        width: 100%;
                        min-width: 220px;
                        margin: 0;
                        padding: 8px 0;
                        color: #fff;
                        text-align: left;
                        list-style: none;
                        background-color: #202224;
                        background-clip: padding-box;
                        border: 1px solid rgba(204, 170, 0, 0.2);
                        border-radius: 8px;
                        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3),
                                    0 5px 15px rgba(204, 170, 0, 0.1);
                        opacity: 0;
                        transform: translateY(15px);
                        transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
                        overflow: hidden;
                    }

                    .dropdown-menu.show {
                        display: block;
                        opacity: 1;
                        transform: translateY(5px);
                    }

                    .dropdown-menu li {
                        padding: 0;
                        margin: 0;
                        transition: background-color 0.2s ease;
                    }

                    .dropdown-menu li:hover {
                        background-color: rgba(204, 170, 0, 0.08);
                    }

                    .dropdown-menu li a {
                        display: flex;
                        align-items: center;
                        padding: 10px 20px;
                        color: #e0e0e0;
                        text-decoration: none;
                        font-size: 14px;
                        transition: all 0.2s ease;
                    }

                    .dropdown-menu li a:hover {
                        color: gold;
                        padding-left: 25px;
                    }

                    .dropdown-menu li a svg {
                        margin-right: 12px;
                        width: 18px;
                        height: 18px;
                        fill: currentColor;
                        transition: transform 0.2s ease;
                    }

                    .dropdown-menu li a:hover svg {
                        transform: scale(1.1);
                    }
                    #sidebar.collapsed .dropdown-menu {
                        position: absolute;
                        left: 100%;
                        top: 0;
                        margin-left: 0;
                        margin-top: 0;
                    }
                    #sidebar.collapsed .dropdown {
                        position: relative;
                    }

                    .disabled-link {
                            pointer-events: none;
                            color: grey;
                            text-decoration: none;
                        }
                        /* Стили для выезжающего dropdown */
                    
                        /* Убедимся, что dropdown-menu не обрезается */
                        .left-sidebar {
                            overflow: visible !important;
                        }
                        .dropdown-menu1 {
                            z-index: 1100 !important;
                    }

               /* Жесткие стили для dropdown-menu1 (без наследования) */
.left-sidebar .dropdown-menu1 {
  /* Позиционирование */
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-bottom: 15px !important;
  
  /* Размеры */
  min-width: 200px !important;
  width: auto !important;
  max-width: none !important;
  box-sizing: border-box !important;
  
  /* Внешний вид */
  background-color: rgba(40, 43, 51, 0.98) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3) !important;
  padding: 8px 0 !important;
  
  /* Поведение */
  display: block !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: 1100 !important;
  
  /* Сброс наследуемых стилей */
  margin: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  list-style: none !important;
  text-align: left !important;
  text-indent: 0 !important;
}

/* Состояние при наведении */
.left-sidebar .dropdown:hover .dropdown-menu1 {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  animation: dropdownFade1 0.25s ease-out forwards !important;
}

/* Стили для внутренних элементов (строгие) */
.left-sidebar .dropdown-menu1 > li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  float: none !important;
  width: auto !important;
}

.left-sidebar .dropdown-menu1 > li > a {
  /* Стилизация ссылок */
  display: flex !important;
  align-items: center !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 10px 20px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  background: transparent !important;
  transition: none !important;
  
  /* Сброс */
  border: 0 !important;
  margin: 0 !important;
  font: inherit !important;
  line-height: normal !important;
}

.left-sidebar .dropdown-menu1 > li > a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

/* Анимация */
@keyframes dropdownFade1 {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Гарантия позиционирования родителя */
.left-sidebar .dropdown {
  position: relative !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
}


   /* Основные стили для сайдбара */
.left-sidebar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  min-width: 600px;
  max-width: 800px;
  background-color: rgba(25, 28, 36, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 12px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1000;
  display: flex;
  justify-content: center;
  overflow: visible !important;
  animation: slideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Навигационное меню */
.left-sidebar .side-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: visible;
}

/* Элементы меню */
.left-sidebar .side-nav li {
  margin: 0 10px;
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: visible;
}

.left-sidebar .side-nav li:hover {
  transform: translateY(-4px);
}

.left-sidebar .side-nav li.current {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0 12px;
}

/* Стили для иконок */
.left-sidebar .icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.2s ease;
  background: none !important;
}

.left-sidebar .icon[src*="base64"] {
  filter: invert(0.85) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.left-sidebar .icon use {
  fill: #ffffff;
}

/* Dropdown контейнер */
.left-sidebar .dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Dropdown меню */
.left-sidebar .dropdown-menu1 {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(40, 43, 51, 0.98);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 15px;
}

.left-sidebar .dropdown:hover .dropdown-menu1 {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}
.luxury-li {
    margin-left: 12%!important;
    background: inherit!important;
}
/* Элементы dropdown меню */
.dropdown-menu1 li a {
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  font-size: 14px;
}

.dropdown-menu1 li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding-left: 22px;
}

/* Подсказки */
/* .side-nav-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
} */

.side-nav li:hover .side-nav-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 15px);
}

/* Анимации */
@keyframes slideUp {
  from {
    transform: translate(-50%, 120%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.left-sidebar .dropdown:hover .dropdown-menu1 {
  animation: dropdownFade 0.25s ease-out forwards;
}

/* Мобильная адаптация */
@media (max-width: 991px) {
  .left-sidebar {
    display: none;
  }
}

/* Дополнительные улучшения */
.left-sidebar .dropdown-toggle::after {
  display: none;
}

.left-sidebar .dropdown:hover > a > .icon-down {
  transform: rotate(180deg);
}

.left-sidebar .side-nav li:nth-child(5) {
  margin-bottom: 0;
}
/* Жесткий сброс для dropdown-контейнера */
.left-sidebar .dropdown {
  position: relative !important; /* Ключевое изменение - должно быть relative */
  display: inline-flex !important; /* Изменено на inline-flex */
  height: 100% !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Строгие стили для dropdown-menu1 */
.left-sidebar .dropdown-menu1 {
  position: absolute !important;
  bottom: calc(100% + 10px) !important; /* Отступ от родителя */
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 1100 !important;
  
  /* Остальные стили остаются без изменений */
  min-width: 200px !important;
  background-color: rgba(40, 43, 51, 0.98) !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.25s ease !important;
}

/* Показываем меню при наведении */
.left-sidebar .dropdown:hover .dropdown-menu1 {
  opacity: 1 !important;
  visibility: visible !important;
}
/* Добавляем задержку закрытия меню */
.left-sidebar .dropdown-menu1 {
  pointer-events: auto !important;
  transition: 
    opacity 0.3s ease 0.1s, /* Задержка 0.1s перед началом анимации */
    visibility 0.3s ease 0.1s !important;
}

/* Создаем "буферную зону" между кнопкой и меню */
.left-sidebar .dropdown-menu1::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
  pointer-events: none;
}

/* Задержка закрытия при уходе с родителя */
.left-sidebar .dropdown:hover .dropdown-menu1 {
  transition-delay: 0.2s !important; /* Задержка перед закрытием */
}

/* Анимация открытия (без задержки) */
@keyframes dropdownOpen {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Анимация закрытия (с задержкой) */
@keyframes dropdownClose {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(5px);
  }
}

/* Применяем анимации */
.left-sidebar .dropdown:hover .dropdown-menu1 {
  animation: dropdownOpen 0.2s ease-out forwards !important;
}

.left-sidebar .dropdown:not(:hover) .dropdown-menu1 {
  animation: dropdownClose 0.2s ease-out 0.2s forwards !important;
}

/* Гарантируем, что меню остается видимым при наведении на него */
.left-sidebar .dropdown-menu1:hover {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
}
/* Исправленные стили для подсказок */
.left-sidebar .side-nav-tooltip {
  position: absolute !important;
  bottom: calc(100% + 15px) !important; /* Размещаем над dropdown */
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 1200 !important; /* Выше чем dropdown */
  
  /* Остальные стили */
  background: rgba(0, 0, 0, 0.9) !important;
  color: white !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.2s ease !important;
}

/* Показываем подсказку только когда НЕ открыто dropdown */
.left-sidebar .side-nav li:not(.dropdown:hover) .side-nav-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Анимация для плавного появления */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.left-sidebar .dropdown-menu1 {
  animation: dropdownFade 0.2s ease-out forwards !important;
}

   /* ============================================ */
                            /* ДЕСКТОПНАЯ ВЕРСИЯ - 3 КАРТОЧКИ В РЯД */
                            /* ============================================ */
                            .main-promo-cards-desktop {
                                --card-glow-color: #ffd700;
                                --card-border-radius: 20px;
                                --card-transition: 0.4s ease;
                                
                                display: none; /* Скрыто по умолчанию */
                                width: 100%;
                                padding: 2rem 0;
                            }

                            /* Показываем на десктопе */
                            @media (min-width: 769px) {
                                .main-promo-cards-desktop {
                                    display: block;
                                }
                            }

                            .main-promo-cards-desktop__container {
                                display: grid;
                                grid-template-columns: repeat(3, 1fr);
                                gap: 2rem;
                                max-width: 100%;
                                width: 100%;
                                margin: 10px;
                                padding: 0 1rem;
                                perspective: 1000px; /* Добавляем перспективу для 3D эффекта */
                            }

                            .main-promo-card {
                                position: relative;
                                border-radius: var(--card-border-radius);
                                overflow: visible;
                                transition: transform var(--card-transition);
                                transform-style: preserve-3d;
                            }

                            .main-promo-card:hover {
                                transform: translateY(-15px) rotateY(5deg);
                            }

                            .main-promo-card:nth-child(1):hover {
                                transform: translateY(-15px) rotateY(3deg);
                            }

                            .main-promo-card:nth-child(2):hover {
                                transform: translateY(-15px) scale(1.05);
                            }

                            .main-promo-card:nth-child(3):hover {
                                transform: translateY(-15px) rotateY(-3deg);
                            }

                            /* Космическое сияние за карточкой */
                            .main-promo-card::before {
                                content: '';
                                position: absolute;
                                top: -10px;
                                left: -10px;
                                right: -10px;
                                bottom: -10px;
                                background: radial-gradient(
                                    ellipse at center,
                                    rgba(255, 215, 0, 0.15) 0%,
                                    rgba(255, 165, 0, 0.1) 30%,
                                    rgba(255, 140, 0, 0.05) 50%,
                                    transparent 70%
                                );
                                border-radius: calc(var(--card-border-radius) + 10px);
                                z-index: -1;
                                opacity: 0.6;
                                filter: blur(25px);
                                animation: cosmic-pulse 4s ease-in-out infinite;
                            }

                            .main-promo-card:nth-child(2)::before {
                                animation-delay: 1.5s;
                            }

                            .main-promo-card:nth-child(3)::before {
                                animation-delay: 3s;
                            }

                            /* Пульсация космического сияния */
                            @keyframes cosmic-pulse {
                                0%, 100% {
                                    opacity: 0.4;
                                    transform: scale(1);
                                }
                                50% {
                                    opacity: 0.7;
                                    transform: scale(1.05);
                                }
                            }

                            .main-promo-card__link {
                                display: block;
                                text-decoration: none;
                                color: inherit;
                            }

                            .main-promo-card__image-wrapper {
                                position: relative;
                                width: 100%;
                                height: 0;
                                padding-bottom: 75%; /* Уменьшенная высота для горизонтальных изображений */
                                overflow: hidden;
                                border-radius: var(--card-border-radius);
                                box-shadow: 
                                    0 20px 60px rgba(0, 0, 0, 0.5),
                                    0 0 40px rgba(255, 215, 0, 0.15),
                                    0 0 60px rgba(255, 215, 0, 0.08),
                                    inset 0 0 20px rgba(255, 215, 0, 0.05);
                                transition: all var(--card-transition);
                                animation: cosmic-float 6s ease-in-out infinite;
                            }

                            .main-promo-card:hover .main-promo-card__image-wrapper {
                                box-shadow: 
                                    0 30px 80px rgba(0, 0, 0, 0.6),
                                    0 0 60px rgba(255, 215, 0, 0.3),
                                    0 0 90px rgba(255, 215, 0, 0.15),
                                    0 0 120px rgba(255, 165, 0, 0.1),
                                    inset 0 0 30px rgba(255, 215, 0, 0.08);
                            }

                            /* Космическая анимация плавания */
                            @keyframes cosmic-float {
                                0%, 100% {
                                    transform: translateY(0px);
                                }
                                50% {
                                    transform: translateY(-15px);
                                }
                            }

                            /* Задержка анимации для каждой карточки */
                            .main-promo-card:nth-child(1) .main-promo-card__image-wrapper {
                                animation-delay: 0s;
                            }
                            .main-promo-card:nth-child(2) .main-promo-card__image-wrapper {
                                animation-delay: 2s;
                            }
                            .main-promo-card:nth-child(3) .main-promo-card__image-wrapper {
                                animation-delay: 4s;
                            }

                            .main-promo-card__image {
                                position: absolute;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                object-position: right center; /* Показываем правую часть */
                                transition: transform var(--card-transition);
                            }

                            .main-promo-card:hover .main-promo-card__image {
                                transform: scale(1.05);
                            }

                            /* Затемнение снизу для читаемости текста */
                            .main-promo-card__image-wrapper::before {
                                content: '';
                                position: absolute;
                                bottom: 0;
                                left: 0;
                                right: 0;
                                height: 60%;
                                background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
                                z-index: 1;
                            }

                            .main-promo-card__overlay {
                                position: absolute;
                                bottom: 0;
                                left: 0;
                                right: 0;
                                padding: 2rem;
                                text-align: center;
                                color: white;
                                z-index: 2;
                            }

                            .main-promo-card__text {
                                margin-bottom: 1.5rem;
                            }

                            .main-promo-card__title {
                                font-size: 2.1rem;
                                font-weight: 700;
                                margin-bottom: 0.8rem;
                                text-shadow: 0 2px 10px rgba(0,0,0,0.8);
                                line-height: 1.2;
                            }

                            .main-promo-card__subtitle {
                                font-size: 1.4rem;
                                text-shadow: 0 2px 5px rgba(0,0,0,0.8);
                                margin-bottom: 0;
                                opacity: 0.9;
                            }

                            .main-promo-card__button {
                                display: inline-block;
                                padding: 0.8rem 2rem;
                                background: linear-gradient(135deg, #ffd700, #d4af37);
                                color: #000;
                                border-radius: 50px;
                                font-weight: 700;
                                font-size: 1rem;
                                transition: all 0.3s ease;
                                box-shadow: 0 4px 15px rgba(204, 170, 0, 0.3);
                            }

                            .main-promo-card:hover .main-promo-card__button {
                                background: linear-gradient(135deg, #d4af37, #ffd700);
                                transform: translateY(-3px);
                                box-shadow: 0 6px 20px rgba(204, 170, 0, 0.5);
                            }

                            /* ============================================ */
                            /* МОБИЛЬНАЯ ВЕРСИЯ - СЛАЙДЕР */
                            /* ============================================ */
                            .main-promo-slider {
                                --main-slider-gradient: rgba(0,0,0,0.7);
                                --main-slider-active-color: #ffd700;
                                --main-slider-nav-bg: rgba(0,0,0,0.5);
                                --main-slider-transition: 0.5s ease;
                                --main-slider-fade-width: 150px;
                                
                                display: block; /* Показано по умолчанию */
                                position: relative;
                                width: 100%;
                                overflow: hidden;
                                margin: 0 auto;
                            }

                            /* Скрываем на десктопе */
                            @media (min-width: 769px) {
                                .main-promo-slider {
                                    display: none;
                                }
                            }

                            .main-promo-slider__container {
                                position: relative;
                                width: 100%;
                            }

                            .main-promo-slider__track {
                                display: flex;
                                transition: transform var(--main-slider-transition);
                                will-change: transform;
                            }

                            .main-promo-slide {
                                min-width: 100%;
                                position: relative;
                                flex-shrink: 0;
                            }

                            /* Содержимое слайда */
                            .main-promo-slide__content {
                                position: relative;
                                width: 100%;
                                height: 0;
                                padding-bottom: 60%;
                                overflow: hidden;
                            }

                            .main-promo-slide__image {
                                position: absolute;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                object-position: center;
                            }

                            /* Затемнение с левой стороны */
                            .main-promo-slide__content::before {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
                                z-index: 1;
                            }

                            /* Оверлей с текстом */
                            .main-promo-slide__overlay {
                                position: absolute;
                                top: 50%;
                                left: 5%;
                                transform: translateY(-50%);
                                text-align: left;
                                color: white;
                                z-index: 2;
                                width: 80%;
                                max-width: 600px;
                            }

                            .main-promo-slide__text {
                                margin-bottom: 1.5rem;
                            }

                            .main-promo-slide__title {
                                font-size: 1.8rem;
                                font-weight: 700;
                                margin-bottom: 0.8rem;
                                text-shadow: 0 2px 10px rgba(0,0,0,0.8);
                                line-height: 1.2;
                            }

                            .main-promo-slide__subtitle {
                                font-size: 1.2rem;
                                text-shadow: 0 2px 5px rgba(0,0,0,0.8);
                                margin-bottom: 0;
                            }

                            /* Кнопка */
                            .main-promo-slide__button {
                                display: inline-block;
                                padding: 0.8rem 2rem;
                                background: linear-gradient(135deg, var(--main-slider-active-color), #d4af37);
                                color: #000;
                                border-radius: 50px;
                                font-weight: 700;
                                font-size: 1rem;
                                transition: all 0.3s ease;
                                box-shadow: 0 4px 15px rgba(204, 170, 0, 0.3);
                            }

                            .main-promo-slide__link:hover .main-promo-slide__button {
                                background: linear-gradient(135deg, #d4af37, var(--main-slider-active-color));
                                transform: translateY(-3px);
                                box-shadow: 0 6px 20px rgba(204, 170, 0, 0.4);
                            }

                            /* Навигация */
                            .main-promo-slider__nav {
                                position: absolute;
                                top: 50%;
                                transform: translateY(-50%);
                                background: var(--main-slider-nav-bg);
                                color: var(--main-slider-active-color);
                                border: none;
                                width: 35px;
                                height: 50px;
                                cursor: pointer;
                                z-index: 4;
                                transition: all 0.3s ease;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                            }

                            .main-promo-slider__nav:hover {
                                background: rgba(204,170,0,0.3);
                            }

                            .main-promo-slider__prev {
                                left: 0;
                                border-radius: 0 5px 5px 0;
                            }

                            .main-promo-slider__next {
                                right: 0;
                                border-radius: 5px 0 0 5px;
                            }

                            .main-promo-slider__nav-icon {
                                width: 30px;
                                height: 30px;
                                fill: currentColor;
                            }

                            /* Индикаторы */
                            .main-promo-slider__dots {
                                position: absolute;
                                bottom: 1rem;
                                left: 50%;
                                transform: translateX(-50%);
                                display: flex;
                                gap: 0.8rem;
                                z-index: 3;
                            }

                            .main-promo-slider__dot {
                                width: 12px;
                                height: 12px;
                                border-radius: 50%;
                                background: rgba(255,255,255,0.5);
                                border: none;
                                padding: 0;
                                cursor: pointer;
                                transition: all 0.3s ease;
                            }

                            .main-promo-slider__dot:hover,
                            .main-promo-slider__dot--active {
                                background: var(--main-slider-active-color);
                                transform: scale(1.3);
                            }

                            /* Затемнение по бокам */
                            .main-promo-slider__fade {
                                position: absolute;
                                top: 0;
                                bottom: 0;
                                width: 30px;
                                z-index: 2;
                                pointer-events: none;
                            }

                            .main-promo-slider__fade--left {
                                left: 0;
                                background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
                            }

                            .main-promo-slider__fade--right {
                                right: 0;
                                background: linear-gradient(270deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
                            }

                            /* Общие стили */
                            body {
                                margin: 0;
                                padding: 0;
                                background: #0a0a0a;
                                background-image: 
                                    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
                                    radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.03) 0%, transparent 50%),
                                    radial-gradient(circle at 40% 20%, rgba(255, 140, 0, 0.02) 0%, transparent 50%);
                                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
                                position: relative;
                                overflow-x: hidden;
                            }

                            /* Космические частицы (звезды) */
                            body::before {
                                content: '';
                                position: fixed;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                background-image: 
                                    radial-gradient(2px 2px at 20% 30%, white, transparent),
                                    radial-gradient(2px 2px at 60% 70%, white, transparent),
                                    radial-gradient(1px 1px at 50% 50%, white, transparent),
                                    radial-gradient(1px 1px at 80% 10%, white, transparent),
                                    radial-gradient(2px 2px at 90% 60%, white, transparent),
                                    radial-gradient(1px 1px at 33% 80%, white, transparent),
                                    radial-gradient(1px 1px at 15% 90%, white, transparent);
                                background-size: 200% 200%;
                                background-position: 0% 0%;
                                animation: stars-drift 120s linear infinite;
                                opacity: 0.3;
                                pointer-events: none;
                                z-index: -1;
                            }

                            @keyframes stars-drift {
                                0% {
                                    background-position: 0% 0%;
                                }
                                100% {
                                    background-position: 100% 100%;
                                }
                            }

                            a {
                                text-decoration: none;
                            }
   .payment-methods-wrapper {
                            position: relative;
                            padding: 30px 0;
                            overflow: hidden;
                        }
                        
                        .payment-methods-container {
                            max-width: 1800px;
                            margin: 0 auto;
                            padding: 0 20px;
                            position: relative;
                            z-index: 1;
                        }
                        
                        .payment-methods-scroller {
                            overflow-x: auto;
                            padding: 20px 0;
                            -webkit-overflow-scrolling: touch;
                            scrollbar-width: none;
                        }
                        
                        .payment-methods-scroller::-webkit-scrollbar {
                            display: none;
                        }
                        
                        .payment-methods-track {
                            display: flex;
                            justify-content: center;
                            gap: 50px;
                            padding: 0 20px;
                            min-width: min-content;
                        }
                        
                        .payment-method {
                            position: relative;
                            width: 150px;
                            height: auto;
                            flex-shrink: 0;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                            text-decoration: none;
                            margin: 10px 0;
                        }
                        
                        .payment-method:hover {
                            transform: translateY(-8px) scale(1.05);
                        }
                        
                        .payment-method-icon {
                            width: 100%;
                            height: auto;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            padding: 15px;
                            transition: all 0.4s ease;
                        }
                        
                        .payment-method:hover .payment-method-icon {
                            transform: scale(1.1);
                        }
                        
                        .payment-method-image {
                            max-width: 100%;
                            max-height: 80px;
                            object-fit: contain;
                            opacity: 0.9;
                            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
                        }
                        
                        .payment-method:hover .payment-method-image {
                            opacity: 1;
                            filter: drop-shadow(0 8px 12px rgba(90, 115, 255, 0.3)) brightness(1.1);
                        }
                        
                        .payment-method-glow {
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            width: 0;
                            height: 0;
                            background: radial-gradient(circle, rgba(90, 115, 255, 0.4) 0%, rgba(90, 115, 255, 0) 70%);
                            border-radius: 50%;
                            transform: translate(-50%, -50%);
                            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                            pointer-events: none;
                            opacity: 0;
                        }
                        
                        .payment-method:hover .payment-method-glow {
                            width: 200px;
                            height: 200px;
                            opacity: 1;
                        }
                        
                        @media (max-width: 1200px) {
                            .payment-methods-track {
                                gap: 40px;
                            }
                            
                            .payment-method {
                                width: 130px;
                            }
                        }
                        
                        @media (max-width: 992px) {
                            .payment-methods-track {
                                gap: 30px;
                                justify-content: flex-start;
                                padding: 0 40px;
                            }
                            
                            .payment-method {
                                width: 130px;
                            }
                        }
                        .payment-methods-wrapper {
                            position: relative;
                            padding: 40px 0;
                            overflow: visible;
                        }
                        
                        .payment-methods-container {
                            max-width: 1800px;
                            margin: 0 auto;
                            padding: 0 20px;
                            position: relative;
                            z-index: 1;
                            overflow: visible;
                        }
                        
                        .payment-methods-scroller {
                            overflow-x: auto;
                            padding: 30px 0;
                            -webkit-overflow-scrolling: touch;
                            scrollbar-width: none;
                            overflow: visible;
                        }
                        
                        .payment-methods-scroller::-webkit-scrollbar {
                            display: none;
                        }
                        
                        .payment-methods-track {
                            display: flex;
                            justify-content: center;
                            gap: 50px;
                            padding: 0 30px;
                            min-width: min-content;
                            overflow: visible;
                        }
                        
                        .payment-method {
                            position: relative;
                            width: 150px;
                            height: auto;
                            flex-shrink: 0;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                            text-decoration: none;
                            margin: 20px 0;
                        }
                        
                        .payment-method:hover {
                            transform: translateY(-8px) scale(1.05);
                        }
                        
                        .payment-method-icon {
                            width: 100%;
                            height: auto;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            padding: 15px;
                            transition: all 0.4s ease;
                        }
                        
                        .payment-method-image {
                            max-width: 100%;
                            max-height: 80px;
                            object-fit: contain;
                            opacity: 0.9;
                            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                        }
                        
                        .payment-method:hover .payment-method-image {
                            opacity: 1;
                            filter: brightness(1.1);
                        }
                        
                        .payment-method-glow {
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            width: 100%;
                            height: 100%;
                            transform: translate(-50%, -50%);
                            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                            pointer-events: none;
                            opacity: 0;
                            z-index: -1;
                        }
                        
                        .payment-method:hover .payment-method-glow {
                            opacity: 1;
                        }
                        @media (max-width: 768px) {
                            .payment-methods-track {
                                gap: 25px;
                            }
                            
                            .payment-method {
                                width: 130px;
                            }
                            
                            .payment-method-image {
                                max-height: 70px;
                            }
                        }
                        
                        @media (max-width: 576px) {
                            .payment-methods-track {
                                gap: 20px;
                                padding: 0 20px;
                            }
                            
                            .payment-method {
                                width: 120px;
                            }
                            
                            .payment-method-image {
                                max-height: 60px;
                            }
                        }
                        
  .payment-methods-wrapper {
                            position: relative;
                            padding: 40px 0;
                            overflow: visible;
                        }
                        
                        .payment-methods-container {
                            max-width: 1800px;
                            margin: 0 auto;
                            padding: 0 20px;
                            position: relative;
                            z-index: 1;
                            overflow: visible;
                        }
                        
                    
                        
                        .payment-methods-scroller::-webkit-scrollbar {
                            display: none;
                        }
                        
                        .payment-methods-track {
                            display: flex;
                            justify-content: center;
                            gap: 50px;
                            padding: 0 30px;
                            min-width: min-content;
                        }
                        
                        .payment-method {
                            position: relative;
                            width: 150px;
                            height: auto;
                            flex-shrink: 0;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                            text-decoration: none;
                            margin: 20px 0;
                        }
                        
                        .payment-method:hover {
                            transform: translateY(-8px) scale(1.05);
                        }
                        
                        .payment-method-icon {
                            width: 100%;
                            height: auto;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            padding: 15px;
                            transition: all 0.4s ease;
                        }
                        
                        .payment-method-image {
                            max-width: 100%;
                            max-height: 80px;
                            object-fit: contain;
                            opacity: 0.9;
                            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                        }
                        
                        .payment-method:hover .payment-method-image {
                            opacity: 1;
                            filter: brightness(1.1);
                        }
                        
                        .payment-method-glow {
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            width: 100%;
                            height: 100%;
                            transform: translate(-50%, -50%);
                            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                            pointer-events: none;
                            opacity: 0;
                            z-index: -1;
                        }
                        
                        .payment-method:hover .payment-method-glow {
                            opacity: 1;
                        }

                        /* Мобильные стили */
                        @media (max-width: 768px) {
                            .payment-methods-scroller {
                            
                            padding: 30px 0;
                            -webkit-overflow-scrolling: touch;
                            scrollbar-width: none;
                            overflow-y: hidden;
                        }
                            .payment-methods-scroller {
                                -webkit-overflow-scrolling: touch;
                                overflow-x: scroll;
                                padding-bottom: 20px;
                            }
                            
                            .payment-methods-track {
                                justify-content: flex-start;
                                padding: 0 20px;
                                gap: 30px;
                            }
                        
                            
                            .payment-method:hover {
                                transform: none;
                            }
                            
                            .payment-method:hover .payment-method-image {
                                filter: none;
                            }
                            
                            .payment-method-glow {
                                display: none;
                            }
                        }


   .mobile-footer-vertical {
        width: 100%;
        padding: 20px 15px;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .footer-section {
        margin-bottom: 24px;
    }
    
    .footer-section-title {
        color: #e9d645;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 12px;
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-link {
        display: block;
        padding: 10px 0;
        color: #f1f1f1;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        padding-left: 12px;
    }
    
    .footer-link:hover {
        color: #ffffff;
        border-left: 3px solidrgb(216, 190, 40);
        padding-left: 15px;
        transform: translateX(3px);
    }
    
    .social-link {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .footer-icon {
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    
    .social-link:hover .footer-icon {
        transform: scale(1.1);
    }
    
    @media (max-width: 480px) {
        .mobile-footer-vertical {
            padding: 15px 12px;
            border-radius: 0;
        }
        
        .footer-section-title {
            font-size: 15px;
        }
        
        .footer-link {
            font-size: 13px;
        }
    }

  .providers-container {
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                            padding: 20px;
                            
                        }

                        .provider {
                            margin: 10px;
                            width: 110px;
                            text-align: center;
                        }

                        .provider img {
                            max-width: 100%;
                            height: auto;
                            border-radius: 5px;
                            transition: transform 0.3s ease;
                        }

                        .provider img:hover {
                            transform: scale(1.1);
                        }

                        @media (max-width: 768px) {
                            .provider {
                                width: 80px;
                            }
                        }

                        @media (max-width: 480px) {
                            .provider {
                                width: 60px;
                            }
                        }
                        .title2 .fa {
                            border-radius: 50%;
                            height: 60px;
                            padding: 10px 10px 10px 15px;
                            background-image: linear-gradient(180deg, #ccaa00, #996600), linear-gradient(180deg, #ccaa00, #663300);
                            box-shadow: 0 5px 6px 0 #11141b1f, 0 0 36.54px 0 #ccaa00;
                            padding: auto;
                            width: 60px;
                            margin: auto;
                        }
                        @media (max-width: 768px) {
                            .recent-wins {
                                    display: none;
                                }
                            }
                        .recent-wins {
                            max-width: 100%;
                            margin: 0 auto;
                            padding: 20px;
                        
                            border-radius: 8px;
                            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                            overflow-x: hidden;
                            position: relative;
                        }

                        .recent-wins h2 {
                            text-align: center;
                            margin-bottom: 20px;
                        }

                        .wins-container {
                            display: flex;
                            flex-wrap: nowrap;
                            overflow: hidden;
                            position: relative;
                        }

                        .win-entry {
                            flex: none;
                            padding-right : 10px;
                            margin-right: 10px; /* фиксированный отступ между записями */
                            display: flex;
                            align-items: center;
                            
                            display: flex;
                            align-items: center;
                            background-color: #333; /* Темный фон */
                            color: #fff; /* Белый текст */
                            
                            background-clip: padding-box, border-box;
                            background-image: linear-gradient(180deg, #192232, #192232), linear-gradient(180deg, #212f44 20%, #192232 47%);
                            /* background-image: linear-gradient(to bottom, #192232, #192232), linear-gradient(to bottom, var(--topLine) 20%, #192232 47%); */
                            background-origin: border-box;
                            border: 3px solid #0000;
                            border-radius: 25px;
                            box-shadow: 0 5px 6px 0 #11141b1f;

                            transform: translateX(-100%);
                            animation: slideIn 1s forwards;
                        }  
                        .win-entry img{
                            max-height: 100%; /* Чтобы изображение занимало всю высоту записи */
                            object-fit: cover;
                            border-radius: 24px;
                            margin-right: 20px;
                            height : 110px;
                            width : auto;
                        }
                        @keyframes slideIn {
                            to {
                                opacity: 1;
                                transform: translateX(0);
                            }
                        }

                        .win-entry:hover {
                        
                        }

                        .win-entry img:hover::after {
                            content: '@'; /* Значок, который появится при наведении */
                            position: absolute; /* Абсолютное позиционирование */
                            top: 50%; /* Выравнивание по вертикали */
                            left: 50%; /* Выравнивание по горизонтали */
                            transform: translate(-50%, -50%); /* Центрирование значка */
                            font-size: 24px; /* Размер значка */
                            color: #000; /* Цвет значка */
                            pointer-events: none; /* Отключение событий указателя на псевдоэлементе */
                        }

                        .win-entry img:hover {
                            cursor: pointer; /* Изменение курсора при наведении */
                        }

                        .win-entry .win-info {
                            text-align: center;
                        }

                        .win-entry .win-info .game-name {
                            font-weight: bold;
                        }

                        .win-entry .win-info .player-name {
                            color: #666;
                        }
                        .ultra-win {
                            color: red;
                        }

                        .titanic-win {
                            color: blue;
                        }

                        .epic-win {
                            color: green;
                        }

                        .legendary-win {
                            color: purple;
                        }

                        .super-win {
                            color: orange;
                        }

                        .mega-win {
                            color: gold;
                        }
                        .win-entry .win-info .win-amount {
                            color: #28a745;
                            font-weight: bold;
                        }
.cosmic-stats {
                            
                            padding: 40px 0;
                            position: relative;
                            overflow: hidden;
                        }

                        .cosmic-counter {
                            position: relative;
                            padding: 30px 15px;
                            margin-bottom: 20px;
                            background: rgba(10, 14, 35, 0.7);
                            border-radius: 12px;
                            border: 1px solid rgba(212, 175, 55, 0.3);
                            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2),
                                        inset 0 0 15px rgba(212, 175, 55, 0.1);
                            transition: all 0.3s ease;
                            text-align: center;
                            z-index: 1;
                            backdrop-filter: blur(5px);
                            overflow: hidden;
                        }

                        .cosmic-counter:hover {
                            transform: translateY(-5px);
                            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
                                        inset 0 0 20px rgba(212, 175, 55, 0.2);
                            border-color: rgba(212, 175, 55, 0.5);
                        }

                        .cosmic-icon-wrapper {
                            margin-bottom: 15px;
                        }

                        .cosmic-icon {
                            width: 50px;
                            height: 50px;
                            fill: #d4af37;
                            filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
                        }

                        .cosmic-number {
                            font-size: 2.5rem;
                            font-weight: 700;
                            color: #d4af37;
                            margin-bottom: 5px;
                            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
                            font-family: 'Arial', sans-serif;
                        }

                        .cosmic-label {
                            font-size: 1rem;
                            color: #d8edf9;
                            text-transform: uppercase;
                            letter-spacing: 1px;
                            font-weight: 300;
                        }

                        /* Стили для космических частиц */
                        .cosmic-particle {
                            position: absolute;
                            background: rgba(212, 175, 55, 0.6);
                            border-radius: 50%;
                            pointer-events: none;
                            z-index: -1;
                            animation-timing-function: ease-in-out;
                            animation-iteration-count: infinite;
                        }

                        /* Размеры и позиции частиц */
                        .particle-1 { width: 2px; height: 2px; top: 10%; left: 15%; animation: float-1 12s infinite; }
                        .particle-2 { width: 3px; height: 3px; bottom: 20%; right: 10%; animation: float-2 15s infinite 2s; }
                        .particle-3 { width: 1px; height: 1px; top: 30%; left: 25%; animation: float-3 10s infinite 1s; }
                        .particle-4 { width: 2px; height: 2px; bottom: 15%; right: 30%; animation: float-4 14s infinite 3s; }
                        .particle-5 { width: 3px; height: 3px; top: 60%; left: 10%; animation: float-5 13s infinite 4s; }
                        .particle-6 { width: 1px; height: 1px; bottom: 40%; right: 20%; animation: float-6 11s infinite 5s; }

                        .particle-7 { width: 3px; height: 3px; top: 15%; left: 20%; animation: float-7 14s infinite; }
                        .particle-8 { width: 2px; height: 2px; bottom: 25%; right: 15%; animation: float-8 12s infinite 2s; }
                        .particle-9 { width: 1px; height: 1px; top: 40%; left: 10%; animation: float-1 16s infinite 1s; }
                        .particle-10 { width: 3px; height: 3px; bottom: 10%; right: 25%; animation: float-2 13s infinite 3s; }
                        .particle-11 { width: 2px; height: 2px; top: 70%; left: 15%; animation: float-3 15s infinite 4s; }
                        .particle-12 { width: 1px; height: 1px; bottom: 30%; right: 10%; animation: float-4 11s infinite 5s; }

                        .particle-13 { width: 2px; height: 2px; top: 20%; left: 10%; animation: float-5 13s infinite; }
                        .particle-14 { width: 3px; height: 3px; bottom: 15%; right: 20%; animation: float-6 16s infinite 2s; }
                        .particle-15 { width: 1px; height: 1px; top: 50%; left: 15%; animation: float-7 12s infinite 1s; }
                        .particle-16 { width: 2px; height: 2px; bottom: 25%; right: 30%; animation: float-8 14s infinite 3s; }
                        .particle-17 { width: 3px; height: 3px; top: 65%; left: 20%; animation: float-1 15s infinite 4s; }
                        .particle-18 { width: 1px; height: 1px; bottom: 35%; right: 15%; animation: float-2 11s infinite 5s; }

                        .particle-19 { width: 3px; height: 3px; top: 10%; left: 25%; animation: float-3 14s infinite; }
                        .particle-20 { width: 2px; height: 2px; bottom: 20%; right: 10%; animation: float-4 12s infinite 2s; }
                        .particle-21 { width: 1px; height: 1px; top: 35%; left: 15%; animation: float-5 16s infinite 1s; }
                        .particle-22 { width: 3px; height: 3px; bottom: 15%; right: 25%; animation: float-6 13s infinite 3s; }
                        .particle-23 { width: 2px; height: 2px; top: 60%; left: 10%; animation: float-7 15s infinite 4s; }
                        .particle-24 { width: 1px; height: 1px; bottom: 40%; right: 20%; animation: float-8 11s infinite 5s; }

                        /* Разнообразные анимации для частиц */
                        @keyframes float-1 {
                            0%, 100% { transform: translate(0, 0); }
                            25% { transform: translate(15px, -10px); }
                            50% { transform: translate(-5px, 15px); }
                            75% { transform: translate(10px, -5px); }
                        }

                        @keyframes float-2 {
                            0%, 100% { transform: translate(0, 0); }
                            25% { transform: translate(-10px, 15px); }
                            50% { transform: translate(5px, -10px); }
                            75% { transform: translate(-15px, 5px); }
                        }

                        @keyframes float-3 {
                            0%, 100% { transform: translate(0, 0); }
                            25% { transform: translate(5px, -15px); }
                            50% { transform: translate(-10px, 5px); }
                            75% { transform: translate(15px, -5px); }
                        }

                        @keyframes float-4 {
                            0%, 100% { transform: translate(0, 0); }
                            25% { transform: translate(-15px, 5px); }
                            50% { transform: translate(10px, -15px); }
                            75% { transform: translate(-5px, 10px); }
                        }

                        @keyframes float-5 {
                            0%, 100% { transform: translate(0, 0); }
                            25% { transform: translate(20px, -5px); }
                            50% { transform: translate(-10px, 10px); }
                            75% { transform: translate(5px, -20px); }
                        }

                        @keyframes float-6 {
                            0%, 100% { transform: translate(0, 0); }
                            25% { transform: translate(-5px, 20px); }
                            50% { transform: translate(15px, -5px); }
                            75% { transform: translate(-20px, 10px); }
                        }

                        @keyframes float-7 {
                            0%, 100% { transform: translate(0, 0); }
                            25% { transform: translate(10px, -20px); }
                            50% { transform: translate(-15px, 5px); }
                            75% { transform: translate(20px, -10px); }
                        }

                        @keyframes float-8 {
                            0%, 100% { transform: translate(0, 0); }
                            25% { transform: translate(-20px, 10px); }
                            50% { transform: translate(5px, -15px); }
                            75% { transform: translate(10px, 20px); }
                        }

                        /* Адаптивность */
                        @media (max-width: 768px) {
                            .cosmic-counter {
                                padding: 20px 10px;
                            }
                            
                            .cosmic-number {
                                font-size: 2rem;
                            }
                            
                            .cosmic-icon {
                                width: 40px;
                                height: 40px;
                            }
                            
                            /* Уменьшаем количество частиц на мобильных */
                            .cosmic-particle:nth-child(n+5) {
                                display: none;
                            }
                        }


    .provider-card {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(20, 30, 70, 0.7);
        border: 1px solid rgba(100, 149, 237, 0.3);
        border-radius: 10px;
        padding: 10px;
        width: 115px;
        
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .provider-card:hover {
        transform: translateY(-5px);
        background: rgba(40, 60, 120, 0.8);
        box-shadow: 0 8px 15px rgba(65, 105, 225, 0.4);
        border-color: rgba(100, 149, 237, 0.6);
    }

    .provider-card img, .provider-card svg {
        max-width: 100%;
        max-height: 100%;
        filter: brightness(1.1);
    }


      .footer-nav {
                                            list-style-type: none;
                                            padding: 0;
                                            margin: 0;
                                        }
                                        
                                        .footer-nav .column {
                                            display: flex;
                                            flex-direction: column;
                                        }
                                        
                                        .footer-nav li {
                                            margin-bottom: 10px; /* Отступ между пунктами */
                                        }
                                        
                                        .footer-nav a {
                                            display: flex;
                                            align-items: center;
                                            text-decoration: none;
                                            color: inherit;
                                        }
                                        
                                        .footer-nav .icon {
                                            margin-right: 8px;
                                        }


  .icon {
                                display: inline-block;
                                vertical-align: middle;
                            }

                            .icon--fixed {
                                width: 24px;
                                height: 24px;
                                margin-right: 8px; /* Отступ между иконкой и текстом */
                                fill: currentColor; /* Цвет как у родительского текста */
                            }


                             /* Основные стили космической темы */
    .cosmic-modal .modal-dialog {
        max-width: 900px;
    }

    .cosmic-auth-content {
        display: flex;
        flex-direction: row;
        background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
        border-radius: 15px;
        box-shadow: 0 0 30px rgba(100, 149, 237, 0.5);
        border: 1px solid rgba(100, 149, 237, 0.3);
        position: relative;
        overflow: hidden;
    }

    .cosmic-form-container {
        flex: 1;
        padding: 30px;
        position: relative;
        z-index: 2;
    }

    .cosmic-tabs {
        margin-bottom: 25px;
        display: flex;
        justify-content: center;
    }

    .cosmic-tab {
        background: rgba(16, 18, 37, 0.7);
        color: #fff;
        border: 1px solid #4a4e8a;
        border-radius: 20px;
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cosmic-tab.isActive {
        background: linear-gradient(90deg, #6e45e2, #88d3ce);
        box-shadow: 0 0 15px rgba(110, 69, 226, 0.5);
        border-color: transparent;
    }

    .cosmic-label {
        margin-bottom: 20px;
        display: block;
    }

    .cosmic-label-text {
        color: #aab2d5;
        font-size: 14px;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .cosmic-input-group {
        position: relative;
        margin-bottom: 5px;
    }

    .cosmic-input {
        width: 100%;
        padding: 12px 15px;
        background: rgba(16, 18, 37, 0.7);
        border: 1px solid #4a4e8a;
        border-radius: 8px;
        color: #fff;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .cosmic-input:focus {
        border-color: #6e45e2;
        box-shadow: 0 0 10px rgba(110, 69, 226, 0.5);
        outline: none;
    }

    .cosmic-input::placeholder {
        color: #4a4e8a;
    }

    .cosmic-generate-btn {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 24px;
        height: 24px;
        transition: transform 0.3s ease;
    }

    .cosmic-generate-btn:hover {
        transform: translateY(-50%) rotate(90deg);
    }

    .cosmic-error {
        color: #ff6b6b;
        font-size: 12px;
        margin-top: 5px;
        display: none;
    }

    .cosmic-phone-group {
        display: flex;
    }

    .cosmic-select {
        width: 120px;
        margin-right: 10px;
        background: rgba(16, 18, 37, 0.7) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23aab2d5' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat;
        background-position: right 10px center;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-right: 30px;
    }

    /* Стили для сложности пароля */
    .cosmic-password-strength {
        margin-top: 10px;
        display: flex;
        align-items: center;
    }

    .strength-bar {
        height: 4px;
        flex-grow: 1;
        margin-right: 5px;
        background: #4a4e8a;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .strength-text {
        font-size: 11px;
        color: #aab2d5;
        margin-left: 5px;
    }

    /* Стили для социальных кнопок */
    .cosmic-social {
        margin: 25px 0;
    }

    .social-title {
        color: #aab2d5;
        font-size: 14px;
        text-align: center;
        margin-bottom: 15px;
        position: relative;
    }

    .social-title:before, .social-title:after {
        content: "";
        position: absolute;
        top: 50%;
        width: 30%;
        height: 1px;
        background: linear-gradient(90deg, transparent, #4a4e8a);
    }

    .social-title:before {
        left: 0;
    }

    .social-title:after {
        right: 0;
        background: linear-gradient(90deg, #4a4e8a, transparent);
    }

    .social-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .cosmic-social-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 16px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .cosmic-social-btn:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .cosmic-social-btn:hover:before {
        opacity: 1;
    }

    

    .cosmic-social-btn.facebook {
        background: #3b5998;
    }

    .cosmic-social-btn.twitter {
        background: #1DA1F2;
    }

    .cosmic-social-btn.vk {
        background: #4a76a8;
    }

    /* Стили для кнопки регистрации */
    .cosmic-register-btn {
        width: 100%;
        padding: 14px;
        background: linear-gradient(90deg, #6e45e2, #88d3ce);
        border: none;
        border-radius: 8px;
        color: white;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    .cosmic-register-btn:hover {
        box-shadow: 0 0 20px rgba(110, 69, 226, 0.7);
        transform: translateY(-2px);
    }

    .cosmic-register-btn:disabled {
        background: #4a4e8a;
        cursor: not-allowed;
        opacity: 0.7;
    }

    .cosmic-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            rgba(255,255,255,0) 0%, 
            rgba(255,255,255,0.3) 50%, 
            rgba(255,255,255,0) 100%);
        transform: translateX(-100%);
        transition: transform 0.7s ease;
    }

    .cosmic-register-btn:hover .cosmic-glow {
        transform: translateX(100%);
    }

    /* Стили для чекбокса */
    .cosmic-checkbox {
        margin-top: 20px;
        display: flex;
        align-items: center;
        color: #aab2d5;
        font-size: 13px;
        position: relative;
        padding-left: 30px;
        cursor: pointer;
    }

    .cosmic-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .cosmic-checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: rgba(16, 18, 37, 0.7);
        border: 1px solid #4a4e8a;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .cosmic-checkbox:hover input ~ .cosmic-checkmark {
        border-color: #6e45e2;
    }

    .cosmic-checkbox input:checked ~ .cosmic-checkmark {
        background-color: #6e45e2;
        border-color: #6e45e2;
    }

    .cosmic-checkmark:after {
        content: "";
        position: absolute;
        display: none;
        left: 7px;
        top: 3px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .cosmic-checkbox input:checked ~ .cosmic-checkmark:after {
        display: block;
    }

    /* Стили для промо блока */
    .cosmic-promo-section {
        width: 300px;
        padding: 30px;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        border-left: 1px solid rgba(100, 149, 237, 0.2);
        position: relative;
        overflow: hidden;
    }

    .cosmic-promo-section:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://www.transparenttextures.com/patterns/stardust.png');
        opacity: 0.3;
        pointer-events: none;
    }

    .cosmic-promo-header {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }

    .cosmic-promo-header h3 {
        color: #fff;
        font-size: 22px;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .cosmic-divider {
        height: 2px;
        background: linear-gradient(90deg, transparent, #6e45e2, #88d3ce, transparent);
        margin: 0 auto;
        width: 80%;
    }

    .cosmic-promo-slider {
        position: relative;
        height: 400px;
        overflow: hidden;
    }

    .cosmic-promo-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease;
        display: flex;
        align-items: flex-end;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .cosmic-promo-slide.active {
        opacity: 1;
    }

    .promo-content {
        background: rgba(16, 18, 37, 0.8);
        padding: 20px;
        border-radius: 8px;
        width: 100%;
        backdrop-filter: blur(5px);
        transform: translateY(20px);
        transition: transform 0.5s ease;
    }

    .cosmic-promo-slide.active .promo-content {
        transform: translateY(0);
    }

    .cosmic-promo-title {
        color: #fff;
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .cosmic-promo-value {
        color: #88d3ce;
        font-size: 36px;
        font-weight: 700;
        margin: 10px 0;
        text-shadow: 0 0 10px rgba(136, 211, 206, 0.5);
    }

    .promo-desc {
        color: #aab2d5;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .cosmic-stars {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .cosmic-stars .star {
        width: 10px;
        height: 10px;
        background: #ffd700;
        clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        margin: 0 5px;
        opacity: 0.7;
    }

    .cosmic-promo-prev, .cosmic-promo-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background: rgba(16, 18, 37, 0.7);
        border: 1px solid #4a4e8a;
        border-radius: 50%;
        color: #fff;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .cosmic-promo-prev {
        left: 10px;
    }

    .cosmic-promo-next {
        right: 10px;
    }

    .cosmic-promo-prev:hover, .cosmic-promo-next:hover {
        background: #6e45e2;
        border-color: #6e45e2;
    }

    .cosmic-promo-footer {
        margin-top: 30px;
        text-align: center;
        color: #aab2d5;
        font-size: 13px;
        line-height: 1.5;
    }

    /* Анимации и эффекты */
    @keyframes gradient {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

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

    .cosmic-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .cosmic-particles:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://www.transparenttextures.com/patterns/starfield.png');
        opacity: 0.1;
    }

    /* Адаптивность */
    @media (max-width: 992px) {
        .cosmic-auth-content {
            flex-direction: column;
        }
        
        .cosmic-promo-section {
            width: 100%;
            border-left: none;
            border-top: 1px solid rgba(100, 149, 237, 0.2);
        }
        
        .cosmic-promo-slider {
            height: 250px;
        }
    }

        .cosmic-remember-forgot {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}


        .cosmic-columns-container {
            display: flex;
            flex-direction: column;
            gap: 10px; /* Расстояние между столбцами */
        }

        .cosmic-column {
            margin-left: 30%;
            display: flex;
            align-items: center;
        }

        .checkbox-block.cosmic-checkbox {
            margin: 0; /* Убираем стандартные отступы */
        }

        .cosmic-forgot-link {
            color: #d4af37; /* Золотой цвет, как в вашей теме */
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        .cosmic-forgot-link:hover {
            color: #f8d030; /* Более светлый золотой при наведении */
            text-decoration: underline;
        }


  /* Специфичные стили для окна входа */
    .cosmic-login-form {
        padding-top: 20px;
    }

    .cosmic-login-btn {
        margin-top: 25px;
        background: linear-gradient(90deg, #6e45e2, #88d3ce);
        position: relative;
        overflow: hidden;
    }

    .cosmic-login-btn:hover {
        box-shadow: 0 0 20px rgba(110, 69, 226, 0.7);
        transform: translateY(-2px);
    }

    .cosmic-remember-forgot {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 15px 0;
    }

    .cosmic-forgot-link {
        color: #aab2d5;
        font-size: 13px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .cosmic-forgot-link:hover {
        color: #88d3ce;
        text-decoration: underline;
    }

    .cosmic-no-account {
        text-align: center;
        margin-top: 20px;
        color: #aab2d5;
        font-size: 14px;
    }

    .cosmic-register-link {
        color: #88d3ce;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .cosmic-register-link:hover {
        color: #6e45e2;
        text-decoration: underline;
    }

    .cosmic-password-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #aab2d5;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .cosmic-password-toggle:hover {
        color: #88d3ce;
    }

    /* Анимация для кнопки входа */
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(110, 69, 226, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(110, 69, 226, 0); }
        100% { box-shadow: 0 0 0 0 rgba(110, 69, 226, 0); }
    }

    .cosmic-login-btn.pulse {
        animation: pulse 1.5s infinite;
    }

      .cookie-popup {
                position: fixed;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                width: 90%;
                max-width: 600px;
                background-color: #111;
                border: 1px solid gold;
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 0 20px rgba(204, 170, 0, 0.3);
                z-index: 9999;
                animation: slideUp 0.5s ease-out;
            }
            
            .cookie-popup-content {
                display: flex;
                flex-direction: column;
            }
            
            .cookie-text h3 {
                color: gold;
                margin-top: 0;
                display: flex;
                align-items: center;
                font-size: 1.2rem;
            }
            
            .cookie-text h3 i {
                margin-right: 10px;
                font-size: 1.5rem;
            }
            
            .cookie-text p {
                color: #ddd;
                margin: 10px 0 15px;
                font-size: 0.9rem;
                line-height: 1.5;
            }
            
            .cookie-text a {
                text-decoration: underline;
                transition: color 0.3s;
            }
            
            .cookie-text a:hover {
                color: #ffd700;
            }
            
            .cookie-buttons {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }
            
            .cookie-btn {
                padding: 10px 20px;
                border-radius: 5px;
                font-weight: bold;
                cursor: pointer;
                transition: all 0.3s ease;
                flex-grow: 1;
            }
            
            .accept-btn {
                background: linear-gradient(to right, #ccaa00, #d4af37);
                color: #000;
                border: none;
            }
            
            .accept-btn:hover {
                background: linear-gradient(to right, #d4af37, #ccaa00);
                transform: translateY(-2px);
                box-shadow: 0 5px 10px rgba(204, 170, 0, 0.3);
            }
            
            .reject-btn {
                background: transparent;
                color: #fff;
                border: 1px solid #555;
            }
            
            .reject-btn:hover {
                border-color: gold;
                color: gold;
            }
            
            .settings-btn {
                background: #222;
                color: gold;
                border: 1px solid gold;
            }
            
            .settings-btn:hover {
                background: rgba(204, 170, 0, 0.1);
            }
            
            @keyframes slideUp {
                from {
                    opacity: 0;
                    transform: translate(-50%, 20px);
                }
                to {
                    opacity: 1;
                    transform: translate(-50%, 0);
                }
            }
            
            @media (max-width: 768px) {
                .cookie-popup {
                    width: 95%;
                    padding: 15px;
                }
                
                .cookie-buttons {
                    flex-direction: column;
                }
                
                .cookie-btn {
                    width: 100%;
                }
            }


                            .new_tabs{
                    justify-content: center;
                }
                @import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
                .social a {
                text-align: center;
                width: 48px;
                height: 48px;
                float: left;
                background: #071542;
                border: 1px solid #504343;
                box-shadow: 0 2px 4px rgb(0 0 0 / 15%), inset 0 0 50px rgb(0 0 0 / 10%);
                border-radius: 24px;
                margin: 0 10px 10px 0;
                padding: 8px;
                color: #b3a0a0;
                }
                .github a:hover {background: #191919; color: #fff;}
                .youtube a:hover {background: #c4302b; color: #fff;}
                .google-pluse a:hover {background: #DD4B39; color: #fff;}
                .twitter a:hover {background: #00acee; color: #fff;}
                .instagram a:hover {background: #3f729b; color: #fff;}
                .facebook a:hover {background: #3b5998; color: #fff;}
                .skype a:hover {background: #00aff0; color: #fff;}
                .vk a:hover {background: #5d84ae; color: #fff;}
                .odnoklassniki a:hover {background: #f93; color: #fff;}
                .pinterest a:hover {background: #c8232c; color: #fff;}
                .linkedin a:hover {background: #0e76a8; color: #fff;}
                .telegram a:hover {background: #249bd7; color: #fff;}
                .tumblr a:hover {background: #34526f; color: #fff;}
                .windows a:hover {background: #125acd; color: #fff;}
                .whatsapp a:hover {background: #50b154; color: #fff;}
                .weibo a:hover {background: #d52b2b; color: #fff;}
                .dropbox a:hover {background: #1087dd; color: #fff;}
                


                  /* Основные стили для модального окна */
    #promoModal .modal-dialog {
        max-width: 450px;
        margin: 1.75rem auto;
    }
    
    #promoModal .modal-content {
        overflow: hidden;
    }
    
    /* Анимации и эффекты */
    #promoModal .modal-close:hover svg {
        fill: #f8d56b;
        transform: rotate(90deg);
    }
    
    #promoModal .input-field:focus {
        border-color: #4a7dff;
        box-shadow: 0 0 0 2px rgba(74, 125, 255, 0.2);
    }
    
    #promoModal .btn-green:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(175, 160, 76, 0.4);
    }
    
    #promoModal .btn-green:active {
        transform: translateY(0);
    }
    
    /* Адаптация для мобильных устройств */
    @media (max-width: 576px) {
        #promoModal .modal-dialog {
            margin: 0.5rem auto;
            max-width: 95%;
        }
        
        #promoModal .faucet-container {
            padding: 20px 15px;
        }
        
        #promoModal .faucet-caption {
            font-size: 1.3rem;
        }
        
        #promoModal .input-field {
            padding: 10px 15px 10px 40px;
            font-size: 0.9rem;
        }
        
        #promoModal .btn-green {
            padding: 10px 20px;
            font-size: 0.9rem;
            max-width: 100%;
        }
        
        #promoModal .icon-coin {
            width: 35px;
            height: 35px;
        }
    }
    
    @media (max-width: 400px) {
        #promoModal .faucet-caption {
            font-size: 1.2rem;
        }
        
        #promoModal .input-field {
            font-size: 0.8rem;
        }
    }

     .language-list {
                list-style-type: none; /* Убираем маркеры */
                padding: 0; /* Убираем отступы */
                margin: 0; /* Убираем отступы */
                display: grid; /* Используем сетку для двух столбиков */
                grid-template-columns: repeat(2, 1fr); /* Два столбика одинаковой ширины */
                gap: 50px; /* Расстояние между элементами */
                margin-left : 40px;
            }

            .language-list li {
                
                text-align: center; /* Центрируем контент внутри li */
            }

            .lang_img {
                display: block; /* Делаем ссылку блочным элементом */
                max-width: 100%; /* Ширина ссылки по ширине контейнера */
                text-decoration: none; /* Убираем подчеркивание ссылки */
            }
            .lang_img img{
                width : 100px;
            }
        


            /* ============================================ */
/* УЛУЧШЕННАЯ МОБИЛЬНАЯ АДАПТАЦИЯ */
/* ============================================ */

/* Общие улучшения для мобильных */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        position: relative;
    }
    
    /* Отключаем анимации на мобильных для производительности */
    .stars::before,
    .stars::after,
    .twinkling,
    .large-stars {
        animation: none;
    }
}

/* ============================================ */
/* УЛУЧШЕННЫЙ МОБИЛЬНЫЙ ФУТЕР */
/* ============================================ */

.mobile-footer-vertical {
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.98) 0%, 
        rgba(22, 33, 62, 0.98) 50%,
        rgba(26, 26, 46, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    box-shadow: 
        0 -8px 32px rgba(0, 0, 0, 0.4),
        0 -2px 8px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

/* Декоративная линия сверху */
.mobile-footer-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 0 0 4px 4px;
}

/* Космический фон */
.mobile-footer-vertical::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-section {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    animation: fadeInUp 0.5s ease-out backwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

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

.footer-section-title {
    color: #d4af37;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.footer-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 4px 0;
    color: #e8e8e8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    border-radius: 0 8px 8px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), transparent);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    border-left-color: #d4af37;
    padding-left: 20px;
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(4px);
}

.footer-link:hover::before {
    width: 100%;
}

.footer-link:active {
    transform: translateX(2px);
    background: rgba(212, 175, 55, 0.12);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.footer-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.social-link:hover .footer-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

/* Копирайт секция */
.footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.footer-copyright p {
    margin: 5px 0;
    line-height: 1.6;
}

/* Дополнительная адаптация для маленьких экранов */
@media (max-width: 480px) {
    .mobile-footer-vertical {
        padding: 25px 16px 16px;
        border-radius: 16px 16px 0 0;
    }
    
    .footer-section {
        margin-bottom: 24px;
    }
    
    .footer-section-title {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .footer-link {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .footer-icon {
        width: 18px;
        height: 18px;
    }
    
    .footer-copyright {
        font-size: 12px;
        margin-top: 24px;
        padding-top: 16px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
    .mobile-footer-vertical {
        padding: 20px 12px 12px;
    }
    
    .footer-section-title {
        font-size: 15px;
    }
    
    .footer-link {
        font-size: 13px;
        padding: 9px 12px;
    }
}

/* ============================================ */
/* АДАПТАЦИЯ PAYMENT METHODS */
/* ============================================ */

@media (max-width: 768px) {
    .payment-methods-wrapper {
        padding: 30px 0;
    }
    
    .payment-methods-scroller {
        padding: 20px 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .payment-methods-track {
        gap: 20px;
        padding: 0 15px;
    }
    
    .payment-method {
        width: 120px;
        margin: 10px 0;
    }
    
    .payment-method-image {
        max-height: 65px;
    }
    
    /* Индикатор скролла */
    .payment-methods-scroller::after {
        content: '→';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(212, 175, 55, 0.5);
        font-size: 24px;
        animation: slideHint 2s ease-in-out infinite;
        pointer-events: none;
    }
    
    @keyframes slideHint {
        0%, 100% { opacity: 0.3; transform: translateY(-50%) translateX(0); }
        50% { opacity: 1; transform: translateY(-50%) translateX(5px); }
    }
}

@media (max-width: 480px) {
    .payment-methods-track {
        gap: 15px;
        padding: 0 10px;
    }
    
    .payment-method {
        width: 100px;
    }
    
    .payment-method-image {
        max-height: 55px;
    }
}

/* ============================================ */
/* АДАПТАЦИЯ ПРОМО КАРТОЧЕК И СЛАЙДЕРА */
/* ============================================ */

@media (max-width: 768px) {
    .main-promo-slide__title {
        font-size: 1.6rem;
    }
    
    .main-promo-slide__subtitle {
        font-size: 1.1rem;
    }
    
    .main-promo-slide__button {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .main-promo-slider__nav {
        width: 40px;
        height: 55px;
    }
    
    .main-promo-slider__dots {
        bottom: 0.5rem;
        gap: 0.6rem;
    }
    
    .main-promo-slider__dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .main-promo-slide__overlay {
        left: 3%;
        width: 85%;
    }
    
    .main-promo-slide__title {
        font-size: 1.4rem;
    }
    
    .main-promo-slide__subtitle {
        font-size: 1rem;
    }
    
    .main-promo-slide__button {
        padding: 9px 20px;
        font-size: 0.9rem;
    }
    
    .main-promo-slider__nav {
        width: 35px;
        height: 50px;
    }
}

/* ============================================ */
/* АДАПТАЦИЯ КОСМИЧЕСКОЙ СТАТИСТИКИ */
/* ============================================ */

@media (max-width: 768px) {
    .cosmic-stats {
        padding: 30px 0;
    }
    
    .cosmic-counter {
        padding: 24px 12px;
        margin-bottom: 16px;
    }
    
    .cosmic-icon {
        width: 42px;
        height: 42px;
    }
    
    .cosmic-number {
        font-size: 2.2rem;
    }
    
    .cosmic-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cosmic-counter {
        padding: 20px 10px;
    }
    
    .cosmic-icon {
        width: 36px;
        height: 36px;
    }
    
    .cosmic-number {
        font-size: 2rem;
    }
    
    .cosmic-label {
        font-size: 0.9rem;
    }
}

/* ============================================ */
/* АДАПТАЦИЯ ПРОВАЙДЕРОВ */
/* ============================================ */

@media (max-width: 768px) {
    .providers-container {
        padding: 15px 10px;
        gap: 10px;
    }
    
    .provider {
        width: 90px;
        margin: 8px;
    }
}

@media (max-width: 480px) {
    .providers-container {
        padding: 12px 8px;
    }
    
    .provider {
        width: 70px;
        margin: 6px;
    }
}

/* ============================================ */
/* УЛУЧШЕНИЕ TOUCH ИНТЕРФЕЙСА */
/* ============================================ */

@media (hover: none) and (pointer: coarse) {
    /* Увеличиваем области нажатия для сенсорных экранов */
    .footer-link,
    .payment-method,
    .cosmic-counter {
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    }
    
    /* Убираем hover эффекты на touch устройствах */
    .payment-method:hover {
        transform: none;
    }
    
    .footer-link:hover {
        transform: none;
    }
    
    /* Добавляем активное состояние для лучшей обратной связи */
    .footer-link:active {
        background: rgba(212, 175, 55, 0.15);
    }
    
    .payment-method:active {
        transform: scale(0.95);
    }
}

/* Мобильные платежные кнопки */
.mobile-payment-actions {
    display: none;
    width: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.95) 0%, rgba(15, 15, 20, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 0;
   
    top: 60px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-payment-buttons {
    display: flex;
    justify-content: space-around;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
    gap: 10px;
}

.mobile-payment-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 150px;
    position: relative;
    overflow: hidden;
}

.mobile-payment-btn .icon {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.deposit-btn {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.deposit-btn .icon {
    fill: #d4af37;
}

.withdraw-btn {
    background: linear-gradient(135deg, rgba(90, 115, 255, 0.15), rgba(90, 115, 255, 0.05));
    border: 2px solid rgba(90, 115, 255, 0.4);
}

.withdraw-btn .icon {
    fill: #5a73ff;
}

.mobile-payment-btn:hover {
    transform: translateY(-3px);
}

.deposit-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.withdraw-btn:hover {
    background: linear-gradient(135deg, rgba(90, 115, 255, 0.25), rgba(90, 115, 255, 0.1));
    box-shadow: 0 4px 15px rgba(90, 115, 255, 0.3);
}

@media (max-width: 768px) {
    .mobile-payment-actions {
        display: block;
    }
}

@media (max-width: 576px) {
    .mobile-payment-buttons {
        padding: 0 10px;
        gap: 8px;
    }
    
    .mobile-payment-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .mobile-payment-btn .icon {
        width: 20px;
        height: 20px;
        margin-bottom: 4px;
    }
}

/* ============================================ */
/* БЛОК ПРОВАЙДЕРОВ - ПОЛНАЯ АДАПТАЦИЯ */
/* ============================================ */

#providerList {
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
    background: rgba(10, 14, 35, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

/* Космический фон */
#providerList::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(100, 149, 237, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.casino-set.casino-provider {
    width: auto;
    margin: 0;
    padding: 14px 16px;
    background: rgba(15, 20, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Тонкое свечение при hover */
.casino-set.casino-provider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
    pointer-events: none;
}

.casino-set.casino-provider:hover::after {
    width: 200%;
    height: 200%;
}

.casino-set.casino-provider span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.casino-set.casino-provider:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(20, 25, 50, 0.5);
    transform: translateY(-2px);
}

.casino-set.casino-provider:hover span {
    color: rgba(255, 255, 255, 0.95);
}

/* Активное состояние */
.casino-set.casino-provider.active {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.casino-set.casino-provider.active span {
    color: #d4af37;
    font-weight: 600;
}

/* Кнопка "Все игры" - занимает обе колонки */
.casino-set.casino-provider[data-provider="all"] {
    grid-column: span 2;
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.casino-set.casino-provider[data-provider="all"] span {
    color: rgba(212, 175, 55, 0.9);
    font-weight: 600;
}

.casino-set.casino-provider[data-provider="all"]:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

/* ============================================ */
/* DESKTOP - СРЕДНИЕ ЭКРАНЫ (992px - 1199px) */
/* ============================================ */

@media (min-width: 992px) and (max-width: 1199px) {
    #providerList {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 18px;
    }
    
    .casino-set.casino-provider {
        padding: 15px 18px;
    }
    
    .casino-set.casino-provider span {
        font-size: 14px;
    }
    
    .casino-set.casino-provider[data-provider="all"] {
        grid-column: span 3;
    }
}

/* ============================================ */
/* DESKTOP - БОЛЬШИЕ ЭКРАНЫ (1200px - 1399px) */
/* ============================================ */

@media (min-width: 1200px) and (max-width: 1399px) {
    #providerList {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        padding: 20px;
    }
    
    .casino-set.casino-provider {
        padding: 16px 20px;
    }
    
    .casino-set.casino-provider span {
        font-size: 15px;
    }
    
    .casino-set.casino-provider[data-provider="all"] {
        grid-column: span 2;
    }
}

/* ============================================ */
/* DESKTOP - ОЧЕНЬ БОЛЬШИЕ ЭКРАНЫ (1400px+) */
/* ============================================ */

@media (min-width: 1400px) {
    #providerList {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
        padding: 24px;
        border-radius: 14px;
    }
    
    .casino-set.casino-provider {
        padding: 18px 22px;
    }
    
    .casino-set.casino-provider span {
        font-size: 15px;
        letter-spacing: 0.6px;
    }
    
    .casino-set.casino-provider[data-provider="all"] {
        grid-column: span 2;
    }
    
    /* Усиленные эффекты для больших экранов */
    .casino-set.casino-provider:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
    }
}

/* ============================================ */
/* DESKTOP - УЛЬТРА ШИРОКИЕ ЭКРАНЫ (1920px+) */
/* ============================================ */

@media (min-width: 1920px) {
    #providerList {
        grid-template-columns: repeat(6, 1fr);
        gap: 18px;
        padding: 28px;
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .casino-set.casino-provider {
        padding: 20px 24px;
    }
    
    .casino-set.casino-provider span {
        font-size: 16px;
    }
    
    .casino-set.casino-provider[data-provider="all"] {
        grid-column: span 2;
    }
}

/* ============================================ */
/* ПЛАНШЕТЫ (768px - 991px) */
/* ============================================ */

@media (min-width: 768px) and (max-width: 991px) {
    #providerList {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 14px;
    }
    
    .casino-set.casino-provider {
        padding: 13px 16px;
    }
    
    .casino-set.casino-provider span {
        font-size: 13px;
    }
    
    .casino-set.casino-provider[data-provider="all"] {
        grid-column: span 3;
    }
}

/* ============================================ */
/* МОБИЛЬНЫЕ УСТРОЙСТВА (481px - 767px) */
/* ============================================ */

@media (min-width: 481px) and (max-width: 767px) {
    #providerList {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px;
        gap: 8px;
    }
    
    .casino-set.casino-provider {
        padding: 12px 14px;
    }
    
    .casino-set.casino-provider span {
        font-size: 13px;
    }
    
    .casino-set.casino-provider[data-provider="all"] {
        grid-column: span 2;
    }
}

/* ============================================ */
/* МАЛЕНЬКИЕ ЭКРАНЫ (361px - 480px) */
/* ============================================ */

@media (min-width: 361px) and (max-width: 480px) {
    #providerList {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px;
        gap: 7px;
    }
    
    .casino-set.casino-provider {
        padding: 11px 12px;
    }
    
    .casino-set.casino-provider span {
        font-size: 12px;
    }
    
    .casino-set.casino-provider[data-provider="all"] {
        grid-column: span 2;
    }
}

/* ============================================ */
/* ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ (до 360px) */
/* ============================================ */

@media (max-width: 360px) {
    #providerList {
        grid-template-columns: repeat(2, 1fr);
        padding: 8px;
        gap: 6px;
    }
    
    .casino-set.casino-provider {
        padding: 10px 10px;
    }
    
    .casino-set.casino-provider span {
        font-size: 11px;
        letter-spacing: 0.2px;
    }
    
    .casino-set.casino-provider[data-provider="all"] {
        grid-column: span 2;
    }
}

/* ============================================ */
/* УЛУЧШЕНИЕ TOUCH ИНТЕРФЕЙСА */
/* ============================================ */

@media (hover: none) and (pointer: coarse) {
    .casino-set.casino-provider {
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.1);
    }
    
    .casino-set.casino-provider:active {
        background: rgba(212, 175, 55, 0.12);
        transform: scale(0.98);
    }
    
    .casino-set.casino-provider::after {
        display: none;
    }
    
    .casino-set.casino-provider:hover {
        transform: none;
    }
}

/* ============================================ */
/* DESKTOP HOVER ЭФФЕКТЫ */
/* ============================================ */

@media (hover: hover) and (pointer: fine) {
    /* Звездные частицы при hover */
    .casino-set.casino-provider::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
            radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.2), transparent),
            radial-gradient(1px 1px at 80% 20%, rgba(212, 175, 55, 0.3), transparent);
        background-size: 100% 100%;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .casino-set.casino-provider:hover::before {
        opacity: 1;
    }
    
    /* Улучшенная тень при hover на больших экранах */
    @media (min-width: 1200px) {
        .casino-set.casino-provider:hover {
            box-shadow: 
                0 4px 15px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(212, 175, 55, 0.1);
        }
    }
}

/* ============================================ */
/* АНИМАЦИИ */
/* ============================================ */

/* Плавное появление элементов */
.casino-set.casino-provider {
    animation: fadeIn 0.5s ease-out backwards;
}

.casino-set.casino-provider:nth-child(1) { animation-delay: 0.05s; }
.casino-set.casino-provider:nth-child(2) { animation-delay: 0.08s; }
.casino-set.casino-provider:nth-child(3) { animation-delay: 0.11s; }
.casino-set.casino-provider:nth-child(4) { animation-delay: 0.14s; }
.casino-set.casino-provider:nth-child(5) { animation-delay: 0.17s; }
.casino-set.casino-provider:nth-child(6) { animation-delay: 0.20s; }
.casino-set.casino-provider:nth-child(7) { animation-delay: 0.23s; }
.casino-set.casino-provider:nth-child(8) { animation-delay: 0.26s; }
.casino-set.casino-provider:nth-child(9) { animation-delay: 0.29s; }
.casino-set.casino-provider:nth-child(10) { animation-delay: 0.32s; }

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

/* Тонкая пульсация активного элемента */
.casino-set.casino-provider.active {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    }
}

/* ============================================ */
/* ОПТИМИЗАЦИЯ ДЛЯ ПРОИЗВОДИТЕЛЬНОСТИ */
/* ============================================ */

/* Отключаем тяжелые эффекты на слабых устройствах */
@media (prefers-reduced-motion: reduce) {
    .casino-set.casino-provider {
        animation: none;
        transition: none;
    }
    
    .casino-set.casino-provider:hover {
        transform: none;
    }
    
    .casino-set.casino-provider::after,
    .casino-set.casino-provider::before {
        display: none;
    }
}