@font-face {
  font-family: "Coolvetica";
  src: url("../fonts/coolvetica-bold.ttf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Coolvetica";
  src: url("../fonts/coolvetica-bold.ttf") format("opentype");
  font-weight: 700;
}
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Coolvetica", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(to right, #14010e, #ab0264),
              linear-gradient(to bottom, #300223, #50177a);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  z-index: -2;
}
html {
  overflow-y: hidden;
}
body {
  margin-top: 72px; 
}
*, *::before, *::after {
  box-sizing: inherit;
}
/* Прелоадер */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #14010e; /* тёмный фон, можно менять */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader {
  text-align: center;
  color: #ff66cc;
  font-family: 'Oswald', sans-serif;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(255,102,204,0.3);
  border-top-color: #ff66cc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

/* Анимация вращения */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader p {
  margin-top: 20px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 9999;
  display: flex;          
  align-items: center;    
  justify-content: flex-start;
  background: rgba(0, 0, 0, 0.3);
}
.top-logo {
  margin-left: 20px;
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #ff66cc;
}
.top-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ff66cc;
}
.white-letter {
  color: #fff;
}
.top-sections {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.top-sections ul {
  display: flex;
  align-items: center;
  gap: 54px;
  margin: 0;
  padding: 0;
  list-style: none; /* убираем точки */
}
.top-sections li {
  list-style: none; /* дополнительно на всякий случай */
}
.top-sections a {
  text-decoration: none;
  color: #ff66cc;
  font-size: 1.2rem;
  white-space: nowrap;
  transition: color 0.3s;
}
.top-sections a:hover {
  color: #fff;
}
.top-sections a.current {
  color: #fff;
}
.left-side-bar {
  position: absolute;
  top: 72px;
  left: 30px;
  width: 160px; /* было 180px */
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px;
  background: transparent;
  z-index: 10;
}
.balance {
  background-color: #fff;
  border-radius: 24px;
  color: #ff66cc;
  font-size: 1.8rem;
  padding: 12px 48px;
  margin-bottom: 12px;
}
.lang-signin {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 24px;
}
.btn-lang,
.btn-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background-color: #fff;
  border-radius: 24px;
  color: #ff66cc;
  cursor: pointer;
  padding: 10px 24px;
  font-size: 1rem;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-lang i {
  margin-left: 10px;
}
.btn-lang:hover,
.btn-signin:hover {
  background-color: #ff66cc;
  color: #fff;
}
.lang-wrapper {
  position: relative;
}
.arrow-icon {
  margin-left: 6px;
  transition: transform 0.3s;
}
.dropdown-langs {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background-color: #ebebeb;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 9.6px 19.2px rgba(0,0,0,0.2);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  display: none;
}
.dropdown-langs a {
  display: block;
  text-decoration: none;
  color: #ff66cc;
  font-size: 1rem;
  text-align: center;
  padding: 9.6px 0;
  transition: background-color 0.3s, color 0.3s;
}
.dropdown-langs a:hover {
  background-color: #ff66cc;
  color: #fff;
}
.search-box {
  width: 100%;
  background-color: #fff;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 24px;
  margin-top: 12px;
  padding: 9.6px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.search-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10.8px;
  text-decoration: none;
  color: #ff66cc;
  background-color: #fff;
  border-radius: 24px;
  font-size: 1rem;
  padding: 7.2px 16px;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.search-link:hover {
  background-color: #ff66cc;
  color: #fff;
}
.search-link i {
  color: inherit;
}
.nav-menu {
  width: 100%;
  background-color: #fff;
  border-radius: 24px;
  margin-bottom: 24px;
  padding: 9.6px 0;
}
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu li {
  text-align: center;
  margin: 12px 0;
}
.nav-menu a {
  text-decoration: none;
  color: #ff66cc;
  font-size: 0.9rem;
  padding: 4.8px 10.4px;
  border-radius: 24px;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.nav-menu a:hover {
  background-color: #ff66cc;
  color: #fff;
}
.support-btn {
  position: fixed;
  bottom: 20px;
  right: 40px;
  border: none;
  outline: none;
  background-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ff66cc;
  font-size: 2rem;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  -webkit-box-shadow: 0px 2px 7px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 2px 7px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 2px 7px 0px rgba(0,0,0,0.75);
  z-index: 13;
}
.support-btn:hover {
  background-color: #ff66cc;
  color: #fff;
  box-shadow: 0 0 10px rgba(255,102,204,0.7);
}
.balanceLink{
  color: #ff66cc;
  text-decoration: none;
}
.carousel-section {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bottom-section {
  width: 100%;
  min-height: 120px;
  margin-top: 30px;
}
#rightWinners {
  position: absolute;
  top: 100px;
  right: 30px;
  width: 170px; /* было 180px */
  height: 600px;  /* фиксированная высота */
  background-color: #fafafa; 
  border-radius: 24px;
  color: #ff66cc;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: hidden;
  box-sizing: border-box;
  overflow-x: hidden;
}
#rightWinners::-webkit-scrollbar {
  width: 8px;
  background-color: #e6e6e6;
  border-radius: 8px;
}
#rightWinners::-webkit-scrollbar-thumb {
  background-color: #ff66cc;
  border-radius: 8px;
}
/* Заголовок остаётся наверху */
.winners-title {
  font-size: 1.15rem;
  text-align: center;
  color: #ff66cc;
  font-weight: 700;
  position: relative;
  z-index: 2;
  content: "WON JUST NOW";
}
.winners-title::before {
  content: "WON JUST NOW";
}
.winner-item {
  display: flex;               /* выстраиваем элементы в строку */
  align-items: center;         /* по вертикали */
  background-color: #eaeaea;
  border-radius: 16px;
  height: 70px;
  overflow: hidden;
  overflow-x: hidden;
  padding: 10px;               /* отступы внутри ячейки */
  transition: all 1s ease;
}
.winner-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.winner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.winner-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@keyframes shimmer {
  0% { left: -150px; }
  100% { left: 100%; }
}
.winner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  width: 150px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 2s infinite;
}
.winner-nick {
  text-align: center;
  font-size: 1.2rem;
  color: #333;
}
.winner-amount {
  text-align: center;
  font-size: 1.2rem;
  color: #ff66cc;
}
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0; 
  right: 0;
  height: 60px;
  background: linear-gradient(to right, #ff66cc, #d2007a);
  color: #fff;
  z-index: 9999;
  padding: 0 15px;
  box-sizing: border-box;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.mobile-header-left {
  display: flex;
  align-items: center;
}
.mobile-logo {
  font-size: 1.8rem;
}
.mobile-logo a{
  text-decoration: none;
  color: white;
}
.mobile-header-right {
  display: flex;
  align-items: center;
}
.mobile-burger {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: auto;
}
.mobile-balance-block {
  background-color: #fff;
  color: #ff66cc;
  border-radius: 24px;
  font-size: 1.5rem;
  padding: 6px 14px;
  white-space: nowrap;
  margin-left: 5px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.show {
  display: block;
  opacity: 1;
}
.mobile-menu.show::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.mobile-menu-content {
  background-color: #ff86d0;
  padding: 20px;
  margin: 40px;
  border-radius: 24px;
  position: relative;
  top: 30px;
  transition: transform 0.3s ease;
  max-height: calc(100% - 60px);
  overflow-y: auto;
}
.mobile-menu-content::-webkit-scrollbar {
  width: 8px;
  background: #ffe5f2;
  border-radius: 4px;
}
.mobile-menu-content::-webkit-scrollbar-thumb {
  background: #ff66cc;
  border-radius: 4px;
}
.mobile-menu-content a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
}
.mobile-menu-content a:hover,
.mobile-menu-content a:active {
  text-decoration: underline;
}
.btn-signin-mobile {
  background-color: #fff;
  color: #ff66cc;
  border: none;
  border-radius: 24px;
  font-size: 1.5rem;
  padding: 10px 20px;
  width: 100%;
  margin-bottom: 20px;
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.btn-signin-mobile:hover {
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
}
.mobile-accordion {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 24px;
  overflow: hidden;
}
.accordion-title {
  padding: 10px 15px;
  font-size: 1.5rem;
  color: #ff66cc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s;
}
.accordion-title:hover {
  background-color: #ffe6f3;
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}
.accordion-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.accordion-panel li {
  text-align: left;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}
.accordion-panel li a {
  text-decoration: none;
  color: #ff66cc;
  font-size: 1.5rem;
}
.accordion-panel li a:hover,
.accordion-panel li a:active {
  text-decoration: underline;
}
.support-btn-mobile,
.lang-btn-mobile {
  background-color: #fff;
  color: #ff66cc;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 auto;
  font-size: 1.4rem;
  transition: box-shadow 0.3s;
}
.support-btn-mobile:hover,
.lang-btn-mobile:hover {
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.mobile-langs-dropdown {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff86d0;
  border-radius: 24px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  padding: 10px;
  display: none;
}
.mobile-langs-dropdown.show {
  display: block;
}
.mobile-langs-dropdown a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding: 6px 0;
  transition: background-color 0.3s;
}
.mobile-langs-dropdown a:hover {
  background-color: #ff66cc;
  text-decoration: underline;
}
@media (max-width: 1400px) {
  .mobile-header {
    display: flex;
  }
  .top-bar,
  .left-side-bar,
  #rightWinners {
    display: none;
  }
  .carousel-slide {
    min-width: 100%;
  }
  .carousel-section {
    margin-top: 30px;
  }
}
@media (min-width: 1401px) {
  .mobile-header,
  .mobile-menu {
    display: none !important;
  }
}
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.3s ease;
}
.search-overlay.active {
  display: flex;
  opacity: 1;
}
.search-modal {
  background-color: #fff;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  align-items: center;
  width: 80%;
  max-width: 600px;
}
.search-modal input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.5rem;
  color: #333;
  padding: 0px;
  width: 80%;
}
.search-modal button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: #ff66cc;
  /* Уменьшаем горизонтальные отступы, чтобы иконка не вылазила за пределы */
  padding: 10px 20px 10px 10px;
  /* Запрещаем кнопке сжиматься, если место ограничено */
  flex-shrink: 0;
}
.mobile-footer-buttons {
  display: flex;
  justify-content: center;
  gap: 20px; /* Add space between buttons */
  margin-top: 20px;
}
.mobile-search-btn {
  background-color: #fff;
  color: #ff66cc;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: box-shadow 0.3s;
  margin: 0 auto; /* Center-align horizontally */
}
.mobile-search-btn:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


