@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html,
body {
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    background-color: rgb(26, 26, 26);
    color: white;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

@media (max-width: 900px) {
    body {
        font-size: 16px;
    }
    .navigation {
        flex-direction: column;
        gap: 10px;
    }
    .header {
        padding: 35px 0;
        display: flex;
        justify-content: center;
    }
    .main-content {
        margin-top: 80px !important;
    }

    
}
body::-webkit-scrollbar {
    width: 10px;
    background-color: white;
}
body::-webkit-scrollbar-thumb {
    background-color: silver;
}
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px white;
    background-color: transparent;
}
.header {
    width: 100%;
    padding: 10px 20px;
    background: black;
    transition: top 0.3s;
    z-index: 1000;
    max-width: 1920px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.logo-img {
    width: 140px;
    height: auto;
    position: relative;
    z-index: 10000;
}
.header.hidden {
    transform: translateY(-120%); /* Смещение заголовка вверх при скрытии */
}
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.nav-item {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 3px;
}

.nav-item.green-link:hover{
    .nav-icon{
        fill: #00e90c;

        transition: fill .2s linear;
    }

    .nav-link{
        color: #00e90c;
    }
}

.nav-item.blue-link:hover{
    .nav-icon{
        fill: #0037ff;

        transition: fill .2s linear;
    }

    .nav-link{
        color: #0037ff;
    }
}

.nav-item.red-link:hover{
    .nav-icon{
        fill: #ff0000;

        transition: fill .2s linear;
    }

    .nav-link{
        color: #ff0000;
    }
}

.nav-item.yellow-link:hover{
    .nav-icon{
        fill: #d4ff00;

        transition: fill .2s linear;
    }

    .nav-link{
        color: #d4ff00;
    }
}

.nav-item.purpl-link:hover{
    .nav-icon{
        fill: #d900ff;

        transition: fill .2s linear;
    }

    .nav-link{
        color: #d900ff;
    }
}

.nav-item.orange-link:hover{
    .nav-icon{
        fill: #ffae00;

        transition: fill .2s linear;
    }

    .nav-link{
        color: #ffae00;
    }
}

.nav-item.pink-link:hover{
    .nav-icon{
        fill: #ff00ea;

        transition: fill .2s linear;
    }

    .nav-link{
        color: #ff00ea;
    }
}

.nav-link {
    font-weight: 600;
    text-decoration: none;
    color: #a6bebd;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
}

.dank-ky-logo {
  font-weight: 600;
  color: white;
  font-size: 16px;
  border: 2px solid white;
  padding: 10px 15px;
  border-radius: 8px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.dank-ky-logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -5%;
    width: 10%;
    height: 100%;
    background: radial-gradient(
            ellipse at center,
            rgba(255,255,255,.4) 0%,
            rgba(255,255,255,.9) 40%,
            rgba(255,255,255,.4) 100%
    );
    filter: blur(3px);
    transform: skewX(-25deg)
    translateY(-50%);
    animation: shine 1.5s ease-in-out infinite;
    animation-direction: alternate;
    pointer-events: none;
    z-index: 1;
}

.dank-nhap-logo {
  color: black;
  padding: 10px 15px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  background-color: orangered;
  border: 2px solid orangered;
    position: relative;
}

.dank-nhap-logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -5%;
    width: 10%;
    height: 100%;
    background: radial-gradient(
            ellipse at center,
            rgba(255,255,255,.4) 0%,
            rgba(255,255,255,.9) 40%,
            rgba(255,255,255,.4) 100%
    );
    filter: blur(3px);
    transform: skewX(-25deg)
    translateY(-50%);
    animation: shine 1.5s ease-in-out infinite;
    animation-direction: alternate;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 550px) {
    .nav-item {
        margin-left: 5px;
        font-size: 14px;
    }
    .nav-link {
        padding: 2px 5px;
    }
}

