/*
*  theme overwrite 
=================================
=================================
=================================*/
/**! ----- font family ---- **/
body {
  font-family: "Aileron", sans-serif, "Aileron", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Aileron", sans-serif;
}

.blockquote {
  font-family: "Noto Serif", serif;
}

/**! ----- colors ---- **/
.bg-color-primary, .btn--bg-primary, .navbar-sticky--on .btn, .btn--bg-grey:hover, .btn--outline:hover, .btn--outline-thick:hover, .btn-border-hover.btn--color-white:before, .card--focused, .card--outline:hover, .card--outline:focus, .social-lists li a:hover, .media-player-icon--fill-primary, .oval, .slick-active .slick-dots--long, .pagination .page-item.active .page-link {
  background: #f5e658;
}

.color-primary, .hero-content .btn:hover .media-player-icon--fill-grey, .btn--bg-white:hover, .btn--color-primary, .btn--color-primary:hover, .btn--color-dark.btn-text-hover:hover, .btn--outline.btn--color-primary, .btn--outline-thick.btn--color-primary, .btn-text-hover:hover, .card--focused .btn__text, .lang-selector .lang-dropdown__item:focus, .lang-selector .lang-dropdown__item:hover, .icon-rounded .icon, .media-player-icon--fill-grey:hover, .btn:hover .media-player-icon--fill-grey i, .pagination .page-item .page-link:hover, .dropdown-item:focus, .dropdown-item:hover, .dropdown-item.active, .dropdown-item:active, .features--slider-2 .slick-arrow:hover i, .footer-widget ul li a:hover, .footer .nav li a:hover {
  color: #2f5bea;
}

.features .swipe-tab.active-tab .swipe-tab__inner {
  -webkit-box-shadow: 0px 2px 0px #2f5bea;
          box-shadow: 0px 2px 0px #2f5bea;
}

.border-primary, .hr--blod, .btn--color-primary, .btn--color-dark.btn-text-hover:hover, .btn--outline:hover, .btn--outline-thick:hover, .btn-text-hover:hover {
  border-color: #2f5bea;
}
.bg-fill-primary {
  fill: #2f5bea;
}

.con img {
  width: 50px; /* 设置图片宽度 */
  height: 50px; /* 设置图片高度 */
border-radius:0.55rem}
.con .text {
  margin-left: 10px;
  font-size: 1.5rem;
}

/* starter.html - benefits block (redesigned, not reusing template icon widgets) */
.starter-benefits {
  margin: 2.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  width: 100%;
}

@media (max-width: 767.98px) {
  .starter-benefits {
    grid-template-columns: 1fr;
  }
}

.starter-benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1.15rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.starter-benefits__item:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
}

.starter-benefits__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(245, 230, 88, 0.12);
  color: #f5e658;
  margin-bottom: 0.85rem;
}

.starter-benefits__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  color: #fff;
}

.starter-benefits__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(231, 234, 238, 0.82);
}

/* Optional: previous "fancy" style (for quick A/B switch) */
.starter-benefits--fancy .starter-benefits__item {
  position: relative;
  background: rgba(1, 8, 31, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.starter-benefits--fancy .starter-benefits__item:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245,230,88,.35), rgba(255,255,255,0), rgba(245,230,88,.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .55;
}

.starter-benefits--fancy .starter-benefits__item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 230, 88, 0.35);
  background: rgba(1, 8, 31, 0.34);
}

/* starter.html - tabs/switcher */
.starter-tabs {
  margin-top: 2.25rem;
  width: 100%;
}

.starter-tabs__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (max-width: 991.98px) {
  .starter-tabs__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .starter-tabs__nav {
    grid-template-columns: 1fr;
  }
}

.starter-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: rgba(231, 234, 238, 0.92);
  cursor: pointer;
  user-select: none;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.starter-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  transform: translateY(-1px);
}

.starter-tab.is-active {
  background: rgba(245, 230, 88, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}

.starter-tab__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f5e658;
}

