html{
  scroll-behavior:smooth;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
  background:
    radial-gradient(circle at 12% 10%, rgba(255,180,60,0.08), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(255,180,60,0.05), transparent 16%),
    linear-gradient(180deg,#040506 0%,#000000 100%);
  font-family:"Microsoft YaHei",sans-serif;
  color:#fff;
  padding:14px;
}
a{
  text-decoration:none;
  color:inherit;
}
.page{
  max-width:1460px;
  margin:0 auto;
}

/* 顶部 */
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  padding:0px 8px 10px;
}

/* Logo */
.logo{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:240px;
  flex-shrink:0;
}

.logo-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}

/* 按钮 */
.top-actions{
  display:flex;
  gap:18px;
  align-items:center;
}
.top-btn{
  min-width:170px;
  padding:16px 22px;
  border-radius:16px;
  font-size:18px;
  font-weight:800;
  text-align:center;
  transition:.25s;
}
.help-btn{
  color:#f3d58d;
  border:1px solid rgba(255,210,120,0.20);
  background:rgba(255,255,255,0.02);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.04);
}
.help-btn:hover{
  background:rgba(255,210,120,0.06);
}
.app-btn{
  color:#241700;
  background:linear-gradient(180deg,#ffebb3 0%,#edbe52 100%);
  box-shadow:0 12px 26px rgba(232,174,53,0.18);
}

/* 信任条 */
.trust-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid rgba(255,210,120,0.10);
  border-radius:22px 22px 0 0;
  overflow:hidden;
  background:rgba(255,255,255,0.015);
}
.trust-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 24px;
  border-right:1px solid rgba(255,210,120,0.08);
}
.trust-item:last-child{
  border-right:none;
}
.trust-icon{
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.trust-icon img{
  width:64px;
  height:64px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 0 10px rgba(255,190,70,.25));
}
.trust-text b{
  display:block;
  font-size:18px;
  color:#f4d37e;
  margin-bottom:4px;
}
.trust-text span{
  font-size:14px;
  color:#b6a991;
}

