v body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f3f3f3;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1% !important;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* drop shadow */
}

/* Center logo */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.logo-text .cn {
  font-size: 16px;
  font-weight: bold;
  color: #00bfff;
}

.logo-text .en {
  font-size: 12px;
  color: #00bfff;
}

/* Right: Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 75%;
}

.nav-actions a {
  text-decoration: none;
  font-size: 14px;
  color: #333;
}

.nav-actions .register {
  background: #00bfff;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s;
}

.nav-actions .register:hover {
  background: #0099cc;
}

.flag {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}

.flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-container {
  padding: 1%;
  background: white;
}

/* Position navbar on top of banner */
.nav-container {
  position: fixed;
  /* float above banner */
  top: 13%;
  /* distance from top of page */
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  z-index: 10;
  /* ensure it's above banner */
  transition: all 0.4s ease;
  /* smooth animation for top, width, bg, etc. */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* drop shadow */
  border-radius: 50px;
  /* optional: rounded look */
  background: #fff;
  /* ensure shadow is visible */
}

.nav-container.scrolled {
  top: 10px;
  /* move up when scrolling */
  width: 70%;
  /* optional: make it slightly smaller */
  background: rgba(255, 255, 255, 0.95);
  /* optional: add background */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* optional: soft shadow */
  border-radius: 50px;
  /* keep rounded look */
}

.banner-container {
  position: relative;
  /* anchor point for nav-container */
}

.tab-pane {
  background: white;
  padding: 2%;
  border-radius: 30px;
}

/* Navbar styles */
.nav-tabs {
  border-bottom: none !important;
  background: white !important;
  border-radius: 50px;
  padding: 1%;
}

.nav-tabs .nav-link {
  border: none !important;
  font-family: "Inter", sans-serif;
  font-size: 12pt;
  color: #3F3F46;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  background: #5ed0f9 !important;
  border-radius: 30px !important;
  color: white !important;
}

.nav-item {
  width: 19%;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.intro-container {
  background: #EBEBEB;
  box-shadow: 0 2px 31.7px 3px rgba(0, 0, 0, 0.10) inset;

}

.intro-content {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2%;
  padding-bottom: 2%
}

.download-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5%;
}

.download-bg {
  background: url("../images/download-bg.png");
  background-size: cover
}

.download-img {
  width: 80%;
}

.download-content h2 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 40pt;
  padding-top: 6%
}

.download-content h3 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  padding-top: 5%;
  font-size: 22pt;
}

.download-content h4 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 22pt;
  padding-bottom: 5%
}

.download-content img {
  padding-bottom: 5%;
  width: 95%
}

.media-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3%;
  padding-bottom: 3%;
}

.promotion-container h1 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: #01C2FD;
  font-size: 20pt;
}

.highlight-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3%;
  padding-bottom: 3%
}

.highlight-content-container {
  width: 40%;
  margin-left: 3%;
  padding-bottom: 10%;
}

.highlight-content-container img {
  padding: 8%
}

.highlight-background {
  background: #F0F0F0
}

.highlight-container h2 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: #085a82 !important
}

.highlight-container span {
  color: #5ed0fa
}

.download-content h2 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 36pt
}

.download-content span {
  color: #5ed0fa
}

.bg-one {
  background: url("../images/highlgiht-banner/banner-one.png");
  background-size: cover
}

.bg-two {
  background: url("../images/highlgiht-banner/banner-two.png");
  background-size: cover
}

.bg-three {
  background: url("../images/highlgiht-banner/banner-three.png");
  background-size: cover
}

.bg-four {
  background: url("../images/highlgiht-banner/banner-four.png");
  background-size: cover
}

.game-nav-item {
  width: 30%;
}

.footer-container h1 {
  font-size: 18pt;
  color: #5ed0fa;
  font-family: 'Avenir Next Cyr';
}

.footer-container ul {
  padding: 0
}

.footer-container a {
  color: #777;
  text-decoration: none;
  margin: 0
}

.footer-container a:hover {
  text-decoration: underline;
}

.footer-container ul li {
  list-style-type: none;
  font-size: 10pt;
  line-height: 25pt;
  font-family: "Barlow", sans-serif;
}

footer {
  background: #f2f2f2;
  margin-top: 2%
}

.footer-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2%;
  padding-bottom: 2%;
}

.logo {
  width: 20%;
}

.logo-content p {
  text-indent: 0 !important
}

.logo-container {
  padding-top: 15%;
}

.ambassador {
  width: 85%
}

.content-container {
  padding-top: 3%;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.content-container h1 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: #5dd0f9;
}

.content-container h3 {
  text-align: center;
  font-size: 1.2vw;
  padding-top: 1%
}

.accordion-container {
  padding-top: 2%;
}

.promotion-container h1 {
  text-align: left;
  font-family: "Inter", sans-serif;
  color: #5dd0f9;
  font-size: 2.5vw;
}

.promotion-content a {
  margin: 0;
  text-decoration: none
}

.promotion-button:hover {
  transition: 0.6s;
  background: #004a65
}

.marquee {
  background: #f2f2f2;
  padding: 0.5%;
  display: flex;
}

