* {
  box-sizing: border-box;
}

:root {
  --page-scale: 1;
  --stage-height: 3210px;
  --brand-orange: #ff7a08;
  --brand-orange-deep: #ff5200;
  --brand-gold: #ffba3f;
  --ink: #151515;
  --muted: #5c5c5c;
  --warm-line: #ffd29c;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #f3f3f3;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.mobile-shell {
  position: relative;
  width: 750px;
  height: var(--stage-height, 3210px);
  overflow: hidden;
  background: #ffffff;
}

.stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 750px;
  height: var(--stage-height, 3210px);
  overflow: hidden;
  transform: scale(var(--page-scale, 1));
  transform-origin: top left;
  background:
    radial-gradient(circle at 50% 1456px, rgba(255, 132, 0, 0.13) 0, rgba(255, 132, 0, 0.04) 178px, rgba(255, 255, 255, 0) 360px),
    linear-gradient(180deg, #ffffff 0%, #fffdf9 64%, #ffffff 100%);
}

.stage::before,
.stage::after {
  content: "";
  position: absolute;
  left: -110px;
  width: 970px;
  pointer-events: none;
}

.stage::before {
  top: 1412px;
  height: 180px;
  border-bottom: 2px solid rgba(255, 122, 8, 0.16);
  border-radius: 0 0 50% 50%;
  transform: rotate(-3deg);
}

.stage::after {
  top: 1708px;
  height: 132px;
  background: linear-gradient(172deg, rgba(255, 122, 8, 0) 36%, rgba(255, 122, 8, 0.08) 37%, rgba(255, 122, 8, 0.02) 58%, rgba(255, 255, 255, 0) 60%);
}

.asset,
.casino-card,
.download-link {
  position: absolute;
  display: block;
}

.asset,
.feature img,
.casino-card img,
.download-link img {
  user-select: none;
  -webkit-user-drag: none;
}

.top-header {
  position: absolute;
  left: 0;
  top: var(--sticky-header-top, 0px);
  width: 750px;
  height: 140px;
  z-index: 20;
}

.top-header-bg {
  left: 0;
  top: 0;
  width: 750px;
  height: 140px;
  pointer-events: none;
}

.nav-logo {
  left: 62px;
  top: 16px;
  width: 204px;
  height: 96px;
}

.top-nav {
  position: absolute;
  left: 312px;
  top: 11px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  height: 106px;
  color: var(--ink);
  font-family: "MicrosoftYaHei-Bold", "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 106px;
  border-radius: 22px;
  cursor: pointer;
  user-select: none;
}

.nav-link::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  margin-bottom: 8px;
  color: currentColor;
  opacity: 0.72;
}

.nav-link:nth-child(1)::before {
  background: currentColor;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 80% 92%, 50% 70%, 20% 92%, 32% 56%, 2% 35%, 39% 35%);
}

.nav-link:nth-child(2)::before {
  border: 3px solid currentColor;
  border-radius: 7px;
  background:
    linear-gradient(currentColor, currentColor) 8px 9px / 17px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 8px 18px / 17px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 8px 27px / 11px 3px no-repeat;
}

.nav-link:nth-child(3)::before {
  border: 3px solid currentColor;
  border-radius: 8px;
  background:
    linear-gradient(currentColor, currentColor) 15px 0 / 3px 35px no-repeat,
    linear-gradient(currentColor, currentColor) 0 15px / 35px 3px no-repeat;
}

.nav-link-active {
  color: var(--brand-orange);
  background: #ffe2bf;
}

.nav-link-active::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 12px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 5px 12px rgba(255, 122, 8, 0.22);
}

.logo {
  left: 38px;
  top: 18px;
  width: 184px;
  height: 87px;
}

.hero-title {
  left: 28px;
  top: 105px;
  width: 367px;
  height: 153px;
}

.hero-slogan {
  left: 14px;
  top: 272px;
  width: 395px;
  height: 49px;
}

.intro {
  position: absolute;
  left: 25px;
  top: 351px;
  width: 430px;
  color: #d8c184;
  font-size: 21px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.65);
}

.intro p {
  margin: 0;
  white-space: nowrap;
}

.intro strong {
  color: #fbf0bd;
  font-weight: 900;
}

.feature {
  height: 68px;
}

