body {
  font-family: "Inter", "Arial", sans-serif;
  width: 100%;
  height: 100%;
  background: #000;
  font-size: 16px;
  font-weight: 400;
  color: #d2d3d5;
  line-height: normal;
}

@media (max-width: 1023px) {
  body {
    font-size: 14px;
  }
}

body {
  overflow-x: hidden;
}

a {
  color: #facc15;
  transition: all 0.3s ease;
}

a.orange {
  color: #ff4d40;
}

a:hover {
  transform: scale(1.02);
}

button {
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 38px;
  font-weight: 600;
  color: #facc15;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

@media (max-width: 1023px) {
  h1 {
    flex-direction: column;
    align-items: flex-start;
    font-size: 24px;
    gap: 10px;
  }
}

h1 span {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 1023px) {
  h1 span {
    font-size: 20px;
  }
}

h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1023px) {
  h2 {
    font-size: 20px;
  }
}

h2::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url("../img/title-star.png") no-repeat center/contain;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 1023px) {
  h3 {
    font-size: 16px;
  }
}

p {
  line-height: 160%;
}

picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

picture img {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
}

.breadcrumb-wrap {
  border-radius: 10px;
  background: #1b2023;
  margin-top: 10px;
}

.breadcrumb {
  display: flex;
  margin: 0 auto;
  min-height: 49px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding: 0 20px;
}

@media (max-width: 1023px) {
  .breadcrumb {
    font-size: 14px;
  }
}

.breadcrumb li,
.breadcrumb a {
  color: #fff;
}

.breadcrumb li:not(:last-child) {
  position: relative;
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child):after {
  content: ">";
  margin-left: 20px;
  color: #fff;
}

.breadcrumb li:last-child {
  flex: 1;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.5;
}

.float-group {
  position: fixed;
  right: 0;
  top: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.float-group #arrowTop {
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

.float-group #arrowTop img {
  width: 70px;
  height: 70px;
}

@media (max-width: 1023px) {
  .float-group #arrowTop img {
    width: 50px;
    height: 50px;
  }
}

.float-group .hamburger {
  display: none;
}

@media (max-width: 1023px) {
  .float-group .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 50px;
    padding: 0 15px;
    gap: 3px;
    bottom: 0;
    border-radius: 50px 0 0 50px;
    border-top: 1px solid #ffe9ce;
    border-bottom: 1px solid #ffe9ce;
    border-left: 1px solid #ffe9ce;
    background: linear-gradient(90deg, rgba(37, 34, 34, 0.8) 0%, rgba(108, 96, 82, 0.8) 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    width: -moz-fit-content;
    width: fit-content;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }

  .float-group .hamburger::before {
    content: "";
    width: 14px;
    height: 14px;
    background: url("../img/menu-icon.png") no-repeat center/contain;
  }
}

header {
  height: 59px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1023px) {
  header {
    align-items: flex-end;
  }
}

@media (min-width: 1400px) {
  header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
}


@media (max-width: 1700px) {
  header .container {
    width: calc(100% - 295px);
    padding-left: 275px;
    padding-right: 20px;
    margin: 0;
  }
}

@media (max-width: 1023px) {
  header .container {
    padding: 0 20px;
    max-width: 100%;
    width: calc(100% - 40px);
  }
}

header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header-wrap .logo img {
  height: 49px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1023px) {
  header .header-wrap .logo img {
    height: 37px;
  }
}

header .btn-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 1023px) {
  header .btn-group {
    gap: 10px;
  }
}

header .btn-group .btn-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 112px;
  padding: 0 10;
  border-radius: 60px;
  height: 38px;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  header .btn-group .btn-item {
    width: 84px;
    height: 44px;
  }
}

header .btn-group .btn-item.register {
  color: #000;
  background: linear-gradient(180deg, #ffe9ce 0%, #ae8451 100%);
}

header .btn-group .btn-item.register:hover {
  background: linear-gradient(-180deg, rgb(255, 252, 225) 0.0999755808%, rgb(255, 239, 93) 9.0999752283%, rgb(255, 150, 27) 50.4999995232%, rgb(255, 239, 93) 91.0999774933%, rgb(255, 252, 226) 100%);
}

header .btn-group .btn-item.login {
  border: 1px solid #ae8451;
  background: rgba(82, 89, 110, 0.23);
  color: #f5d5ae;
}

header .btn-group .btn-item.login:hover {
  color: #000;
  background: linear-gradient(-180deg, rgb(255, 252, 225) 0.0999755808%, rgb(255, 239, 93) 9.0999752283%, rgb(255, 150, 27) 50.4999995232%, rgb(255, 239, 93) 91.0999774933%, rgb(255, 252, 226) 100%);
}

header .menu-wrap {
  width: 225px;
  height: calc(100% - 60px);
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  padding: 30px 25px;
  gap: 15px;
  overflow-y: auto;
}

header .menu-wrap::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 5px;
}

header .menu-wrap::-webkit-scrollbar-track {
  background: #000;
  border-radius: 5px;
}

header .menu-wrap::-webkit-scrollbar {
  max-width: 1px;
  max-height: 1px;
}

@media (max-width: 1023px) {
  header .menu-wrap {
    display: none;
    position: fixed;
  }

  header .menu-wrap.show {
    display: flex;
    z-index: 2;
    width: calc(100% - 50px);
    background: rgba(0, 0, 0, 0.9);
  }
}

header .menu-wrap .return {
  display: none;
}