.marquee-container {
  background: white;
  border-radius: 30px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.marquee-speaker {
  width: 2%;
  left: 9%;
  position: relative;
  text-align: center;
}

/* Accordion */
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #f9f9f9 !important;
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button {
  position: relative;
  display: unset !important;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: center !important;
  background-color: #f9f9f9 !important;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  text-align: center;
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
  margin-top: 1%;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: 1px solid #eeebeb !important;
}

/* Accordion */

.mobile-show {
  display: none
}

.help-nav-item {
  width: 24%;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.help-tab {
  width: 93%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* drop shadow */
  border-radius: 50px;
  /* optional: rounded look */
}

.game-nav-item {
  width: 24%;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.game-tab {
  width: 93%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* drop shadow */
  border-radius: 50px;
  /* optional: rounded look */
}

.accordion-button {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18pt !important;
  color: #085a82 !important;
}

.partnership {
  padding-top: 12%;
  padding-bottom: 15%;
}

.icon-bar-contact {
  position: fixed;
  right: 10px;
  /* distance from right edge */
  top: 10%;
  /* distance from bottom */

  display: flex;
  flex-direction: column;
  /* stack vertically */
  gap: 12px;
  /* space between buttons */
  z-index: 999;
}

.icon-bar-contact a {
  width: 60px;
  height: 60px;
  padding: 8px;
  background: #5ed0f9;
  /* button background */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.icon-bar-contact a:hover {
  background: #3bb6df;
  transform: scale(1.05);
}

#loginBox-web,
#registerBox-web {
  display: none;
}

#loginBox-mobile,
#registerBox-mobile {
  display: block;
}

.user-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-container iframe {
  height: 660px;
  width: 100%;
  border: none;
}

@media (min-width: 768px) {

  #loginBox-web,
  #registerBox-web {
    display: block;
  }

  #loginBox-mobile,
  #registerBox-mobile {
    display: none;
  }

  .user-container iframe {
    height: 1000px;
    width: 100%;
    border: none;
  }
}


/* Mobile Portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
  .tab-pane h2 {
    font-family: "Inter", sans-serif;
    font-weight: bold;
    color: #085a82 !important;
    font-size: 17pt !important;
  }

  .sport-img img {
    width: 24%;
    margin-right: 2% !important;
    margin-bottom: 3% !important;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 13px !important;
  }

  .register-now-button {
    background: #5ed0f9;
    width: 45% !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 2% !important;
    margin-top: 3%;
    border-radius: 10px;
  }

  .tab-pane h5 {
    font-family: "Inter", sans-serif;
    font-weight: bold;
    color: #5ed0f9;
    font-size: 10pt !important;
    text-align: center;
    text-decoration: underline;
    padding-top: 3%;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* prevent sideways scroll */
  }

  .download-img {
    width: 100%;
  }

  .marquee-container {
    background: white;
    border-radius: 30px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2%;
    margin-bottom: 2%;
  }

  .mobile-show {
    display: block
  }

  .desktop-show {
    display: none
  }

  .logo {
    width: 100%;
    text-align: center
  }

  .navbar {
    position: relative;
    display: flex;
    align-items: center !important;
    justify-content: space-between;
    padding: 3% !important;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .logo {
    position: unset;
    left: 50%;
    transform: translateX(0%);
    display: unset;
    align-items: center;
  }

  .button-container {
    text-align: center
  }

  .button-container p {
    margin-bottom: 0
  }

  .register-button {
    background: #5dd0f9;
    color: white;
    padding: 5%
  }

  .login-button {
    padding: 5%;
    color: #333;
  }

  .highlight-container {
    width: 95% !important;
    margin-left: auto;
    margin-right: auto;
    padding-top: 8%;
    padding-bottom: 3%;
  }

  .nav-tabs .nav-link {
    border: none !important;
    font-family: "Inter", sans-serif;
    font-size: 10pt !important;
    color: #3F3F46;
    text-align: center;
  }

  .nav-item {
    width: 24%;
    text-align: center;
    font-family: "Inter", sans-serif;
  }

  .content-container h1 {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    color: #5dd0f9;
    font-size: 18pt;
  }

  .content-container h3 {
    text-align: center;
    font-size: 10pt;
    padding-top: 1%;
  }

  .tab-pane {
    padding: 5%;
    border-radius: 30px;
    background: white;
    width: 93%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .contact-content {
    width: 100% !important;
    padding-top: 10%;
    padding-left: 9%;
    padding-bottom: 6%;
    font-family: "Inter", sans-serif;
  }

  .contact-details-container {
    width: 80% !important;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3%;
    padding-bottom: 3%;
  }

  .contact-icon {
    width: 88% !important;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3%;
  }

  .icon-bar-contact a {
    width: 48px !important;
    height: 48px !important;
    padding: 8px;
    background: #5ed0f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .bg-one {
    background: url("../images/highlgiht-banner/banner-one.png") !important;
    background-size: cover
  }

  .bg-two {
    background: url("../images/highlgiht-banner/banner-two.png") !important;
    background-size: cover
  }

  .bg-three {
    background: url("../images/highlgiht-banner/banner-three.png") !important;
    background-size: cover
  }

  .bg-four {
    background: url("../images/highlgiht-banner/banner-four.png") !important;
    background-size: cover
  }

  .highlight-content-container {
    width: 100% !important;
    margin-left: 3%;
    padding-bottom: 0% !important;
  }
}

@media only screen and (max-width: 768px) and (orientation: landscape) and (pointer: coarse) {}

/* Mobile & Tablet Landscape */
@media only screen and (max-width: 1024px) and (orientation: landscape) and (pointer: coarse) {}