.starter-tab__text {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.starter-tabs__panels {
  margin-top: 1rem;
}

.starter-tabpanel {
  margin-top: 0.75rem;
}

.starter-panel {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(0,0,0,.16);
}

.starter-panel__title {
  font-size: 1.15rem;
  font-weight: 650;
  color: #fff;
  margin-bottom: 0.35rem;
}

.starter-panel__subtitle {
  font-size: 0.95rem;
  color: rgba(231, 234, 238, 0.82);
  margin-bottom: 0.95rem;
}

.starter-lock {
  position: relative;
  margin-top: 0.5rem;
}

.starter-panel.is-locked .starter-lock {
  min-height: var(--starter-locked-panel-min-height, 380px);
}

.starter-panel.is-locked .starter-lock__content {
  display: none;
}

.starter-lock__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.85rem;
  background: rgba(1, 8, 31, 0.40);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.starter-lock__card {
  width: min(360px, 100%);
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.starter-lock__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.starter-lock__desc {
  font-size: 0.92rem;
  color: rgba(231, 234, 238, 0.82);
  margin-bottom: 0.85rem;
}

.starter-unlock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  border: none;
  background: rgba(245, 230, 88, 0.22);
  color: rgba(245, 230, 88, 1);
  font-weight: 800;
  cursor: pointer;
}

.starter-unlock-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.starter-unlock-btn:hover {
  background: rgba(245, 230, 88, 0.18);
}

.starter-scrollbox {
  max-height: 320px;
  overflow: auto;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(1, 8, 31, 0.22);
}

.starter-list {
  text-align: left;
  margin: 0;
  padding-left: 1.15rem;
}

.starter-list li {
  margin: 0.45rem 0;
  color: rgba(231, 234, 238, 0.9);
  line-height: 1.55;
}

.starter-apps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.starter-apps--tools {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

@media (max-width: 767.98px) {
  .starter-apps {
    grid-template-columns: 1fr;
  }
  .starter-apps--tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .starter-apps--tools {
    grid-template-columns: 1fr;
  }
}

.starter-app {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(1, 8, 31, 0.22);
  color: rgba(231, 234, 238, 0.92);
  text-decoration: none;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.starter-app--tools {
  grid-template-columns: 42px 1fr;
  padding: 0.7rem 0.8rem;
  gap: 0.6rem;
  cursor: pointer;
}

.starter-app:hover {
  background: rgba(1, 8, 31, 0.28);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  transform: translateY(-1px);
  text-decoration: none;
  color: rgba(231, 234, 238, 0.92);
}

.starter-app__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  color: #f5e658;
  font-weight: 700;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.starter-app__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  filter: none;
}

.starter-app__name {
  text-align: left;
  font-weight: 600;
}

.starter-app__cta {
  padding: 0.55rem 0.75rem;
  border-radius: 0.7rem;
  background: rgba(245, 230, 88, 0.14);
  color: rgba(245, 230, 88, 0.95);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* starter.html - fixed viewport background (independent of content height) */
body.starter-page .main {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

body.starter-page {
  --starter-locked-panel-min-height: 200px;
}

@media (max-width: 575.98px) {
  body.starter-page {
    --starter-locked-panel-min-height: 200px;
  }
}

body.starter-page .background-holder {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* starter.html - reduce bottom spacing so cover image sits closer to page end */
body.starter-page .hero.space-bottom--lg {
  padding-bottom: 3rem;
}

/* avoid flicker: hide dynamic product content until backend data loaded */
body.starter-loading #starter-nav-title,
body.starter-loading #starter-nav-icon,
body.starter-loading #starter-hero-title,
body.starter-loading #starter-hero-subtitle,
body.starter-loading #starter-hero-image,
body.starter-loading #starter-order-title,
body.starter-loading #starter-order-desc,
body.starter-loading #starter-price-label,
body.starter-loading #starter-price-current,
body.starter-loading #starter-price-original,
body.starter-loading #starter-bottom-cover,
body.starter-loading #starter-hot-list {
  opacity: 0;
}

body.starter-loaded #starter-nav-title,
body.starter-loaded #starter-nav-icon,
body.starter-loaded #starter-hero-title,
body.starter-loaded #starter-hero-subtitle,
body.starter-loaded #starter-hero-image,
body.starter-loaded #starter-order-title,
body.starter-loaded #starter-order-desc,
body.starter-loaded #starter-price-label,
body.starter-loaded #starter-price-current,
body.starter-loaded #starter-price-original,
body.starter-loaded #starter-bottom-cover,
body.starter-loaded #starter-hot-list {
  opacity: 1;
  transition: opacity .18s ease;
}

/* starter landing - hero main image fixed frame (517x629) */
.starter-hero-image-frame {
  width: 517px;
  height: 629px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

/* make image fill the frame */
img#starter-hero-image.starter-hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* starter.html - paid CTA style */
body.starter-page .btn--bg-green {
  background: #39a34d;
  color: #ffffff;
}

body.starter-page .btn--bg-green:hover {
  color: #ffffff !important;
}

/* starter.html - price + primary CTA tuning for conversion */
body.starter-page .starter-price {
  font-size: 1.05rem;
  line-height: 1.25;
  color: rgba(231, 234, 238, 0.92);
}

body.starter-page .starter-price__label {
  margin-right: 0.5rem;
  font-weight: 700;
  color: rgba(231, 234, 238, 0.9);
}

body.starter-page .starter-price__current {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #ff4d4f;
}

body.starter-page .starter-price__unit {
  margin-left: 0.15rem;
  margin-right: 0.75rem;
  font-weight: 800;
  color: rgba(231, 234, 238, 0.92);
}

body.starter-page .starter-price__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-left: 0.6rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 77, 79, 0.22), rgba(255, 77, 79, 0.10));
  border: 1px solid rgba(255, 77, 79, 0.32);
  color: rgba(255, 77, 79, 0.98);
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
}

body.starter-page .starter-price__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 77, 79, 0.16);
}