.feature img {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-site {
  left: 41px;
  top: 614px;
  width: 188px;
}

.feature-news {
  left: 281px;
  top: 615px;
  width: 193px;
}

.feature-guide {
  left: 519px;
  top: 616px;
  width: 197px;
}

.feature-benefit {
  left: 41px;
  top: 722px;
  width: 188px;
}

.feature-community {
  left: 281px;
  top: 721px;
  width: 194px;
}

.recommend,
.brand-intro,
.redeem {
  position: absolute;
  left: 0;
  top: 0;
  width: 750px;
}

.recommend-title {
  left: 72px;
  top: 161px;
  width: 175px;
  height: 34px;
  z-index: 1;
}

.casino-card {
  left: var(--card-left);
  top: var(--card-top);
  width: var(--card-width, 312px);
  height: 225px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(145deg, #ff8808 0%, #ffc74c 100%);
  box-shadow:
    0 12px 22px rgba(255, 116, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.casino-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.casino-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
  background: #fff6e8;
}

.card-888-entertainment {
  --card-left: 52px;
  --card-top: 228px;
  --card-width: 312px;
}

.card-888-electronic {
  --card-left: 386px;
  --card-top: 228px;
  --card-width: 312px;
}

.card-vegas {
  --card-left: 52px;
  --card-top: 468px;
  --card-width: 312px;
}

.card-bofa {
  --card-left: 386px;
  --card-top: 468px;
  --card-width: 312px;
}

.card-legend {
  --card-left: 52px;
  --card-top: 708px;
  --card-width: 312px;
}

.card-macau {
  --card-left: 386px;
  --card-top: 708px;
  --card-width: 312px;
}

.card-bofa-usdt {
  --card-left: 52px;
  --card-top: 948px;
  --card-width: 312px;
}

.card-888-physicaleducation {
  --card-left: 386px;
  --card-top: 948px;
  --card-width: 312px;
}

.download-link {
  left: 45px;
  top: var(--download-link-top, 1250px);
  width: 659px;
  height: 111px;
  border-radius: 56px;
  z-index: 2;
  filter: drop-shadow(0 14px 18px rgba(255, 101, 0, 0.24));
}

.download-link:focus-visible,
.casino-card:focus-visible,
.nav-link:focus-visible,
.refresh-badge:focus-visible,
.refresh-btn:focus-visible,
.copy-btn:focus-visible {
  outline: 3px solid rgba(255, 122, 8, 0.9);
  outline-offset: 4px;
}

.download-link img {
  width: 659px;
  height: 111px;
}

.world-cup {
  position: absolute;
  left: 53px;
  top: 1405px;
  width: 644px;
  height: 109px;
  z-index: 1;
}

.world-cup-hero {
  left: 0;
  top: 0;
  width: 644px;
  height: 109px;
}

.intro-heading {
  left: 0;
  top: 1550px;
  width: 750px;
  height: 323px;
  object-fit: cover;
  object-position: center -104px;
  z-index: 1;
}

.intro-copy {
  display: none;
}

.redeem-title {
  left: 44px;
  top: var(--redeem-title-top, 1798px);
  width: 343px;
  height: 104px;
  z-index: 1;
}

.today-title {
  left: 107px;
  top: var(--today-title-top, 1937px);
  width: 536px;
  height: 84px;
  z-index: 1;
}

.refresh-badge {
  left: 633px;
  top: calc(var(--today-title-top, 1937px) + 23px);
  width: 102px;
  height: 53px;
  cursor: pointer;
  z-index: 2;
}

.refresh-btn {
  left: 633px;
  top: calc(var(--today-title-top, 1937px) + 14px);
  width: 106px;
  height: 56px;
  padding: 0;
  border: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

.refresh-btn img {
  display: block;
  width: 106px;
  height: 56px;
}

.code-board {
  position: absolute;
  left: 6px;
  top: var(--code-board-top, 2026px);
  width: 732px;
  height: 1076px;
  overflow: visible;
  border: 0;
  border-radius: 19px;
  background: #ffd18f;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.48),
    0 14px 26px rgba(255, 119, 0, 0.15);
  z-index: 1;
}

.code-row {
  position: absolute;
  left: 16px;
  top: var(--row-top);
  width: 699px;
  height: 114px;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--code-row-bg) no-repeat center / 699px 114px;
  box-shadow: 0 6px 12px rgba(255, 91, 0, 0.1);
}

.code-row h3,
.code-row p,
.code-value {
  position: absolute;
  margin: 0;
  white-space: nowrap;
  letter-spacing: 0;
  text-shadow: none;
}

.code-row h3 {
  left: 124px;
  top: 26px;
  max-width: 222px;
  overflow: hidden;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 25px;
  text-overflow: ellipsis;
}

.code-row p {
  left: 124px;
  top: 62px;
  max-width: 222px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-overflow: ellipsis;
}

.code-value {
  left: 368px;
  top: 36px;
  width: 142px;
  color: #ffffff;
  font-size: 31px;
  font-weight: 900;
  line-height: 42px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(84, 30, 0, 0.22);
}

.copy-btn {
  position: absolute;
  display: block;
  left: 515px;
  top: 19px;
  width: 174px;
  height: 77px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  background: transparent var(--copy-button-bg) no-repeat center / 174px 77px;
  box-shadow: 0 5px 10px rgba(175, 74, 0, 0.13);
}

.copy-btn.is-copied {
  filter: brightness(1.08);
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 30;
  max-width: calc(100vw - 48px);
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, #ff9b22 0%, #ff5a00 100%);
  box-shadow: 0 10px 24px rgba(255, 101, 0, 0.28);
  font-size: 16px;
  font-weight: 900;
  line-height: 22px;
  letter-spacing: 0;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.footer {
  position: absolute;
  left: 0;
  top: var(--footer-top, 3134px);
  width: 750px;
  color: #333333;
  font-size: 19px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: center;
}