/* Hero */
.hero{
  border:1px solid rgba(255,210,120,0.10);
  border-top:none;
  border-radius:0 0 22px 22px;
  overflow:hidden;
  background:
    radial-gradient(circle at 72% 36%, rgba(255,180,60,0.14), transparent 20%),
    linear-gradient(180deg,#07090d 0%,#010203 100%);
  box-shadow:0 22px 50px rgba(0,0,0,0.34);
}
.hero-inner{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  min-height:340px;
  align-items:center;
}
.hero-left{
  padding:24px 28px 24px 28px;
}
.hero-title{
  font-size:82px;
  line-height:1.04;
  font-weight:900;
  letter-spacing:-1px;

  background:linear-gradient(
    180deg,
    #fff6c9 0%,
    #ffe08a 18%,
    #f8c95c 38%,
    #d9961e 68%,
    #8e5a06 100%
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  text-shadow:
    0 1px 0 rgba(255,255,255,.22),
    0 0 10px rgba(255,230,150,.26),
    0 0 24px rgba(255,195,80,.34),
    0 0 42px rgba(255,160,30,.22),
    0 12px 24px rgba(0,0,0,.34);
}

.hero-sub{
    margin-top:18px;
  font-size:26px;
  font-weight:700;
  color:#d8aa45;
  letter-spacing:2px;
  text-shadow:
    0 0 8px rgba(255,220,120,.24),
    0 0 18px rgba(255,180,60,.20),
    0 0 28px rgba(255,150,30,.10);
}

.hero-title-image{
  margin-top:4px;
}

.hero-title-image img{
  width:100%;
  max-width:760px;
  height:auto;
  display:block;
}
.hero-actions{
  margin-top:24px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.hero-main-btn,
.hero-ghost-btn{
  min-width:260px;
  padding:20px 28px;
  border-radius:18px;
  font-size:22px;
  font-weight:900;
  text-align:center;
}
.hero-main-btn{
  color:#241700;
  background:linear-gradient(180deg,#fff0b4 0%,#f4c45e 45%,#d99827 100%);
  box-shadow:
    0 18px 38px rgba(232,174,53,0.24),
    inset 0 1px 0 rgba(255,255,255,0.38);
}
.hero-ghost-btn{
  color:#f4d893;
  border:1px solid rgba(255,210,120,0.18);
  background:rgba(255,255,255,0.02);
}

/* 右侧主视觉 */
.hero-right{
  position:relative;
  min-height:340px;
  overflow:hidden;
  background:
    linear-gradient(140deg, transparent 0%, transparent 48%, rgba(255,185,70,0.06) 49%, transparent 66%),
    linear-gradient(28deg, transparent 0%, transparent 70%, rgba(255,185,70,0.05) 71%, transparent 100%);
}
.hero-right-image{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-right-image img{
  width:100%;
  max-width:670px;
  height:auto;
  display:block;
}
.hero-glow{
  position:absolute;
  right:160px;
  top:26px;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,220,120,0.22), transparent 70%);
}
.hero-ring{
  position:absolute;
  right:195px;
  top:52px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle at 50% 38%, #3f2b0b 0%, #171006 52%, #060503 100%);
  border:8px solid #c89028;
  box-shadow:
    0 0 0 4px rgba(255,220,120,0.20),
    0 0 24px rgba(255,185,70,0.16),
    inset 0 0 18px rgba(255,255,255,0.04);
}
.hero-ring::before{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:50%;
  border:2px solid rgba(255,225,150,0.40);
}
.hero-crown{
  position:absolute;
  top:22px;
  left:50%;
  transform:translateX(-50%);
  font-size:42px;
  color:#f2c76f;
}
.hero-ring-text{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
}
.hero-ring-text b{
  font-size:76px;
  line-height:1;
  color:#f6d67d;
}
.hero-ring-text span{
  margin-top:12px;
  font-size:24px;
  font-weight:800;
  color:#e2be67;
}

/* 装饰元素 */
.gold-ribbon{
  position:absolute;
  right:10px;
  bottom:58px;
  width:430px;
  height:90px;
  border-radius:100px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,190,60,0.06) 18%,
      rgba(255,190,60,0.22) 50%,
      rgba(255,190,60,0.08) 82%,
      transparent 100%);
}
.gold-stage{
  position:absolute;
  right:170px;
  bottom:34px;
  width:320px;
  height:46px;
  border-radius:999px;
  background:linear-gradient(180deg,#a9701a 0%,#f0bf59 38%,#87580f 100%);
  box-shadow:0 12px 24px rgba(0,0,0,0.34);
}
.gold-stage::before{
  content:"";
  position:absolute;
  left:20px;
  right:20px;
  top:7px;
  bottom:7px;
  border-radius:999px;
  background:linear-gradient(180deg,#6a4710,#d7a744,#5f3f0e);
}

.card-a,
.card-b{
  position:absolute;
  width:88px;
  height:130px;
  border-radius:14px;
  background:linear-gradient(180deg,#3a2a0b 0%,#111 100%);
  border:1px solid rgba(255,220,120,0.18);
  color:#f2d077;
  font-size:42px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 16px 32px rgba(0,0,0,0.34);
}
.card-a{
  right:395px;
  top:76px;
  transform:rotate(-10deg);
}
.card-b{
  right:120px;
  top:92px;
  transform:rotate(16deg);
}

.gold-chip{
  position:absolute;
  right:470px;
  top:170px;
  width:54px;
  height:54px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #ffe9a5 0%, #e5b246 52%, #9a6816 100%);
  box-shadow:0 12px 20px rgba(0,0,0,0.28);
}
.gold-chip::before{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:50%;
  border:2px solid rgba(70,45,5,0.55);
}

.gold-dice{
  position:absolute;
  right:374px;
  bottom:58px;
  width:42px;
  height:42px;
  border-radius:8px;
  transform:rotate(12deg);
  background:linear-gradient(180deg,#8b651f,#f0c25b);
  box-shadow:0 10px 16px rgba(0,0,0,0.34);
}
.gold-dice::before,
.gold-dice::after{
  content:"";
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#2c1a00;
}
.gold-dice::before{
  left:10px;
  top:10px;
  box-shadow:14px 0 #2c1a00, 0 14px #2c1a00, 14px 14px #2c1a00;
}
.gold-dice::after{
  left:17px;
  top:17px;
}

.hero-vip{
  position:absolute;
  right:28px;
  bottom:16px;
  font-size:98px;
  line-height:1;
  font-weight:900;
  color:#f6d67f;
  text-shadow:0 8px 22px rgba(255,180,60,0.18);
}


/* 产品区 */
.platforms{
  padding:32px 0 12px;
}

.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin-bottom:12px;
}

.title-line{
  width:180px;
  height:1px;
  background:linear-gradient(90deg,transparent,#c9962e,transparent);
}

.section-title h2{
  font-size:30px;
  color:#f6d67d;
  text-align:center;
  font-weight:900;
  line-height:1.1;
}

.section-title p{
  margin-top:2px;
  font-size:11px;
  letter-spacing:3px;
  text-align:center;
  color:#8f7442;
}

.platform-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
  gap:18px;
}

.platform-card{
  position:relative;
  padding:18px 12px 14px;
  min-height:168px;

  border-radius:18px;
  border:1px solid transparent;

  background:
    linear-gradient(
      180deg,
      #0b0b0c 0%,
      #050505 100%
    ) padding-box,
    linear-gradient(
      180deg,
      rgba(255,235,180,.55) 0%,
      rgba(201,150,60,.20) 42%,
      rgba(120,75,20,.14) 100%
    ) border-box;

  box-shadow:0 14px 28px rgba(0,0,0,.28);
  transition:.25s;
}

.platform-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(255,180,60,.12);
}

.tag{
  position:absolute;
  top:0;
  left:0;
  padding:6px 12px;
  border-radius:16px 0 12px 0;
  font-size:13px;
  font-weight:900;
}

.tag.hot{
  background:#e1251b;
  color:#fff;
}

.tag.new{
  background:#f0c24d;
  color:#231500;
}

.tag.vip{
  background:linear-gradient(
    180deg,
    #fff2b8 0%,
    #efc458 55%,
    #b97a16 100%
  );
  color:#1b1200;
}
.platform-logo{
  height:56px;
  margin-top:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.platform-logo img{
  max-width:140px;
  max-height:58px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}

.platform-logo-text{
  margin-top:18px;
  font-size:42px;
  font-weight:900;
  text-align:center;
  color:#f2c96d;
}

.platform-card h3{
  margin-top:16px;
  font-size:28px;
  text-align:center;
  color:#f7d985;
}

.platform-card p{
  margin-top:8px;
  font-size:15px;
  text-align:center;
  color:#a89b84;
  min-height:36px;
}

.play-btn{
  display:block;
  margin-top:38px;
  padding:11px 8px;
  border-radius:14px;
  text-align:center;
  font-size:16px;
  font-weight:900;
  letter-spacing:.5px;
  color:#f4d68a;

  border:1px solid transparent;

background:
linear-gradient(
180deg,
#141414 0%,
#090909 45%,
#020202 100%
) padding-box,

linear-gradient(
180deg,
rgba(255,235,180,.55) 0%,
rgba(201,150,60,.28) 45%,
rgba(90,55,12,.10) 100%
) border-box;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(255,170,50,.12),
    0 8px 18px rgba(0,0,0,.42),
    0 0 12px rgba(255,180,60,.08);

  transition:all .25s ease;
}

.platform-card:hover .play-btn{
  transform:translateY(-2px);
  color:#ffe7a8;

  border:1px solid rgba(255,210,90,.75);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(255,190,70,.20),
    0 14px 26px rgba(0,0,0,.48),
    0 0 18px rgba(255,190,70,.22);
}

.play-btn:active{
  transform:translateY(0);
}

.platform-card .tag,
.platform-card .platform-logo,
.platform-card p{
  position:relative;
  z-index:2;
}

.play-btn{
  position:relative;
  z-index:3;
}
/* 底部支付区 */
.site-footer{
  margin-top:36px;
  padding:34px 18px 26px;
  border-top:1px solid rgba(255,210,120,.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,190,70,.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.015), rgba(0,0,0,.0));
  text-align:center;
}

.footer-brand{
  font-size:34px;
  font-weight:900;
  letter-spacing:1px;
  color:#f6d67d;
  text-shadow:
    0 0 10px rgba(255,210,100,.18),
    0 0 24px rgba(255,170,50,.12);
}

.footer-pay-title{
  margin-top:0;
}

.footer-pay-title h3{
  font-size:20px;
  color:#f4d37e;
  font-weight:900;
  letter-spacing:2px;
}

.footer-pay-title p{
  margin-top:2px;
  font-size:10px;
  letter-spacing:3px;
  color:#8f7442;
}

.pay-grid{
  margin:14px auto 0;
  display:grid;
  grid-template-columns:repeat(6, 132px);
  justify-content:center;
  gap:9px;
  max-width:none;
}

.pay-item{
  height:56px;
  border-radius:13px;
  border:1px solid rgba(255,190,70,.26);
  background:
    linear-gradient(180deg,#0c0c0d 0%,#050505 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 8px 18px rgba(0,0,0,.26),
    0 0 10px rgba(255,180,60,.05);
}

.pay-item img{
  max-width:86px;
  max-height:30px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}

.footer-copy{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(255,210,120,.10);
  font-size:14px;
  color:#8c7a55;
}