.nav-list.show {
    max-height: 100%;
    opacity: 1;
    right: 0;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.burger-line {
    width: 30px;
    height: 4px;
    background-color: rgb(255, 255, 255);
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.navigation {
    margin: 0 auto;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    gap: 10px;
}



@media (max-width: 1420px) {
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }
    .nav-list {
        display: flex;
    }

    .nav-item:first-child {
        margin-top: 20px;
    }

    .burger-menu {
        display: flex;
        margin-right: 15px;
    }
    .navigation {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

.main-content {
    margin-top: 50px;
}
@media (max-width: 768px) {
    .main-content {
        margin-top: 52px;
    }
    .navigation {
        justify-content: space-between;
    }
}

.nav-list {
    display: flex;
    gap: 10px;
    list-style: none;
}

.nav-item {
    position: relative;
}


@media (max-width: 1050px) {
  .nav-list {
    gap: 4px;
  }
  .nav-link {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  .nav-list {
    margin-bottom: 15px;
  }

}

@media (max-width: 768px) {
  .nav-link {
    font-size: 11px;
  }

}

@media (max-width: 1420px) {
    .burger-menu {
        display: flex;
        z-index: 10000;
    }
    .nav-list {
        position: fixed; /* Фиксируем меню */
        top: 0;
        right: -100%; /* Скрываем меню за пределами экрана */
        width: 100%; /* Ширина меню на весь экран */
        height: 100%; /* Высота на весь экран */
        background-color: #313131;
        transition: right 0.3s ease; /* Анимация появления */
        z-index: 999; /* Указываем z-index */
        display: flex;
        flex-direction: column; /* Выравнивание пунктов меню по вертикали */
        justify-content: space-evenly;
        align-items: center;
    }

    /* Когда меню активно, смещаем его в видимую область экрана */
    .nav-list.show {
        right: 0; /* Меню появляется */
    }

    /* Стилизация навигационных ссылок в меню */
    .nav-link {
        color: #ffffff; /* Цвет текста для навигации */
        padding: 20px; /* Отступы вокруг пунктов меню */
        border-bottom: 1px solid black; /* Разделители между пунктами */
    }
}

@media (max-width:426px) {
    
    .burger-line{
        background-color: rgb(255, 255, 255);
    }
    .main-content{
        margin-top: 0;
    }
    .slider-header{
        margin-top: 0;
    }
    .nav-list{
        top: 0;
    }
    
}

.burger-menu.hidden {
    display: none; /* Скрыть бургер-меню, когда класс "hidden" активен */
}

.footer {
  background-color: rgb(26, 26, 26);
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid silver;
}

.footer-content {
    display: flex;
    flex-direction: column; /* Вертикальная компоновка для мобильных устройств */
    align-items: center; /* Центрирование содержимого */
    text-align: center; /* Центрирование текста */
}

.footer-details {
    margin-bottom: 15px; /* Отступ снизу */
}

.footer-location,
.footer-phone,
.footer-email {
    display: block; /* Чтобы ссылки занимали всю ширину */
    color: #666; /* Цвет для текста */
    text-decoration: none; /* Убираем подчеркивание */
    font-size: 16px; /* Размер шрифта */
    transition: color 0.3s ease;
}

.footer-location i,
.footer-phone i,
.footer-email i {
    margin-right: 8px; /* Отступ между иконкой и текстом */
}

.footer-links {
    margin-top: 10px; /* Отступ сверху */
}

.footer-links a {
    color: #2b8eff; /* Цвет ссылок */
    text-decoration: none; /* Убираем подчеркивание */
    margin: 0 10px; /* Горизонтальный отступ */
    transition: color 0.3s ease;
}

.footer-rights {
    font-size: 18px;
    padding: 0 15px;
    text-align: center;
    color: #ffffff; /* Цвет текста для прав */
    margin-top: 10px; /* Отступ сверху */
}

/* Адаптивные стили */
@media (min-width: 600px) {
    .footer-content {
        flex-direction: row; /* Горизонтальная компоновка на больших экранах */
        justify-content: space-between; /* Распределение пространства между элементами */
        align-items: flex-start; /* Выравнивание по верхнему краю */
        max-width: 1200px; /* Максимальная ширина контейнера */
        margin: 0 auto; /* Центрирование контейнера */
        padding: 20px; /* Дополнительные отступы */
    }
    .footer-details {
        margin-bottom: 0; /* Убираем отступ снизу */
    }
    .footer-links {
        margin-top: 0; /* Убираем отступ сверху */
    }
}

.header-button-container {
    background-color: #2b00a3;
    display: flex;
    justify-content: flex-end; /* Выравнивание по правому краю */
    align-items: center;
    gap: 10px; /* Отступ между кнопками */
    padding: 6px;
    padding-right: 30px;
    z-index: 1000;
}

.header-button {
    text-decoration: none; /* Убираем подчеркивание */
    color: white; /* Цвет текста */
    border-radius: 5px; /* Закругление углов */
    transition: color 0.3s; /* Плавный переход для фона */
}

.header-button:hover {
    color: silver;
}

.header-separator {
    margin: 0 10px; /* Отступ для разделителя */
    color: #ffffff; /* Цвет разделителя */
}

/* Адаптивные стили */
@media (max-width: 600px) {
    .header-button {
        padding: 8px 12px; /* Уменьшаем отступы на маленьких экранах */
    }
}

.slider-header {
    top: -100px;
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.slider-header-content {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-header {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-size: 32px;
    font-weight: 900;
    background: rgba(4, 4, 4, 0.405);
    width: 60%;
}

.header-btn-app {
    text-decoration: none;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background: linear-gradient(0deg, #3d4b07, #c7d534);
    border: 1px solid #e0ff30 !important;
        border-radius: 20px;
    transition: background-color 0.3s ease;
}

.slide-header {
    display: none; /* Hide all slides by default */
}

.active-header {
    display: block; /* Show the active slide */
}
@media (max-width:950px) {
    .header-btn-app {
        font-size: 14px;
    }
    .slide-header-text {
        font-size: 22px;
    }
}

@media (max-width:768px) {
    .header-btn-app {
        font-size: 10px;
    }
}

@media (max-width:600px) {
    .header-btn-app {
        font-size: 8px;
    }
}
@media (max-width:500px) {
    .slide-header-text{
        width: 90%;
    }
}


.WIN-image-1,
  .WIN-image-2,
  .WIN-image-3,
  .WIN-image-4,
  .WIN-image-5 {
    width: 100%;

    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  @media (max-width: 1200px) {
    .WIN-image-1,
  .WIN-image-2,
  .WIN-image-3,
  .WIN-image-4,
  .WIN-image-5{
    height: auto;
  }
    
  }

  /* Стили для первой секции */
  .WIN-section-1 {
    /* background: rgba(255, 255, 255, 0.062); */
        color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    max-width: 90%;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .WIN-title-1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffcc00;
    text-transform: uppercase;
  }

  .WIN-subtitle-1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffcc00;
  }

  .WIN-description-1 {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
  }

  .WIN-button-1 {
    background: linear-gradient(0deg, #3d4b07, #c7d534);
    border: 1px solid #e0ff30 !important;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .WIN-button-1:hover {
    background: linear-gradient(0deg, #3d4b07, #eaff00);
    border: 1px solid #e0ff30 !important;    transform: scale(1.05);
  }

  /* Стили для второй секции */
  .WIN-section-2 {
    /* background: rgba(255, 255, 255, 0.062); */
        color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    max-width: 90%;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .WIN-title-2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffcc00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .WIN-subtitle-2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
  }

  .WIN-description-2 {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
  }

  .WIN-button-2 {
    background: linear-gradient(0deg, #3d4b07, #c7d534);
    border: 1px solid #e0ff30 !important;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .WIN-button-2:hover {
    background: linear-gradient(0deg, #3d4b07, #eaff00);
    border: 1px solid #e0ff30 !important;   transform: translateY(-5px);
  }

  /* Стили для третьей секции */
  .WIN-section-3 {
    /* background: rgba(255, 255, 255, 0.062); */
        color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    max-width: 90%;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .WIN-title-3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffd700;
    text-transform: uppercase;
  }

  .WIN-subtitle-3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
  }

  .WIN-description-3 {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
  }

  .WIN-button-3 {
    background: linear-gradient(0deg, #3d4b07, #c7d534);
    border: 1px solid #e0ff30 !important;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .WIN-button-3:hover {
    background: linear-gradient(0deg, #3d4b07, #eaff00);
    border: 1px solid #e0ff30 !important;   transform: translateY(-5px);
  }

  /* Стили для четвертой секции */
  .WIN-section-4 {
    /* background: rgba(255, 255, 255, 0.062); */
        color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    max-width: 90%;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .WIN-title-4 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffd700;
    text-transform: uppercase;
  }

  .WIN-subtitle-4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
  }

  .WIN-description-4 {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
  }

  .WIN-button-4 {
    background: linear-gradient(0deg, #3d4b07, #c7d534);
    border: 1px solid #e0ff30 !important;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .WIN-button-4:hover {
    background: linear-gradient(0deg, #3d4b07, #eaff00);
    border: 1px solid #e0ff30 !important;    transform: translateY(-5px);
  }

  /* Стили для пятой секции */
  .WIN-section-5 {
    /* background: rgba(255, 255, 255, 0.062); */
        color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    max-width: 90%;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .WIN-title-5 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffd700;
    text-transform: uppercase;
  }

  .WIN-subtitle-5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700; /* Золотой цвет для подзаголовка */
  }

  .WIN-description-5 {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0; /* Светло-серый цвет текста */
  }

  .WIN-button-5 {
    background: linear-gradient(0deg, #3d4b07, #c7d534);
    border: 1px solid #e0ff30 !important;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .WIN-button-5:hover {
    background: linear-gradient(0deg, #3d4b07, #eaff00);
    border: 1px solid #e0ff30 !important;  transform: translateY(-5px); /* Подъем кнопки */
  }

  @media (max-width: 768px) {
    .WIN-title-5 {
      font-size: 28px;
    }
    .WIN-subtitle-5 {
      font-size: 20px;
    }
    .WIN-description-5 {
      font-size: 14px;
    }
    .WIN-button-5 {
      padding: 12px 24px;
      font-size: 16px;
    }
  }

  .marquee-container {
    background: #00000080;
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.jackpot-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.062);
    color: #fff;
  text-align: center;
  border-radius: 20px;
  margin: 20px;
}
.jackpot-container, .jackpot-info {
  max-width: 800px;
  margin-bottom: 20px;
}
.jackpot-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffd700;
}
.jackpot-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
}
.jackpot-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.jackpot-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(0deg, #3d4b07, #c7d534);
  border: 1px solid #e0ff30 !important;  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
  margin-bottom: 20px;
}
.jackpot-button:hover {
  background: linear-gradient(0deg, #3d4b07, #eaff00);
  border: 1px solid #e0ff30 !important;    transform: scale(1.05);
color: white;
}






.board-game-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.062);
    color: #fff;
  text-align: center;
  border-radius: 20px;
  margin: 20px;

}

.board-game-container, .board-game-info {
  max-width: 800px;
  margin-bottom: 20px;
}

.board-game-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffd700;
}

.board-game-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
}

.board-game-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.board-game-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(0deg, #3d4b07, #c7d534);
  border: 1px solid #e0ff30 !important;  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
  margin-bottom: 20px;
}

.board-game-button:hover {
  background: linear-gradient(0deg, #3d4b07, #eaff00);
  border: 1px solid #e0ff30 !important;    transform: scale(1.05);
color: #fff;
}


.sports-betting-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, 0.062);

  border-radius: 20px;

  margin: 20px;

}

.sports-betting-container, .sports-betting-info {
  margin-bottom: 20px;
}

.sports-betting-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffd700;
}

.sports-betting-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.sports-betting-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(0deg, #3d4b07, #c7d534);
  border: 1px solid #e0ff30 !important;  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
}

.sports-betting-button:hover {
  background: linear-gradient(0deg, #3d4b07, #eaff00);
  border: 1px solid #e0ff30 !important;    transform: scale(1.05);
color: #fff;
}


.lottery-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  color: #fff;
  text-align: center;

background: rgba(255, 255, 255, 0.062);

  border-radius: 20px;

  margin: 20px;

}

.lottery-container {
  margin-bottom: 20px;
}

.lottery-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffd700;
}

.lottery-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.lottery-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(0deg, #3d4b07, #c7d534);
  border: 1px solid #e0ff30 !important;  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
  margin-bottom: 20px;
}

.lottery-button:hover {
  background: linear-gradient(0deg, #3d4b07, #eaff00);
  border: 1px solid #e0ff30 !important;    transform: scale(1.05);
color: #fff;
}


.fish-shooting-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  color: #fff;
  text-align: center;

  background: rgba(255, 255, 255, 0.062);
  border-radius: 20px;

  margin: 20px;


}

.fish-shooting-container {
  margin-bottom: 20px;
}

.fish-shooting-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffd700;
}

.fish-shooting-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.fish-shooting-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(0deg, #3d4b07, #c7d534);
  border: 1px solid #e0ff30 !important;  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
  margin-bottom: 10px;
}

.fish-shooting-button:hover {
  background: linear-gradient(0deg, #3d4b07, #eaff00);
  border: 1px solid #e0ff30 !important;    transform: scale(1.05);
color: #fff;
}



.casino-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  color: #fff;
  text-align: center;

  background: rgba(255, 255, 255, 0.062);
  border-radius: 20px;

  margin: 20px;

}

.casino-container {
  margin-bottom: 20px;
}

.casino-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffd700;
}

.casino-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.casino-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(0deg, #3d4b07, #c7d534);
  border: 1px solid #e0ff30 !important;  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
  margin-bottom: 20px;
}

.casino-button:hover {
  background: linear-gradient(0deg, #3d4b07, #eaff00);
  border: 1px solid #e0ff30 !important;    transform: scale(1.05);
color: #fff;
}


.login-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, 0.062);
  border-radius: 20px;

  margin: 20px;

}

.login-container {
  margin-bottom: 20px;
}

.login-title {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffd700;
}

.login-subtitle {
  font-size: 24px;
  margin-bottom: 15px;
}

.login-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.login-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(0deg, #3d4b07, #c7d534);
  border: 1px solid #e0ff30 !important;  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 30px;
}

.login-button:hover {
  background: linear-gradient(0deg, #3d4b07, #eaff00);
  border: 1px solid #e0ff30 !important;    transform: scale(1.05);
color: white;
}

@media (max-width:426px) {
  [class^="WIN-button"]{
    padding: 15px 15px;

  }
  .header-btn-app{
    padding: 8px 14px;
  }
  .slide-header-text{
    width: 95%;
  }
  .WIN-button-5{
    padding: 6px 12px;
  }
  
}

.nav-button {
  background: none; /* Убираем фон */
  border: none; /* Убираем рамку */
  padding: 0; /* Убираем отступы */
  cursor: pointer; /* Изменяем курсор на указатель */
}



[class*="section"] {
  padding: 30px;

}
@media (max-width:1000px) {
  [class*="section"] {
    padding: 30px;
  
  }
  
}

.link-hiden {
  display: none;
}

.col-oran {
  color: orangered;
}








@media (min-width: 1025px) {
    .green-link:hover {
      color: #00e90c;
      border-bottom: 2px solid #00e90c;
    }
    .blue-link:hover {
      color: #0037ff;
      border-bottom: 2px solid #0037ff;
    }
    .red-link:hover{
      color: #ff0000;
      border-bottom: 2px solid #ff0000;
    }
    .yellow-link:hover{
      color: #d4ff00;
      border-bottom: 2px solid #d4ff00;
    }
    .purpl-link:hover{
      color: #d900ff;
      border-bottom: 2px solid #d900ff;
    }
    .orange-link:hover{
      color: #ffae00;
      border-bottom: 2px solid #ffae00;
    }
    .pink-link:hover{
      color: #ff00ea;
      border-bottom: 2px solid #ff00ea;
    }
    .dank-ky-logo:hover {
      background-color: #b0b0b075;
    }
    .dank-nhap-logo:hover {
      background-color: rgb(180, 48, 0);
      border: 2px solid rgb(180, 48, 0);
    }
}

@media (max-width: 790px) {
    .slide-header-text{
        width: 95%;
    }
    .dank-nhap-logo{
        display: inline-block;
    }
}

@media (max-width: 482px) {
    .dank-nhap-logo{
        margin-top: 20px;
    }
}

@media (max-width: 380px) {
    .slide-header-text{
        font-size: 18px;
    }
}


@keyframes shine {
    0% {
        left: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        left: 90%;
        opacity: 0;
    }
}

.nav-icon {
    width: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    fill: white;
}