.custom-footer {
  width: 850px;               /* чуть больше карусели */
  min-height: 250px;          /* высота не меньше 250px */
  background-color: #fff;
  border-radius: 24px;
  margin-top: 100px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;    /* контент выравнивается по верху */
  padding: 20px;
  box-sizing: border-box;
}

.custom-footer p {
	font-family: Coolvetica;
}

/* Общие стили для колонок футера */
.footer-column {
  flex: 1;
  color: #ff66cc;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

/* Левая колонка: выравнивание по левому краю */
.footer-left {
  text-align: center;
  padding-right: 10px;
}
.footer-left p {
  margin: 0;
  padding: 0;
}

/* Центральная колонка: выравнивание по центру */
.footer-middle {
  text-align: center;
  padding: 0 10px;
}
.footer-middle p {
  margin: 0 0 10px 0;
}

/* Строки с логотипами платежных систем */
.payment-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 5px 0;
}
.payment-row img {
  height: 40px;
  object-fit: contain;
}

/* Правая колонка: выравнивание по центру, контент в столбик */
.footer-right {
  text-align: center;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-right p {
  margin: 0;
}

/* Социальные иконки (выводятся в один ряд) */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1.8rem;
  color: #ff66cc;
}

/* Стили для ссылки LIVE CHAT (голубой текст) */
.live-chat-link {
  color: #00aaff;
  text-decoration: none;
}
.live-chat-link:hover {
  text-decoration: underline;
}