@media (max-width: 1023px) {
  header .menu-wrap .return {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fee3c1;
    font-size: 20px;
    font-weight: 700;
  }
}

header .menu-wrap .menu-title {
  color: #fee3c1;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 20px;
}

header .menu-wrap .menu-title:after {
  flex: 1;
  content: "";
  height: 1px;
  background: linear-gradient(90deg, rgb(255, 233, 206) 0%, rgba(174, 132, 81, 0.5) 100%);
}

header .menu-wrap .media-group {
  display: flex;
  gap: 5px;
}

header .menu-wrap .media-group .btn-item {
  flex: 0 0 calc(50% - 5px);
}

header .menu-wrap .menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

header .menu-wrap .menu ul li {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

header .menu-wrap .menu ul li.on,
header .menu-wrap .menu ul li:hover {
  border: 1px solid #ffe9ce;
  background: linear-gradient(90deg, #252222 0%, #957855 100%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

header .menu-wrap .menu ul li.home a::before {
  background: url("../img/nav-icon.png") no-repeat center/contain;
}

header .menu-wrap .menu ul li.promo a::before {
  background: url("../img/nav-icon2.png") no-repeat center/contain;
}

header .menu-wrap .menu ul li.live a::before {
  background: url("../img/nav-icon3.png") no-repeat center/contain;
}

header .menu-wrap .menu ul li.sports a::before {
  background: url("../img/nav-icon4.png") no-repeat center/contain;
}

header .menu-wrap .menu ul li.app a::before {
  background: url("../img/nav-icon5.png") no-repeat center/contain;
}

header .menu-wrap .menu ul li.register a::before {
  background: url("../img/nav-icon6.webp") no-repeat center/contain;
}

header .menu-wrap .menu ul li.payment a::before {
  background: url("../img/nav-icon7.webp") no-repeat center/contain;
}

header .menu-wrap .menu ul li a {
  width: 100%;
  height: 100%;
  color: #fee3c1;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 10px;
}

header .menu-wrap .menu ul li a:before {
  content: "";
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
}

header .menu-wrap .menu-btn-group {
  width: 100%;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

header .menu-wrap .menu-btn-group .btn-item {
  width: calc(100% - 22px);
  border-radius: 5px;
  border: 1px solid #3c424e;
  background: linear-gradient(90deg, #242323 50%, #3e3e3e 100%);
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fee3c1;
  padding: 0 10px;
}

header .menu-wrap .menu-btn-group .btn-item:hover {
  border: 1px solid #ffe9ce;
  background: linear-gradient(90deg, #252222 0%, #957855 100%);
}

header .menu-wrap .menu-btn-group .btn-item p {
  font-size: 14px;
}

header .menu-wrap .menu-btn-group .btn-item img {
  width: 50px;
  height: 52px;
}

main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1700px) {
  main {
    width: calc(100% - 295px);
    padding-left: 275px;
    padding-right: 20px;
    margin: 0;
  }
}

@media (max-width: 1023px) {
  main {
    padding: 0 20px;
    max-width: 100%;
    width: calc(100% - 40px);
  }
}

.section-banner {
  padding: 10px 0;
  width: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .section-banner {
    padding: 15px 0;
  }
}

.section-banner .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.section-banner .container img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-banner .swiper-pagination-bullet {
  width: 50px;
  height: 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.section-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(-180deg, rgb(255, 252, 225) 0.0999755808%, rgb(255, 239, 93) 9.0999752283%, rgb(255, 150, 27) 50.4999995232%, rgb(255, 239, 93) 91.0999774933%, rgb(255, 252, 226) 100%);
}

.section-notice {
  padding: 10px 0;
}

@media (max-width: 1023px) {
  .section-notice {
    padding: 0;
  }
}

.section-notice .container {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background: #1b2023;
  height: 49px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1023px) {
  .section-notice .container {
    height: 44px;
  }
}

.section-notice .notice-img {
  margin-left: 20px;
  width: 35px;
  height: 35px;
}

@media (max-width: 1023px) {
  .section-notice .notice-img {
    width: 22px;
    height: 22px;
  }
}

.section-notice .maquee-info {
  margin-right: 20px;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.section-notice .maquee-info .marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}

.section-page-info {
  padding: 30px 0 60px 0;
}

@media (max-width: 1023px) {
  .section-page-info {
    padding: 15px 0 0px;
  }
}

.section-page-info.promo {
  padding: 30px 0 20px 0;
}

@media (max-width: 1023px) {
  .section-page-info.promo {
    padding: 15px 0;
  }
}

.section-page-info .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

@media (max-width: 1023px) {
  .section-page-info .container {
    flex-direction: column;
    gap: 15px;
  }
}

.section-page-info .page-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-page-info .page-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-page-info .page-img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-page-info .page-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  display: flex;
  border-radius: 100px;
  height: 48px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 315px;
  background: linear-gradient(180deg, #fffce1 0.1%, #ffef5d 9.1%, #ff961b 50.5%, #ffef5d 91.1%, #fffce2 100%);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

@media (max-width: 1023px) {
  .section-page-info .page-btn {
    margin-top: 10px;
    min-width: initial;
    width: 100%;
    font-size: 14px;
  }
}

.section-page-info .page-btn::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/btn-gift-icon.png") no-repeat center/contain;
}

.section-page-info .page-btn:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/btn-arrow.png") no-repeat center/contain;
}

.section-nav {
  padding: 0 0 30px;
}

@media (max-width: 1023px) {
  .section-nav {
    padding: 0 0 20px;
  }
}

.section-nav.no-img .section-item {
  flex: 1;
  min-height: 50px;
}

@media (max-width: 1023px) {
  .section-nav.no-img .section-item:after {
    display: flex;
  }
}

.section-nav .container {
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #1a1a1a;
  padding: 20px;
  gap: 20px;
}

@media (max-width: 1023px) {
  .section-nav .container {
    position: relative;
    gap: 10px;
  }
}

.section-nav .nav-title {
  color: #fee3c1;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .section-nav .nav-title {
    font-size: 16px;
  }
}

.section-nav .nav-wrapper {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .section-nav .nav-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}

.section-nav .section-item {
  flex: 0 0 calc(33% - 52px);
  display: flex;
  min-height: 80px;
  padding: 0 20px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  border: 1px solid transparent;
}

@media (max-width: 1023px) {
  .section-nav .section-item {
    flex: 0 0 calc(100% - 50px);
    min-height: 60px;
  }
}

.section-nav .section-item:hover {
  border: 1px solid #ffe9ce;
  background: linear-gradient(90deg, #252222 0%, #957855 100%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.section-nav .section-item p {
  flex: 1;
  color: #e7e7e7;
}

.section-nav .section-item:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/content-arrow.png") no-repeat center/contain;
}

@media (max-width: 1023px) {
  .section-nav .section-item:after {
    display: none;
  }
}

.section-offical {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .section-offical {
    padding: 30px 0;
  }
}

.section-offical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url("../img/home-bg.png") no-repeat center/cover;
  z-index: -1;
}

@media (max-width: 1700px) {
  .section-offical::before {
    left: initial;
    right: -20px;
    transform: initial;
  }
}

@media (max-width: 1023px) {
  .section-offical::before {
    background: url("../img/home-bg-m.png") no-repeat center/cover;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}

.section-offical .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-offical .offical-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-offical .offical-item {
  width: calc(100% - 40px);
  min-height: 90px;
  border-radius: 10px;
  border: 1px solid #3f3f3f;
  background: rgba(36, 36, 36, 0.7);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1023px) {
  .section-offical .offical-item {
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }
}

.section-offical .offical-item ul {
  margin-left: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-offical .offical-item ul li {
  line-height: 160%;
  list-style: disc;
}

.section-offical .offical-item h3 {
  position: relative;
  color: #facc15;
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-offical .offical-item h3::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/checked-icon.png") no-repeat center/contain;
}

.section-promo {
  padding: 60px 0;
}

@media (max-width: 1023px) {
  .section-promo {
    padding: 30px 0;
  }
}

.section-promo.bonus {
  position: relative;
  z-index: 1;
}

.section-promo.bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url("../img/promo-bg.png") no-repeat center/cover;
  z-index: -1;
}

@media (max-width: 1700px) {
  .section-promo.bonus::before {
    left: initial;
    right: -20px;
    transform: initial;
  }
}

@media (max-width: 1023px) {
  .section-promo.bonus::before {
    background: url("../img/promo-bg-m.png") no-repeat center/cover;
    left: 50%;
    right: initial;
    transform: translateX(-50%);
  }
}

.section-promo.live {
  position: relative;
  z-index: 1;
}

.section-promo.live::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url("../img/live-bg.png") no-repeat center/cover;
  z-index: -1;
}

@media (max-width: 1700px) {
  .section-promo.live::before {
    left: initial;
    right: -20px;
    transform: initial;
  }
}

@media (max-width: 1023px) {
  .section-promo.live::before {
    background: url("../img/live-bg-m.png") no-repeat center/cover;
    left: 50%;
    right: initial;
    transform: translateX(-50%);
  }
}

.section-promo.game {
  position: relative;
  z-index: 1;
}

.section-promo.game::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #111216;
  z-index: -1;
}

@media (max-width: 1700px) {
  .section-promo.game::before {
    left: initial;
    right: -20px;
    transform: initial;
  }
}

@media (max-width: 1023px) {
  .section-promo.game::before {
    left: 50%;
    right: initial;
    transform: translateX(-50%);
  }
}

.section-promo.sports {
  position: relative;
  z-index: 1;
}

.section-promo.sports::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url("../img/sports-bg.png") no-repeat center/cover;
  z-index: -1;
}