body.starter-page .starter-price__badge-text {
  white-space: nowrap;
}

body.starter-page .starter-price__original {
  opacity: 0.75;
  font-size: 0.95rem;
  margin-left: 0.25rem;
}

body.starter-page .starter-primary-cta {
  font-size: 1rem; /* keep readable on mobile */
  padding: 1.05rem 2.75rem;
  border-radius: 0.95rem;
}

@media (max-width: 575.98px) {
  body.starter-page .starter-primary-cta {
    width: 100%;
  }
}

/* starter.html - cover image */
.starter-cover {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.starter-cover__img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* starter.html - hot downloads container */
.starter-hot-container {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(0,0,0,.14);
}

/* starter.html - hot downloads (paid only) */
.starter-hot {
  width: 100%;
}

.starter-hot__header {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: rgba(231, 234, 238, 0.92);
  margin-bottom: 1rem;
}

.starter-hot__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 77, 79, 0.14);
  color: #ff4d4f;
}

.starter-hot__title {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.starter-hot__list {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.starter-hot__item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(0,0,0,.14);
}

.starter-hot__game-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.95rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.starter-hot__game-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.starter-hot__meta {
  text-align: left;
  min-width: 0;
}

.starter-hot__game-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.starter-hot__cta {
  padding: 0.75rem 1.1rem;
  border-radius: 0.85rem;
  font-size: 0.92rem;
}

@media (max-width: 575.98px) {
  .starter-hot__list {
    grid-template-columns: 1fr;
  }
  .starter-hot__item {
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
  }
  .starter-hot__cta {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* starter.html - pay modal */
.starter-pay-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.starter-pay-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.starter-pay-modal__dialog {
  position: relative;
  width: min(420px, calc(100% - 2rem));
  margin: 12vh auto 0;
  padding: 1.2rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(1, 8, 31, 0.92);
  color: rgba(231, 234, 238, 0.92);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
}

.starter-pay-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.65rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(231, 234, 238, 0.92);
  cursor: pointer;
}

.starter-pay-modal__title {
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.9rem;
}

.starter-pay-modal__qr {
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.starter-pay-modal__qr-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.starter-pay-modal__hint {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: rgba(231, 234, 238, 0.82);
  line-height: 1.5;
  text-align: center;
}

/* 红包弹窗样式 */
.starter-redpacket-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.starter-redpacket-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.starter-redpacket-modal__dialog {
  position: relative;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 25%, #ff9f43 50%, #ff6b6b 75%, #ee5a24 100%);
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  max-width: 340px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(255, 107, 107, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1) inset;
  animation: redpacketBounce 0.8s ease-out;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

@keyframes redpacketBounce {
  0% { transform: scale(0.2) rotate(-10deg); opacity: 0; }
  40% { transform: scale(1.1) rotate(5deg); }
  70% { transform: scale(0.95) rotate(-2deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.starter-redpacket-modal__content {
  text-align: center;
  color: white;
  position: relative;
}

.starter-redpacket-modal__content::before {
  content: '🎉';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  animation: celebrate 1.5s ease-in-out infinite;
}

@keyframes celebrate {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.2); }
}

.starter-redpacket-modal__icon {
  margin-bottom: 1.5rem;
  animation: redpacketGlow 2.5s ease-in-out infinite alternate;
}

@keyframes redpacketGlow {
  0% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5)); }
  50% { transform: scale(1.05) rotate(5deg); filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.8)); }
  100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5)); }
}

@keyframes iconBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.starter-redpacket-modal__title {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

.starter-redpacket-modal__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-weight: 900;
  position: relative;
}

.starter-redpacket-modal__amount::before {
  content: '💰';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: moneyFly 1s ease-in-out infinite;
}

@keyframes moneyFly {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(5px); }
}

.starter-redpacket-modal__amount::after {
  content: '💰';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: moneyFly 1s ease-in-out infinite reverse;
}

.starter-redpacket-modal__amount-value {
  font-size: 3rem;
  color: #ffeb3b;
  text-shadow: 0 0 20px rgba(255, 235, 59, 0.8), 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 235, 59, 0.6);
  font-weight: 900;
  animation: amountPulse 2s ease-in-out infinite;
}

