@charset "UTF-8";
html {
  scroll-behavior: smooth;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
html.no-scroll {
  overflow: hidden;
}

body {
  scroll-behavior: smooth;
  background-color: #050A29 !important;
  color: #fff !important;
}
body a {
  text-decoration: none;
}
body button:focus {
  outline: none;
}
body input:focus {
  outline: none;
}
body select:focus {
  outline: none;
}
body textarea:focus {
  outline: none;
}
body input::-webkit-outer-spin-button,
body input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body input[type=number] {
  -moz-appearance: textfield;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin-bottom: 0;
}

#scroll-btn {
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 16px;
  outline: none;
  background-color: #fcab17;
  color: #fff;
  cursor: pointer;
  width: 35px;
  height: 35px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 5px;
}

.tabcontent {
  display: none;
}

.header-wrapper {
  background-color: #02351a;
  position: sticky;
  top: 0;
  z-index: 5;
}

.header-holder {
  display: flex;
  justify-content: center;
  /* 让内容水平居中 */
  align-items: center;
  padding: 10px 0;
}

.header-logo img {
  height: 50px;
  justify-content: center;
  align-items: center;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* 让内容居中 */
  background-image: url(../images/bg.jpg);
  /* 可选 */
  background-size: cover;
  background-repeat: no-repeat;
}

.title {
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.titlelogo {
  margin: 2vh;
  width: 300px;
}

.title h2 {
  font-size: 36px;
  background: #fff500;
  background: radial-gradient(ellipse farthest-side at center center, #fff500 20%, #f6b300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  margin-bottom: 1vh;
}

.pricetxt {
  font-size: 45px;
}

.phonebg {
  position: relative;
  width: 600px;
  /* 或者按需求调整 */
  height: 300px;
  /* 让它匹配手机的比例 */
  background: url("../images/phonebg.png") no-repeat center/contain;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
  /* 让它适配小屏幕 */
}

.phonebg img {
  width: 78%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.phonebg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 确保视频填充整个框架 */
}

.mute-icon {
  position: absolute;
  right: 4%;
  top: 7%;
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 21px;
  transition: background 0.3s;
}

.mute-icon:hover {
  background: rgba(0, 0, 0, 0.8);
}

.floating-dice {
  position: absolute;
  /* 调整大小 */
  animation: floating 3s infinite alternate ease-in-out;
  z-index: 11;
  display: block;
}

/* 第一个骰子 */
.dice1 {
  top: 50%;
  left: 25%;
  animation-delay: 0s;
  width: 8%;
}

/* 第二个骰子 */
.dice2 {
  top: 22%;
  right: 16%;
  width: 11%;
}

/* 漂浮动画 */
@keyframes floatAnimation {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(30px) rotate(15deg);
  }
}
@keyframes floating {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(25px, 25px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.floating-chip {
  position: absolute;
  /* 调整大小 */
  animation: specialcase 3s infinite alternate ease-in-out;
  z-index: 11;
  display: block;
}

.chip1 {
  top: 15%;
  left: 15%;
  width: 6%;
}

.chip2 {
  top: 50%;
  right: 12%;
  width: 6%;
}

@keyframes specialcase {
  0% {
    transform: translate(0, 0);
    opacity: 0.2;
  }
  50% {
    transform: translate(-25px, 25px);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.2;
  }
}
.tnc-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  /* 让整个 tnc-wrapper 在页面居中 */
  align-items: center;
  padding: 5px;
}

.tnc-holder {
  color: #fff;
  font-size: 16px;
  width: -moz-max-content;
  width: max-content;
}
.tnc-holder .tnc-title {
  margin-bottom: 5px;
  font-size: 20px;
}
.tnc-holder li {
  margin-bottom: 10px;
}
.tnc-holder li p {
  margin-bottom: 1px;
}

.custom-list {
  list-style: none;
  padding: 0;
}

.highlight {
  color: #fff200;
  font-size: larger;
  cursor: pointer;
}

.footer-wrapper {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  background-color: #004832;
}

.footer-holder {
  border-top: 1px solid #2e6841;
}

.footer-info {
  text-align: center;
  border-bottom: 1px solid #2e4068;
}

.footer-reps {
  border-bottom: 1px solid #2e4068;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0;
}
.footer-reps img {
  height: 43px;
  opacity: 0.5;
  transition: 0.3s;
  padding: 10px;
}
.footer-reps img:hover {
  opacity: 1;
}

.footer-copyright {
  text-align: center;
  padding: 15px 0;
}

.footer-yellow {
  background-color: #FFFF00;
  padding: 5px;
  text-align: center;
}
.footer-yellow img {
  height: 20px;
}

.registerbtn {
  margin: 10px;
  animation: zoom-in-out 1s ease-in infinite;
  cursor: pointer;
  width: 250px;
  height: auto;
}

.registerbtn:hover {
  filter: brightness(120%);
}

@keyframes zoom-in-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.05, 1.05);
  }
  100% {
    transform: scale(1, 1);
  }
}
@media only screen and (max-width: 991px) {
  .banner-wrapper {
    background-image: unset;
    padding: 0;
  }
  .banner-wrapper .container {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .header-logo img {
    height: 40px;
  }
  .titlelogo {
    margin: 2vh;
    width: 200px;
  }
  .title h2 {
    font-size: 28px;
  }
  .pricetxt {
    font-size: 40px;
  }
  .pricetxt .phonebg {
    width: 90%;
    /* 在小屏幕上变小 */
    height: auto;
    aspect-ratio: 16/9;
    /* 让它保持比例 */
    background-size: contain;
    /* 确保背景显示 */
  }
  .phonebg {
    height: 200px;
    max-width: 95%;
  }
  .phonebg video {
    width: 81%;
    height: 81%;
  }
  .mute-icon {
    font-size: 16px;
    right: 4%;
    top: 15%;
    color: white;
    padding: 2px;
  }
  .registerbtn {
    width: 200px;
  }
  .tnc-wrapper {
    width: 100%;
  }
  .tnc-holder {
    font-size: 13px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    margin: 10px;
    /* Ensure it doesn’t overflow */
  }
  .tnc-holder .tnc-title {
    margin-bottom: 5px;
    font-size: 15px;
  }
  .floating-chip {
    display: none;
  }
  .floating-dice {
    display: none;
  }
}
@media only screen and (max-width: 768px) and (max-width: 700px) {
  .banner-wrapper .container {
    max-width: unset;
    padding: 0;
  }
}/*# sourceMappingURL=index.css.map */