@media (max-width: 1700px) {
  .section-promo.sports::before {
    left: initial;
    right: -20px;
    transform: initial;
  }
}

@media (max-width: 1023px) {
  .section-promo.sports::before {
    background: url("../img/sports-bg-m.png") no-repeat center/cover;
    left: 50%;
    right: initial;
    transform: translateX(-50%);
  }
}

.section-promo.app {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1023px) {
  .section-promo.app {
    padding: 0 0 15px;
  }
}

.section-promo.app .swiper {
  margin: 60px 0 50px;
}

@media (max-width: 1023px) {
  .section-promo.app .swiper {
    margin: 15px 0 5px;
  }
}

.section-promo.app .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  flex-direction: row;
}

@media (max-width: 1023px) {
  .section-promo.app .container {
    flex-direction: column;
    gap: 15px;
  }
}

.section-promo.app .container .page-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-promo.app .container .page-img img {
  flex: 1;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-promo.app .container .page-info {
  flex: 0 0 57%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-promo.app .container .app-logo {
  margin-bottom: 10px;
}

.section-promo.app .container .app-logo img {
  height: 97px;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-promo.app .container .app-wrap {
  margin: 10px 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

@media (max-width: 1023px) {
  .section-promo.app .container .app-wrap {
    margin: 5px 0 15px;
  }
}

.section-promo.app .container .app-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 3px;
  background: #313131;
  padding: 0 15px;
  height: 36px;
  gap: 10px;
}

@media (max-width: 1023px) {
  .section-promo.app .container .app-item {
    height: 34px;
    padding: 0 10px;
  }
}

.section-promo.app .container .app-item img {
  width: 16px;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-promo.app .container .app-down {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: calc(100% - 60px);
  height: 60px;
  padding: 0 30px;
  gap: 10px;
  border-radius: 100px;
  background: linear-gradient(180deg, #fffce1 0.1%, #ffef5d 9.1%, #ff961b 50.5%, #ffef5d 91.1%, #fffce2 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  font-size: 20px;
  font-weight: 800;
  color: #000;
}

@media (max-width: 1023px) {
  .section-promo.app .container .app-down {
    margin-top: 5px;
    font-size: 16px;
  }
}

.section-promo.app .container .app-down::before {
  content: "";
  width: 36px;
  height: 36px;
  background: url("../img/app-down.png") no-repeat center/contain;
}

@media (max-width: 1023px) {
  .section-promo.app .container .app-down::before {
    width: 26px;
    height: 26px;
  }
}

.section-promo .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-promo .swiper {
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1023px) {
  .section-promo .swiper {
    margin-top: 5px;
  }
}

.section-promo .swiper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 165px;
  height: 100%;
  background: linear-gradient(90deg, #000 9.09%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

@media (max-width: 1023px) {
  .section-promo .swiper:before {
    width: 17px;
  }
}

.section-promo .swiper:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 165px;
  height: 100%;
  background: linear-gradient(90deg, #000 9.09%, rgba(0, 0, 0, 0) 100%);
  transform: rotate(180deg);
  z-index: 2;
}

@media (max-width: 1023px) {
  .section-promo .swiper:after {
    width: 17px;
  }
}

.section-promo .swiper .swiper-slide img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-promo .swiper-button-prev {
  width: 17px;
  height: 30px;
  background: url("../img/banner2-slide-arrow.png") no-repeat center/contain;
}

@media (max-width: 1023px) {
  .section-promo .swiper-button-prev {
    width: 15.341px;
    height: 26.517px;
  }
}

.section-promo .swiper-button-prev svg {
  display: none;
}

.section-promo .swiper-button-prev:after {
  display: none;
}

.section-promo .swiper-button-next {
  width: 17px;
  height: 30px;
  background: url("../img/banner2-slide-arrow.png") no-repeat center/contain;
  transform: rotate(180deg);
}

@media (max-width: 1023px) {
  .section-promo .swiper-button-next {
    width: 15.341px;
    height: 26.517px;
  }
}

.section-promo .swiper-button-next svg {
  display: none;
}

.section-promo .swiper-button-next:after {
  display: none;
}

.section-promo .banner {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .section-promo .banner {
    margin-top: 10px;
  }
}

.promo-feature {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 1023px) {
  .promo-feature {
    margin-top: 5px;
    gap: 10px;
  }
}

.promo-feature.bonus .item-title h3 {
  color: #facc15;
}

.promo-feature.bonus ul {
  color: #c6c6c6;
}

.promo-feature.bonus .promo-item,
.registration-steps .steps,
.payment-steps .steps {
  background: rgba(26, 26, 26, 0.7);
}

.promo-feature.live {
  gap: 15px;
}

.promo-feature.live .item-title h3 {
  color: #facc15;
}

.promo-feature.live ul {
  color: #c6c6c6;
}

.promo-feature.live .promo-item {
  flex: 0 0 calc(33% - 70px);
  background: rgba(26, 26, 26, 0.7);
}

.promo-feature.game .item-title h3 {
  color: #facc15;
}

.promo-feature.game ul {
  color: #d2d3d5;
}

.promo-feature.game .promo-item {
  background: #1b2023;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid transparent;
}

.promo-feature .promo-item {
  flex: 0 0 calc(50% - 72px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border-radius: 15px;
  border: 1px solid #ffe9ce;
  background: #1a1a1a;
}

@media (max-width: 1023px) {
  .promo-feature .promo-item {
    flex: 0 0 calc(100% - 40px);
    padding: 20px;
    gap: 5px;
  }
}

.promo-feature .item-title {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

@media (max-width: 1023px) {
  .promo-feature .item-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

.promo-feature .item-title span {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(180deg, #ffe9ce 0%, #ae8451 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1023px) {
  .promo-feature .item-title span {
    font-size: 20px;
  }
}

.promo-feature .item-title span label {
  background: transparent;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

.promo-feature .item-title h3 {
  color: #fff;
}

.promo-feature ul li,
.steps ul li {
  list-style: disc;
  line-height: 160%;
  margin-left: 20px;
}

.section-rating {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .section-rating {
    padding: 30px 0;
  }
}

.section-rating::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url("../img/home-bg2.png") no-repeat center/cover;
  z-index: -1;
}

@media (max-width: 1700px) {
  .section-rating::before {
    left: initial;
    right: -20px;
    transform: initial;
  }
}

@media (max-width: 1023px) {
  .section-rating::before {
    left: 50%;
    right: initial;
    transform: translateX(-50%);
  }
}

.section-rating .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-rating .rating-comment {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1023px) {
  .section-rating .rating-comment {
    margin-top: 5px;
  }
}

.section-rating .comment-item {
  width: calc(100% - 60px);
  border-radius: 15px;
  background: rgba(42, 42, 42, 0.7);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1023px) {
  .section-rating .comment-item {
    padding: 20px;
    width: calc(100% - 50px);
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-rating .user-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}

@media (max-width: 1023px) {
  .section-rating .user-info {
    width: 100%;
    position: relative;
  }
}

.section-rating .user-info .name {
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 1023px) {
  .section-rating .user-info .name {
    font-size: 14px;
  }
}

.section-rating .user-info .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

@media (max-width: 1023px) {
  .section-rating .user-info .rating {
    font-size: 12px;
  }
}

.section-rating .user-info .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 9999px;
  background: #174c45;
  height: 27px;
  font-size: 14px;
  font-weight: 400;
  color: #4ade80;
}

@media (max-width: 1023px) {
  .section-rating .user-info .tag {
    position: absolute;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 13px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.section-rating .item-info {
  flex: 1;
  min-height: 113px;
  border-left: 1px solid #7e7e7e;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1023px) {
  .section-rating .item-info {
    padding: 10px 0 0 0;
    border-left: none;
    border-top: 1px solid #7e7e7e;
    min-height: initial;
  }
}

.section-rating .item-info .info-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (max-width: 1023px) {
  .section-rating .item-info .info-date {
    margin-bottom: 5px;
  }
}

.section-rating .item-info .info-date span {
  color: #b3b3b3;
}

@media (max-width: 1023px) {
  .section-rating .item-info .info-date span {
    font-size: 12px;
  }
}

.section-rating .item-info h3 {
  font-weight: 700;
  background: linear-gradient(180deg, #ffe9ce 0%, #ae8451 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-agent {
  padding: 60px 0;
}

@media (max-width: 1023px) {
  .section-agent {
    padding: 30px 0;
  }
}

.section-agent .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-agent .step-list {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  counter-reset: step-counter;
}

@media (max-width: 1023px) {
  .section-agent .step-list {
    flex-direction: column;
    margin: 5px 0;
    gap: 30px;
  }
}

.section-agent .step-item {
  flex: 0 0 calc(25% - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border-radius: 15px;
  border: 1px solid #333434;
  background: #1a1a1a;
  padding: 20px;
  position: relative;
  text-align: center;
}

@media (max-width: 1023px) {
  .section-agent .step-item {
    padding: 15px 30px;
    flex: 0 0 calc(100% - 90px);
  }
}

.section-agent .step-item:before {
  counter-increment: step-counter;
  content: counter(step-counter);
  color: #333434;
  font-size: 90px;
  font-weight: 800;
  font-style: italic;
  position: absolute;
  left: 20px;
  top: 20px;
  line-height: 60px;
}

@media (max-width: 1023px) {
  .section-agent .step-item:before {
    left: 50px;
  }
}

.section-agent .step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/feature-arrow.png") no-repeat center/contain;
}

@media (max-width: 1023px) {
  .section-agent .step-item:not(:last-child)::after {
    right: initial;
    top: initial;
    bottom: -35px;
    left: 50%;
    margin-left: -10px;
    transform: rotate(90deg) translateX(-50%);
  }
}

.section-agent .step-item p {
  color: #d1d5db;
}

.section-agent .step-item img {
  width: 60px;
  aspect-ratio: 1/1;
  margin-bottom: 15px;
}

@media (max-width: 1023px) {
  .section-agent .step-item img {
    margin-bottom: 5px;
    width: 45px;
  }
}

.section-agent .step-item .step-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .section-agent .step-item .step-title {
    font-size: 16px;
  }
}

.section-pay {
  padding: 0 0 60px;
}

@media (max-width: 1023px) {
  .section-pay {
    padding: 0 0 20px;
  }
}

.section-pay .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-pay .pay-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 1023px) {
  .section-pay .pay-list {
    margin-top: 5px;
    flex-direction: column;
  }
}

.section-pay .pay-item {
  flex: 0 0 calc(50% - 55px);
  display: flex;
  padding: 20px;
  gap: 10px;
  border-radius: 15px;
  border: 1px solid #ffe9ce;
  background: #1a1a1a;
}

@media (max-width: 1023px) {
  .section-pay .pay-item {
    position: relative;
    flex: 0 0 calc(100% - 55px);
    flex-wrap: wrap;
    gap: 15px;
  }
}

.section-pay .pay-item img {
  width: 55px;
  height: 55px;
}

@media (max-width: 1023px) {
  .section-pay .pay-item img {
    position: absolute;
    top: 20px;
    left: 20px;
  }
}

.section-pay .pay-item .pay-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-pay .pay-item .info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .section-pay .pay-item .info-top {
    padding-left: 65px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.section-pay .pay-item .info-top h3 {
  flex: 1;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1023px) {
  .section-pay .pay-item .info-top h3 {
    font-size: 20px;
  }
}

.section-pay .pay-item ul li {
  margin-left: 20px;
  list-style: disc;
  line-height: 160%;
}

.section-pay .pay-item .tag-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-pay .pay-item .tag-group.blue .tag-item {
  background: #0038a3;
}

.section-pay .pay-item .tag-group.green .tag-item {
  background: #0b6a49;
}

.section-pay .pay-item .tag-group.purple .tag-item {
  background: #521894;
}

.section-pay .pay-item .tag-group.yellow .tag-item {
  background: #a7770a;
}

.section-pay .pay-item .tag-group .tag-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 13px;
  height: 27px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  border-radius: 9999px;
}

@media (max-width: 1023px) {
  .section-pay .pay-item .tag-group .tag-item {
    height: 25px;
    font-size: 12px;
  }
}

.section-qa {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .section-qa {
    padding: 30px 0;
  }
}

.section-qa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #111216;
  z-index: -1;
}

@media (max-width: 1700px) {
  .section-qa::before {
    left: initial;
    right: -20px;
    transform: initial;
  }
}

@media (max-width: 1023px) {
  .section-qa::before {
    left: 50%;
    right: initial;
    transform: translateX(-50%);
  }
}

.section-qa .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-qa .qa-wrapper {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1023px) {
  .section-qa .qa-wrapper {
    margin: 5px 0;
  }
}

.section-qa .qa-item {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  line-height: normal;
}

.section-qa .qa-item.active .content {
  width: calc(100% - 85px);
  padding: 20px 30px 20px 55px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #3e3922;
  background: #262b2e;
  position: relative;
  border-radius: 0 0 16px 16px;
  color: #fff;
}

@media (max-width: 1023px) {
  .section-qa .qa-item.active .content {
    width: calc(100% - 65px);
    padding: 10px 20px 10px 45px;
  }
}

.section-qa .qa-item.active .content p:first-child {
  position: relative;
}

.section-qa .qa-item.active .content p:first-child::before {
  content: "A.";
  color: #4ade80;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  left: -30px;
}

@media (max-width: 1023px) {
  .section-qa .qa-item.active .content p:first-child::before {
    font-size: 14px;
    left: -25px;
  }
}

.section-qa .qa-item.active h3 {
  border-radius: 16px 16px 0 0;
}

.section-qa .qa-item.active h3:after {
  transform: rotate(0);
}

.section-qa .qa-item h3 {
  border-radius: 16px;
  background: #1b2023;
  padding: 25px 70px 25px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .section-qa .qa-item h3 {
    padding: 15px 50px 15px 20px;
    font-size: 14px;
  }
}

.section-qa .qa-item h3::before {
  content: "Q.";
  color: #facc15;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .section-qa .qa-item h3::before {
    font-size: 14px;
  }
}

.section-qa .qa-item h3::after {
  position: absolute;
  right: 30px;
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/qa-arrow.png") no-repeat center/contain;
  transform: rotate(180deg);
}

@media (max-width: 1023px) {
  .section-qa .qa-item h3::after {
    right: 20px;
  }
}

.section-qa .qa-item .content {
  display: none;
  margin: 0;
}

.section-promo-wrap {
  padding: 60px 0;
}

@media (max-width: 1023px) {
  .section-promo-wrap {
    padding: 30px 0;
  }
}

.section-promo-wrap.sports {
  position: relative;
  z-index: 1;
}

.section-promo-wrap.sports::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #111216;
  z-index: -1;
}

@media (max-width: 1700px) {
  .section-promo-wrap.sports::before {
    left: initial;
    right: -20px;
    transform: initial;
  }
}

@media (max-width: 1023px) {
  .section-promo-wrap.sports::before {
    left: 50%;
    right: initial;
    transform: translateX(-50%);
  }
}

.section-promo-wrap .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-promo-wrap .promo-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1023px) {
  .section-promo-wrap .promo-list {
    margin-top: 5px;
    gap: 10px;
  }
}

.section-promo-wrap .promo-item {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #3f3f3f;
  background: #1a1a1a;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .section-promo-wrap .promo-item {
    flex-direction: column;
  }
}

.section-promo-wrap .promo-item img {
  height: 170px;
  width: auto;
}

@media (max-width: 1023px) {
  .section-promo-wrap .promo-item img {
    width: 100%;
    height: auto;
  }
}

.section-promo-wrap .promo-item .item-info {
  flex: 1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1023px) {
  .section-promo-wrap .promo-item .item-info {
    padding: 20px;
    gap: 5px;
  }
}

.section-promo-wrap .promo-item .item-info h3 {
  color: #facc15;
}

.section-promo-wrap ul li {
  margin-left: 20px;
  list-style: disc;
  padding-left: 8px;
  color: #c6c6c6;
}

.section-page {
  background: #f4f4f4;
  line-height: normal;
}

.section-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.section-page .page-table {
  width: 100%;
  display: flex;
  margin: 20px 0;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .section-page .page-table {
    flex-direction: column;
    margin: 5px auto;
    gap: 15px;
  }
}

.section-page .tag-img {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1023px) {
  .section-page .tag-img {
    flex: 0 0 100%;
    justify-content: center;
  }
}

.section-page .tag-img img {
  max-height: 600px;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-page .table-wrap {
  flex: 0 0 50%;
  display: flex;
}

@media (max-width: 1023px) {
  .section-page .table-wrap {
    flex: 0 0 100%;
    width: calc(100vw - 20px);
    overflow: hidden;
  }
}

.section-page .table-wrapper {
  flex: 1;
  display: flex;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .section-page .table-wrapper {
    width: -moz-max-content;
    width: max-content;
    overflow-x: auto;
  }
}

.section-page .table-col {
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 1023px) {
  .section-page .table-col {
    min-width: 235px;
    flex: 1;
  }
}

.section-page .table-col:first-child {
  flex: 0 0 116px;
}

.section-page .table-col.has-icon {
  background: #ffefe1;
}

.section-page .table-col.has-icon .col-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.section-page .table-col.has-icon .col-item::before {
  content: "";
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background: url("../img/rating-icon2.png") no-repeat center/contain;
}

.section-page .table-col.has-icon .col-item:first-child {
  color: #fd7c47;
}

.section-page .table-col.has-icon .col-item:first-child::before {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: url("../img/rating-icon.png") no-repeat center/contain;
}

.section-page .table-col.has-icon2 .col-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.section-page .table-col.has-icon2 .col-item::before {
  content: "";
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background: url("../img/rating-icon3.png") no-repeat center/contain;
}

.section-page .table-col.has-icon2 .col-item:first-child::before {
  display: none;
}

.section-page .table-col .col-item {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: normal;
  border: 1px solid #f4f4f4;
  height: 113px;
  padding: 10px 20px;
}

.section-page .table-col .col-item:first-child {
  height: 38px;
  font-weight: 600;
}

.section-page .text-left {
  text-align: left;
}

footer {
  border-top: 1px solid #ffe9ce;
}

footer .footer-top {
  padding: 30px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1700px) {
  footer .footer-top {
    width: calc(100% - 295px);
    padding-left: 275px;
    padding-right: 20px;
    margin: 0;
  }
}

@media (max-width: 1023px) {
  footer .footer-top {
    padding: 0 20px;
    max-width: 100%;
    width: calc(100% - 40px);
  }
}

@media (max-width: 1023px) {
  footer .footer-top {
    padding: 15px 20px;
  }
}

footer .footer-top .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1023px) {
  footer .footer-top .container {
    flex-direction: column;
    gap: 10px;
  }
}

footer .footer-top .info-left {
  flex: 0 0 373px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  color: #d1d5db;
}

@media (max-width: 1023px) {
  footer .footer-top .info-left {
    flex: initial;
    width: 100%;
  }
}

footer .footer-top .info-left img {
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1023px) {
  footer .footer-top .info-left img {
    height: 47px;
  }
}

footer .footer-top .info-left .feature-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 1023px) {
  footer .footer-top .info-left .feature-wrap {
    gap: 10px;
  }
}

footer .footer-top .info-left .feature-item {
  flex: 0 0 calc(50% - 28px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 34px;
  border-radius: 5px;
  background: #252222;
  padding: 5px 10px;
}

@media (max-width: 1023px) {
  footer .footer-top .info-left .feature-item {
    flex: 0 0 calc(50% - 25px);
  }
}

footer .footer-top .info-left .feature-item p {
  background: linear-gradient(180deg, #dfebfe 0%, #dfebfe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1023px) {
  footer .footer-top .info-left .feature-item p {
    font-size: 12px;
  }
}

footer .footer-top .info-mid,
footer .footer-top .info-right {
  width: 30%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1023px) {

  footer .footer-top .info-mid,
  footer .footer-top .info-right {
    width: 100%;
    max-width: initial;
    gap: 5px;
  }
}

footer .footer-top .mid-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}

@media (max-width: 1023px) {
  footer .footer-top .mid-wrap {
    gap: 5px;
  }
}

footer .footer-top .mid-wrap .mid-item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  min-height: 35px;
}

@media (max-width: 1023px) {
  footer .footer-top .mid-wrap .mid-item {
    gap: 10px;
  }
}

footer .footer-top .mid-wrap .mid-item.time::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/footer-icon.png") no-repeat center/contain;
}

@media (max-width: 1023px) {
  footer .footer-top .mid-wrap .mid-item.time::before {
    width: 20px;
    height: 20px;
  }
}

footer .footer-top .mid-wrap .mid-item.address::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/footer-icon2.png") no-repeat center/contain;
}

@media (max-width: 1023px) {
  footer .footer-top .mid-wrap .mid-item.address::before {
    width: 20px;
    height: 20px;
  }
}

footer .footer-top .mid-wrap .mid-item.global::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/footer-icon3.png") no-repeat center/contain;
}

@media (max-width: 1023px) {
  footer .footer-top .mid-wrap .mid-item.global::before {
    width: 20px;
    height: 20px;
  }
}

footer .footer-top h3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(180deg, #ffe9ce 0%, #ae8451 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid #848484;
  line-height: 32px;
}

@media (max-width: 1023px) {
  footer .footer-top h3 {
    font-size: 14px;
  }
}

footer .footer-top ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 1023px) {
  footer .footer-top ul {
    gap: 0;
  }
}

footer .footer-top ul li {
  flex: 0 0 calc(50% - 10px);
  line-height: 35px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1023px) {
  footer .footer-top ul li {
    flex: 0 0 50%;
    line-height: 44px;
  }
}

footer .footer-top ul li:nth-child(even) {
  justify-content: flex-end;
}

@media (max-width: 1023px) {
  footer .footer-top ul li:nth-child(even) {
    justify-content: flex-start;
  }
}

footer .footer-top ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

footer .footer-top ul li a {
  color: #fff;
}

footer .footer-brand {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1700px) {
  footer .footer-brand {
    width: calc(100% - 295px);
    padding-left: 275px;
    padding-right: 20px;
    margin: 0;
  }
}

@media (max-width: 1023px) {
  footer .footer-brand {
    padding: 0 20px;
    max-width: 100%;
    width: calc(100% - 40px);
  }
}

@media (max-width: 1023px) {
  footer .footer-brand {
    gap: 20px;
    padding: 0;
    width: 100%;
  }
}

footer .footer-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: linear-gradient(90deg, #252222 45.69%, #6c6052 99.94%);
  z-index: -1;
}

@media (max-width: 1700px) {
  footer .footer-brand::before {
    left: initial;
    right: -20px;
    transform: initial;
  }
}

@media (max-width: 1023px) {
  footer .footer-brand::before {
    left: 50%;
    right: initial;
    transform: translateX(-50%);
  }
}

footer .footer-brand .brand-title {
  flex: 0 0 138px;
  color: #eee;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 1023px) {
  footer .footer-brand .brand-title {
    flex: 0 0 109px;
    font-size: 12px;
  }
}

footer .footer-brand .beand-group {
  flex: 1;
  display: flex;
  align-items: center;
  height: 64px;
  border-left: 1px solid #999999;
}

@media (max-width: 1023px) {
  footer .footer-brand .beand-group {
    overflow-x: auto;
    height: 44px;
  }
}

footer .footer-brand .beand-group img {
  width: 11%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1023px) {
  footer .footer-brand .beand-group img {
    width: auto;
    height: 44px;
  }
}

footer .footer-copyright {
  padding: 10px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1700px) {
  footer .footer-copyright {
    width: calc(100% - 295px);
    padding-left: 275px;
    padding-right: 20px;
    margin: 0;
  }
}

@media (max-width: 1023px) {
  footer .footer-copyright {
    padding: 0 20px;
    max-width: 100%;
    width: calc(100% - 40px);
  }
}

@media (max-width: 1023px) {
  footer .footer-copyright {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
    align-items: flex-start;
  }
}

footer .copyright-wrap {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 1023px) {
  footer .copyright-wrap {
    flex: 0 0 100%;
    font-size: 12px;
    gap: 5px;
  }
}

footer .copyright-wrap p:not(:first-child) {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1023px) {
  footer .copyright-wrap p:not(:first-child) {
    gap: 5px;
  }
}

footer .copyright-wrap p:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 14.5px;
  background: #fff;
}