@keyframes amountPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.starter-redpacket-modal__amount-label {
  font-size: 1.8rem;
  margin-left: 0.5rem;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.starter-redpacket-modal__desc {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.starter-redpacket-modal__pay-btn {
  min-width: 160px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ff5722, #ff9800);
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4), 0 0 30px rgba(255, 152, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.starter-redpacket-modal__pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5), 0 0 40px rgba(255, 152, 0, 0.4);
  background: linear-gradient(45deg, #e64a19, #f57c00);
}


/*! Place your custom styles here (below). 
      This will make it much easier to update the template later - you'll only need to preserve "this file
  ===================================================================================================*/

/* ================================
   2.html - progress simulator (minimal)
   Single bar + centered hint text
================================ */
.hero--progress .container {
  min-height: calc(100vh - 600px); /* header + fixed footer visual offset */
  display: flex;
  align-items: center;
}

.hero--progress .row {
  width: 100%;
}

/* remove the old "big bottom margin" so the block can sit in the visual center */
.hero--progress .mb-100 {
  margin-bottom: 0 !important;
}

/* remove glass blur/border for the progress block (2.html only) */
.hero--progress .starter-panel.starter-progress-card {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.starter-progress-card {
  width: 100%;
  max-width: none;
}

.starter-progress__bar {
  width: 100%;
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.starter-progress__bar-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(245, 230, 88, 0.98), rgba(245, 230, 88, 0.55));
  box-shadow: 0 6px 18px rgba(245, 230, 88, 0.18);
  transition: width 180ms ease;
}

.starter-progress__hint {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  color: rgba(231, 234, 238, 0.92);
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
}

.starter-progress__hint-text {
  color: rgba(231, 234, 238, 0.92);
}

@media (max-width: 575.98px) {
  .starter-progress__hint {
    font-size: 1.02rem;
    gap: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .starter-progress__bar-fill {
    transition: none;
  }
}

/* ================================
   教程面板中的图片样式 - 保持原始尺寸，不拉伸
================================ */
.starter-scrollbox img {
  max-width: none !important;
  width: auto !important;
  height: auto !important;
  object-fit: none !important;
}

/* ================================
   教程面板中的段落样式 - 处理换行显示
================================ */
.starter-scrollbox p {
  margin: 0 0 0.75rem 0;
  line-height: 1.6;
  color: rgba(231, 234, 238, 0.9);
}

.starter-scrollbox p:last-child {
  margin-bottom: 0;
}

/* ================================
   Pay modal v2 (wechat/alipay tabs)
   Overrides old modal styles above
================================ */
.starter-pay-modal__dialog {
  padding: 1.15rem 1.15rem 1.1rem;
  width: min(460px, calc(100% - 2rem));
  background: rgba(1, 8, 31, 0.78);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.starter-pay-modal__header {
  padding-right: 2.4rem; /* leave room for close button */
}

.starter-pay-modal__title {
  margin-bottom: 0.2rem;
  letter-spacing: 0.2px;
}

.starter-pay-modal__subtitle {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(231, 234, 238, 0.75);
  margin-bottom: 0.95rem;
}

.starter-pay-modal__methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.starter-pay-modal__method-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 0.7rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(231, 234, 238, 0.92);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.starter-pay-modal__method-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
}

.starter-pay-modal__method-btn.is-active {
  border-color: rgba(245, 230, 88, 0.7);
  background: rgba(245, 230, 88, 0.14);
  color: #fff;
  box-shadow: 0 10px 30px rgba(245, 230, 88, 0.10);
}

.starter-pay-modal__method-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.starter-pay-modal__method-icon-img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.starter-pay-modal__method-text {
  font-weight: 800;
  font-size: 0.96rem;
}

.starter-pay-modal__qr {
  /* force vertical layout: head on top, QR box on next line */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  padding: 0;
  border: none;
  background: transparent;
}

.starter-pay-modal__qr-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: rgba(231, 234, 238, 0.78);
}

.starter-pay-modal__qr-method {
  color: rgba(245, 230, 88, 1);
  font-weight: 900;
}

.starter-pay-modal__qr-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.85rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

/* qrcodejs container (table/canvas) */
#starter-pay-qr-box {
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

#starter-pay-qr-box table {
  border-collapse: collapse;
}

#starter-pay-qr-box td {
  padding: 0;
}

.starter-pay-modal__qr-img {
  width: 240px;
  height: 240px;
  display: block;
  margin: 0 auto;
  border-radius: 0.75rem;
  background: #fff; /* helps real QR be readable */
  padding: 0.5rem;
  /* 默认隐藏，当需要显示静态图片时再显示 */
  display: none;
}

.starter-pay-modal__hint {
  margin-top: 0.9rem;
}


@media (max-width: 360px) {
  .starter-pay-modal__method-text {
    font-size: 0.92rem;
  }
  .starter-pay-modal__qr-img {
    width: 220px;
    height: 220px;
  }
}