/* 响应式 */
@media (max-width: 1100px){
  .hero-inner{
    grid-template-columns:1fr;
  }
  .trust-strip{
    grid-template-columns:repeat(2,1fr);
  }
  .trust-item:nth-child(2){
    border-right:none;
  }
}

/* iPad / 平板端优化 */
@media (min-width: 761px) and (max-width: 1180px){

  .page{
    max-width:100%;
    overflow:hidden;
  }

  .topbar{
    align-items:center;
    gap:14px;
  }

  .logo{
    width:200px;
  }

  .top-actions{
    gap:12px;
  }

  .top-btn{
    min-width:140px;
    padding:13px 16px;
    font-size:16px;
    border-radius:14px;
  }

  .trust-item{
    padding:16px 18px;
    gap:10px;
  }

  .trust-icon{
    width:56px;
    height:56px;
  }

  .trust-icon img{
    width:50px;
    height:50px;
  }

  .hero-left{
    padding:22px;
  }

  .hero-title{
    font-size:clamp(48px, 7vw, 72px);
  }

  .hero-main-btn,
  .hero-ghost-btn{
    min-width:220px;
    padding:17px 22px;
    font-size:19px;
  }

  .platform-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:14px;
  }

  .platform-card{
    padding:14px 10px 12px;
  }

  .platform-logo{
    height:54px;
    margin-top:6px;
  }

  .platform-logo img{
    max-width:120px;
    max-height:48px;
  }

  .platform-card h3{
    font-size:24px;
  }

  .platform-card p{
    margin-top:6px;
    min-height:30px;
  }

  .play-btn{
    margin-top:10px;
  }

  .pay-grid{
    grid-template-columns:repeat(3, 150px);
  }
}

@media (max-width:760px){

  body{
    padding:10px;
    overflow-x:hidden;
  }

  .page{
    width:100%;
    max-width:100%;
    overflow:hidden;
  }

  /* 顶部：紧凑 */
  .topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:8px 0 10px;
  }

  .logo{
    width:150px;
    margin:0;
  }

  .logo img{
    width:100%;
    height:auto;
  }

  .top-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    flex:1;
  }

  .top-btn{
    min-width:0;
    width:100%;
    padding:10px 5px;
    font-size:13px;
    border-radius:12px;
    white-space:nowrap;
  }

  /* 信任区：4列 */
  .trust-strip{
    grid-template-columns:repeat(4,1fr);
    border-radius:16px 16px 0 0;
  }

  .trust-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    padding:10px 4px;
    text-align:center;
    border-right:1px solid rgba(255,210,120,0.08);
  }

  .trust-icon{
    width:38px;
    height:38px;
  }

  .trust-icon img{
    width:34px;
    height:34px;
  }

  .trust-text b{
    font-size:12px;
    margin-bottom:0;
    line-height:1.15;
  }

  .trust-text span{
    display:none;
  }

  /* Hero：手机端隐藏 */
  .hero{
    display:none !important;
  }

  /* 产品区：2列紧凑版 */
  .platforms{
    padding:18px 0 10px;
  }

  .section-title{
    gap:10px;
    margin-bottom:8px;
  }

  .title-line{
    width:70px;
  }

  .section-title h2{
    font-size:23px;
    line-height:1.15;
  }

  .platform-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:8px;
  }

  .platform-card{
  padding:6px 5px 6px;
  min-height:82px;
  border-radius:10px;
  }

  .tag{
    font-size:12px;
    padding:5px 10px;
  }

  .platform-logo{
  height:24px;
  margin-top:2px;
  }

  .platform-logo img{
  max-width:72px;
  max-height:24px;
  }

  .platform-card p{
    margin-top:3px;
    font-size:11px;
    min-height:20px;
  }

  .play-btn{
    margin-top:20px;
    padding:5px 2px;
    font-size:10px;
    border-radius:12px;
  }

  /* 手机端隐藏支付区标题+图标 */
  .footer-pay-title,
  .pay-grid{
    display:none !important;
  }

  .site-footer{
    margin-top:10px;
    padding:9px 8px 11px;
  }

  .footer-copy{
    margin-top:0;
    padding-top:0;
    border-top:none;
    font-size:11px;
  }
}