/* Адаптивные стили для экранов меньше 900px */
@media (max-width: 900px) {
  .custom-footer {
    width: 95%;
    flex-direction: column;
    min-height: 250px;  /* не меньше 250px, но может расти */
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .support-btn {
    right: 20px;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    
  }

  .carousel-section {
    margin-top: 1 0px;
  }
  
  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
  
  /* Центрируем содержимое всех колонок */
  .footer-left,
  .footer-middle,
  .footer-right {
    text-align: center;
    padding: 0;
  }
  
  /* Для правой колонки — выстроить ссылки в столбик */
  .footer-right {
    flex-direction: column;
    gap: 10px;
  }
  
  .social-icons {
    justify-content: center;
  }
}
.footer-right a {
  color: #ff66cc !important;
  text-decoration: none !important;
}

.footer-right a:hover {
  text-decoration: underline !important;
}

.social-icons a,
.social-icons a i {
  color: #ff66cc !important;
  text-decoration: none !important;
}
.license {
	color: white;
	margin-top: 5px;
	margin-bottom: 80px;
	margin-left: 40px;
	margin-right: 40px;
	text-align: center;
	font-family: Coolvetica;
	font-size: 10px;
	font-weight: lighter;
}
@media (min-width: 1200px) {
	.license{
		padding-left: 250px;
		padding-right: 250px;
	}
}




.account-item {
  margin-left: auto; 
}

.top-account {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.account-btn {
  color: #ff66cc;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 8px 16px;
  border: 2px solid #ff66cc;
  border-radius: 24px;
  transition: background-color 0.3s, color 0.3s;
}

.account-btn i {
  margin-left: 8px;
}

.account-btn:hover {
  background-color: #ff66cc;
  color: #fff;
}

@media (max-width: 1400px) {
  .top-account {
    display: none;
  }
}
.header-logo-img {
  height: 50px;
  margin-right: 8px;
  vertical-align: middle;
}
.account-link {
  margin-left: auto; /* Выдавливает ссылку вправо */
  margin-right: 20px;
  text-decoration: none;
  color: #ff66cc;
  font-size: 1.4rem; /* Крупнее остальных */
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.account-link i {
  font-size: 1.4rem;
  margin-left: 8px;
}
.account-link:hover {
  color: #fff;
}
@media (max-width: 1200px) {
  .top-sections ul {
    gap: 30px;
  }
}
@media (max-width: 1100px) {
  .top-sections ul {
    gap: 20px;
  }
  .top-sections a {
    font-size: 1rem; 
  }
}
