* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}

/* 导航按钮样式 */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* 分页指示器样式 */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 1);
    width: 24px;
    border-radius: 4px;
}

.swiper-pagination {
    bottom: 15px !important;
}

/* 移动端适配 */
@media (max-width: 560px) {
    .swiper-container {
        max-width: 100%;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }
}



/* =============================
   霓虹炫彩下载弹窗（高级版）
============================= */

/* 微信/QQ 内置浏览器提示层 */
.inapp-mask{
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0,0,0,.72);
}
.inapp-arrow{
  position: absolute;
  top: 8px;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid rgba(255,255,255,.85);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.35));
}
.inapp-card{
  position: absolute;
  right: 14px;
  top: 32px;
  width: min(86vw, 360px);
  border-radius: 16px;
  padding: 14px 14px 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.90));
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  color: #111;
}
.inapp-title{
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
}
.inapp-sub{
  font-size: 13px;
  line-height: 1.5;
  opacity: .9;
}
.inapp-btn{
  margin-top: 10px;
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/* 霓虹弹窗遮罩（不虚化背景） */
.neo-mask{
  position: fixed;
  inset: 0;
  z-index: 999990;
  display: flex;
  align-items: center;
  justify-content: center;

  /* ✅弹窗外层完全透明，背景轮播清晰可见 */
  background: transparent !important;

  /* ✅取消任何虚化 */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}


/* 霓虹弹窗 */
.neo-modal{
  width: min(84vw, 340px);

  /* ✅自适应高度 + 兼容各机型，不用vh固定高度 */
  height: auto !important;
  min-height: 235px;         /* ✅更矮 */
  max-height: 76vh; 

  border-radius: 22px;
  padding: 20px 18px 18px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom)); /* iPhone 底部安全区 */

  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.96);

  /* ✅按钮永远在底部，避免被裁切/消失 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* 背景炫彩渐变 */
    background: linear-gradient(135deg,
      rgba(255, 65, 190, .62),
      rgba(160, 80, 255, .58),
      rgba(40, 190, 255, .52)
    );

  /* 玻璃质感 */
  box-shadow:
    0 22px 60px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.16) inset;
}


/* 动态霓虹边框 */
.neo-modal::before{
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 90deg,
    rgba(255,255,255,.0),
    rgba(255,255,255,.55),
    rgba(255,255,255,.0),
    rgba(255,255,255,.35),
    rgba(255,255,255,.0)
  );
  filter: blur(10px);
  opacity: .55;
  animation: neoGlow 2.8s linear infinite;
  pointer-events: none;
}
@keyframes neoGlow{ to { transform: rotate(360deg); } }

/* 背景光斑 */
.neo-modal::after{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(260px 180px at 18% 18%, rgba(255,255,255,.35), rgba(255,255,255,0) 65%),
    radial-gradient(260px 180px at 88% 24%, rgba(255,255,255,.22), rgba(255,255,255,0) 70%),
    radial-gradient(260px 220px at 55% 92%, rgba(0,0,0,.18), rgba(0,0,0,0) 65%);
  pointer-events:none;
}

.neo-close{
  position: absolute;
  left: 12px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.95);
  font-size: 22px;
  line-height: 34px;
  cursor: pointer;
  z-index: 2;
}

.neo-badge{
  position: relative;
  z-index: 2;
  margin-top: 6px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .5px;
  text-shadow: 0 8px 18px rgba(0,0,0,.25);
  animation: badgePop .9s ease both;
}
@keyframes badgePop{
  0%{ transform: translateY(10px) scale(.98); opacity: 0; }
  100%{ transform: translateY(0) scale(1); opacity: 1; }
}

.neo-count{
  position: relative;
  z-index: 2;
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  text-shadow: 0 8px 18px rgba(0,0,0,.22);
}
.neo-num{
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: #ffe66a;
  text-shadow:
    0 10px 22px rgba(0,0,0,.35),
    0 0 16px rgba(255, 240, 120, .55);
  animation: numPulse 1.0s ease-in-out infinite;
}
@keyframes numPulse{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-2px); }
}
.neo-text{
  font-size: 14px;
  font-weight: 700;
  opacity: .95;
}
.neo-dots{
  display: inline-block;
  width: 1.6em;
  text-align: left;
  font-weight: 800;
}

.neo-tip{
  position: relative;
  z-index: 2;
  margin: 10px 6px 0;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
  text-align: center;
  color: rgba(255,255,255,.96);
  text-shadow: 0 10px 18px rgba(0,0,0,.22);
}

.neo-btn{
  position: relative;
  z-index: 5;

  margin: 18px auto 0;
  width: 60%;           /* ✅缩小 40% */
  height: 46px;

  display: block;
  flex: 0 0 auto;       /* ✅不允许被压缩/裁切 */

  border: none;
  border-radius: 14px;
  cursor: pointer;

  background: linear-gradient(135deg, rgba(255, 230, 90, 1), rgba(255, 140, 40, 1));
  box-shadow:
    0 16px 28px rgba(0,0,0,.25),
    0 0 18px rgba(255, 215, 90, .40);
  overflow: hidden;
}

.neo-btn::before{
  content:"";
  position:absolute;
  top: -40%;
  left: -35%;
  width: 40%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.75), rgba(255,255,255,0));
  transform: rotate(20deg);
  animation: btnShine 1.9s linear infinite;
  opacity: .75;
}
@keyframes btnShine{
  0%{ transform: translateX(0) rotate(20deg); }
  100%{ transform: translateX(280%) rotate(20deg); }
}

.neo-btn-text{
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .6px;
  color: #111;
  animation: textBlink 1.0s ease-in-out infinite;
}
@keyframes textBlink{
  0%,100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: .55; transform: scale(1.03); }
}


/* ✅兼容修复：避免安卓浏览器压缩内容导致按钮消失 */
.neo-badge,.neo-count,.neo-tip{ flex: 0 0 auto; }