footer .copyright-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 13.89px;
  padding-left: 20px;
  font-size: 12px;
  font-weight: 400;
  color: #dedede;
}

@media (max-width: 1023px) {
  footer .copyright-info {
    font-size: 10px;
    padding: 0;
  }
}

footer .copyright-info img {
  height: 30px;
}

@media (max-width: 1023px) {
  footer .copyright-info img {
    height: 22px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/*# sourceMappingURL=main.css.map */

/* 202511新增 register、payment頁面*/
.fw-600 {
  font-weight: 600;
}

.registration-steps .steps,
.payment-steps .steps {
  border-radius: 15px;
  border: 1px solid #ffe9ce;
  padding: 30px;
}

.text-FACC15 {
  color: #FACC15;
}

.d-flex {
  display: flex;
}

.line-height-160 {
  line-height: 160%;
}

.align-items-center {
  align-items: center;
}

.wrap {
  flex-wrap: wrap;
}

.registration-steps,
.payment-steps {
  margin-top: 16px;
}

.registration-steps .steps,
.payment-steps .steps {
  width: 100%;
}

.text-FFFFFF {
  color: #FFFFFF;
}

.bg-0038A3 {
  background-color: #0038A3;
}

.p-5-13 {
  padding: 5px 13px;
}

.radius-50 {
  border-radius: 50px;
}

.gap-10 {
  gap: 10px;
}

.p-15 {
  padding: 15px;
}

.radius-100 {
  border-radius: 100px;
}

.w-55 {
  width: 55px !important;
  height: 55px !important;
}

.bg-GradientBlue {
  background: linear-gradient(90deg, #60A5FA 0%, #2563EB 100%);
  box-shadow: 0px 10px 15px -3px #0000001A;
}

.justify-content-center {
  justify-content: center;
}

.fw-700 {
  font-weight: 700;
}

.bg-GradientGreen {
  background: linear-gradient(90deg, #4ADE80 0%, #16A34A 100%);
  box-shadow: 0px 25px 50px -12px #00000040;
}

.bg-0B6A49 {
  background-color: #0B6A49;
}

.bg-GradientYellow {
  background: linear-gradient(90deg, #FACC15 0%, #CA8A04 100%);
  box-shadow: 0px 25px 50px -12px #00000040;
}

.bg-A7770A {
  background-color: #A7770A;
}

.bg-GradientPurple {
  background: linear-gradient(90deg, #C084FC 0%, #9333EA 100%);
  box-shadow: 0px 25px 50px -12px #00000040;
}

.bg-521894 {
  background-color: #521894;
}

.uppercase {
  text-transform: uppercase;
}

@media (min-width: 1025px) {
  .registration-steps .pad-w-100 {
    width: 264.69px;
  }

  .w-135 {
    width: 135px;
  }

  .payment-steps .pad-w-100 {
    width: 393px;
  }

  .web-align-items-center {
    align-items: center;
  }

  .payment-steps .w-273-100 {
    width: 273px;
  }
}

@media (max-width: 1024px) {
  .pad-wrap {
    flex-wrap: wrap;
  }

  .pad-w-100 {
    width: 100%;
  }
}

@media (min-width: 679px) and (max-width: 1024px) {}


@media (min-width: 679px) {
  .text-20-16 {
    font-size: 20px;
  }

  .gap-20-10 {
    gap: 20px;
  }

  .steps .w-184 {
    width: 184px;
  }

  .gap-10-20 {
    gap: 10px;
  }

  .text-22-20 {
    font-size: 22px;
  }

  .text-14-12 {
    font-size: 14px;
  }
}

@media (max-width: 678px) {
  .text-20-16 {
    font-size: 16px;
  }

  .gap-20-10 {
    gap: 10px;
  }

  .gap-10-20 {
    gap: 20px;
  }

  .text-22-20 {
    font-size: 20px;
  }

  .text-14-12 {
    font-size: 12px;
  }
}