/* ---- claimX1 page ---- */
.claimX1-section {
  --claimX1-header-bg: #4a21ef;
  --claimX1-left-bg: linear-gradient(180deg, #159ee8 0%, #b4deee 100%);
  --claimX1-mobile-gradient-start: #008CD6;
  --claimX1-mobile-gradient-mid: rgba(0, 140, 214, 0.5);
  --claimX1-about-btn-bg: rgba(1, 140, 214, 0.1);
  --claimX1-claim-btn-bg: #4a21ef;
  --claimX1-rule-border: #c0e3f5;
  --claimX1-link-color: #4a21ef;
  padding-top: 122px;
  background: #f3f3f3;
}

body:has(.claimX1-section) {
  --claimX1-header-bg: #4a21ef;
}

body:has(.claimX1-section) #header.header-transparent {
  background: var(--claimX1-header-bg) !important;
}

.claimX1-desktop {
  display: flex;
  min-height: 760px;
  justify-content: center;
}

.claimX1-desktop-left {
  width: 50%;
  background: var(--claimX1-left-bg);
  display: flex;
  justify-content: flex-end;
}
.claimX1-desktop-left-content {
  width: 100%;
  padding: 50px 40px 120px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.claimX1-desktop-right {
  display: flex;
  justify-content: flex-start;
  width: 50%;
}
.claimX1-desktop-right-content {
  padding: 83px 40px 120px;
  max-width: 600px;
  width: 100%;
}
.claimX1-brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}
.claimX1-brand-logo {
  width: auto;
  height: 50px;
  max-width: 100%;
}
.claimX1-brand-separator {
  font-size: 26px;
  opacity: 0.9;
}

.claimX1-title {
  margin: 20px 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.claimX1-subtitle {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.claimX1-image-placeholder {
  margin: 20px auto;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.claimX1-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.claimX1-about-btn {
  height: auto;
  padding: 8px 20px;
  border: none;
  border-radius: 80px;
  font-size: 12px;
  line-height: 1.2;
  color: #242424;
  background: var(--claimX1-about-btn-bg);
}
.claimX1-claim-btn-container {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.claimX1-claim-btn {
  display: block;
  min-width: min(100%, 167px);
  height: auto;
  border: none;
  border-radius: 100px;
  padding: 11px 48px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  color: #ffffff;
  background: var(--claimX1-claim-btn-bg);
}

.claimX1-rule-card {
  margin: 0 auto;
  border: 1px solid var(--claimX1-rule-border);
  border-radius: 8px;
  background: #f8f8f8;
  padding: 12px;
}

.claimX1-rule-list {
  margin: 0;
  padding-left: 0;
  color: #000000;
  font-size: 14px;
  line-height: 1.5;
}

.claimX1-rule-list .item {
  display: flex;
}

.claimX1-rule-list .item p {
  margin: 0;
}

.claimX1-rule-list .item + .item {
  margin-top: 8px;
}

.claimX1-rule-list .item .item-point {
  margin-left: 4px;
  margin-right: 6px;
}

.claimX1-rule-list a {
  color: var(--claimX1-link-color);
  text-decoration: underline;
}

@media (max-width: 1600px) {
  .claimX1-brand-row {
    font-size: 34px;
  }

  .claimX1-title {
    font-size: 36px;
  }

  .claimX1-subtitle {
    font-size: 18px;
  }

  .claimX1-claim-btn {
    font-size: 18px;
  }

  .claimX1-rule-list {
    font-size: 14px;
  }
}

@media (max-width: 1280px) {
  .claimX1-brand-row {
    font-size: 26px;
  }

  .claimX1-title {
    margin: 16px 0;
    font-size: 30px;
  }

  .claimX1-subtitle {
    font-size: 18px;
  }

  .claimX1-claim-btn {
    font-size: 18px;
  }

  .claimX1-rule-list {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .claimX1-desktop {
    min-height: 0;
    flex-direction: column;
    background:
      linear-gradient(
        180deg,
        var(--claimX1-mobile-gradient-start) 0px,
        var(--claimX1-mobile-gradient-mid) 375px,
        rgba(255, 255, 255, 0) 750px
      );
    background-size: 100% 750px;
    background-repeat: no-repeat;
  }

  .claimX1-desktop-left,
  .claimX1-desktop-right {
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  .claimX1-desktop-left {
    padding: 14px 16px 24px;
    text-align: center;
    justify-content: center;
    background: none;
  }

  .claimX1-desktop-left-content {
    padding: 0px;
  }
  .claimX1-desktop-right-content {
    padding: 0px;
    justify-content: center;
  }
  .claimX1-brand-row {
    gap: 8px;
    font-size: 18px;
  }
  .claimX1-brand-logo {
    height: 32px !important;
  }

  .claimX1-brand-separator {
    font-size: 16px;
  }

  .claimX1-title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .claimX1-subtitle {
    font-size: 16px;
    line-height: 1.2;
  }

  .img-box {
    max-width: 343px;
    position: relative;
    overflow: hidden;
  }

  .img-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
      ellipse 61% 74.28% at 50% 50%,
      rgba(255, 253, 246, 1) 0%,
      rgba(255, 255, 255, 0.6) 30%,
      transparent 65%
    );
    transform: rotate(20deg);
    pointer-events: none;
  }
  .claimX1-image-placeholder {
    width: min(100%, 287px);
    position: relative;
    z-index: 2;
  }

  .claimX1-desktop-right {
    padding: 14px 16px 80px;
  }

  .claimX1-claim-btn {
    display: block;
    width: min(100%, 234px);
    height: auto;
    border: none;
    border-radius: 100px;
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.2;
  }
  .claimX1-claim-btn-container {
    margin-bottom: 34px;
  }
  .claimX1-rule-card {
    margin: 0;
    border-radius: 12px;
    border-color: var(--claimX1-rule-border);
    max-width: none;
  }

  .claimX1-rule-list {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 0;
  }

  .claimX1-rule-list .item + .item {
    margin-top: 4px;
  }
}

@media (max-width: 991px) {
  .claimX1-section {
    padding-top: 64px !important;
  }
}

/* ---- one-wallet ---- */

.one-wallet-footer {
  background: linear-gradient(
      109.75deg,
      rgba(117, 84, 252, 0) 35.1%,
      rgba(117, 84, 252, 0.2) 99.39%
    ),
    linear-gradient(162.15deg, rgba(13, 11, 51, 0) 1.61%, #0d0b33 71.13%),
    #4a21ef;
  background-position: center;
}
.one-wallet-footer-main {
  background: url("/assets/img/crypto-stripe1.svg") no-repeat,
    url("../img/one-wallet-footer-bg.svg") no-repeat,
    url("../img/crypto-stripe1.svg") no-repeat;
  background-position: top left, bottom, bottom right -26%;
  background-size: auto;
  animation: starFooter 5s ease-in infinite;
}
@media (min-width: 991px) {
  @keyframes starFooter {
    0% {
      background: url("../img/one-wallet-footer-bg.svg") no-repeat,
        url("/assets/img/crypto-stripe1.svg") no-repeat,
        url("../img/crypto-stripe1.svg") no-repeat;
      background-position: bottom, top left, bottom right -26%, center;
      background-size: auto;
    }
    50% {
      background: url("../img/one-wallet-footer-bg2.svg") no-repeat,
        url("/assets/img/crypto-stripe1.svg") no-repeat,
        url("../img/crypto-stripe1.svg") no-repeat;
      background-position: bottom, top left, bottom right -26%, center;
      background-size: auto;
    }
    100% {
      background: url("../img/one-wallet-footer-bg.svg") no-repeat,
        url("/assets/img/crypto-stripe1.svg") no-repeat,
        url("../img/crypto-stripe1.svg") no-repeat;
      background-position: bottom, top left, bottom right -26%, center;
      background-size: auto;
    }
  }
}

#one-wallet .one-wallet {
  padding-top: 48px;
  text-align: center;
  max-width: 800px;
  margin: 0px auto;
}
#one-wallet .one-wallet .sfp-logo .logo-box {
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
#one-wallet .one-wallet .title {
  margin-bottom: 48px;
}
#one-wallet .one-wallet .title h3 {
  color: #ffffff;
  font-weight: 1000;
  font-size: 80px;
  line-height: 1;
  text-align: center;
}
#one-wallet .one-wallet .download .set-off-btn {
  animation-duration: 4s;
  animation-iteration-count: infinite;
  background: linear-gradient(
    183.08deg,
    rgba(191, 255, 228, 0.2) 43.82%,
    rgba(191, 255, 228, 0) 111.17%
  );
  border-radius: 100px;
  padding: 10px;
}
#one-wallet .one-wallet .download .downloads-btn {
  animation-duration: 4s;
  animation-iteration-count: infinite;
  color: #0d0b33;
  font-size: 18px;
  padding: 16px 24px;
  border-radius: 100px;
  background-color: #79efbd;
  line-height: 1.6;
  border: none;
}
@media (max-width: 991px) {
  .one-wallet-footer {
    background: linear-gradient(
        109.75deg,
        rgba(117, 84, 252, 0) 35.1%,
        rgba(117, 84, 252, 0.2) 99.39%
      ),
      linear-gradient(162.15deg, rgba(13, 11, 51, 0) 1.61%, #0d0b33 71.13%),
      #4a21ef;
  }
  .one-wallet-footer-main {
    background: url("/assets/img/crypto-stripe1.svg") no-repeat,
      url("../img/one-wallet-footer-bg-m.svg") no-repeat,
      url("../img/crypto-stripe1.svg") no-repeat;
    background-position: top left, bottom, bottom right 320%, center;
    background-size: auto;
  }
  #one-wallet .one-wallet {
    max-width: 100%;
    padding: 0px 16px;
  }
  #one-wallet .one-wallet .title h3 {
    font-size: 48px;
  }
  #one-wallet .one-wallet .download .downloads-btn {
    font-weight: 500;
  }
}

/* ---- Page overrides ---- */
/* 默认三页视觉一致；单页定制时覆盖 CSS 变量或添加选择器规则 */

.claimX1--htx {
  /* HTX 专属样式，例如 title 区块间距：
  .claimX1-title { margin: 20px 0; }
  */
}

/* CMC 专属样式，例如：
  --claimX1-left-bg: linear-gradient(180deg, #... 0%, #... 100%);
  --claimX1-claim-btn-bg: #...;
  */
.claimX1--cmc {
  --claimX1-left-bg: linear-gradient(180deg, #3961FB 0%, rgba(57, 97, 251, 0.5) 50%, rgba(255, 255, 255, 0) 100%) !important;
}
.claimX1--cmc .claimX1-brand-logo {
  max-height: 50px;
  height: auto;
}
@media (max-width: 991px) {
  .claimX1--cmc .claimX1-desktop {
    background: var(--claimX1-left-bg) !important;
  }
  .claimX1--cmc .claimX1-brand-logo {
    max-height: 32px !important;
    height: auto !important;
  }
}
/* MEXC 专属样式，例如：
--claimX1-left-bg: linear-gradient(180deg, #... 0%, #... 100%);
--claimX1-claim-btn-bg: #...;
*/
.claimX1--mexc {
  --claimX1-left-bg: linear-gradient(180deg, #3378FF 0%, rgba(51, 120, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%) !important;
}
.claimX1--mexc .claimX1-brand-logo {
  max-height: 50px;
  height: auto;
}
.claimX1--mexc .claimX1-brand-row {
  margin-bottom: 26px;
}
@media (max-width: 991px) {
  .claimX1--mexc .claimX1-desktop {
    background: var(--claimX1-left-bg) !important;
  }
  .claimX1--mexc .claimX1-brand-logo {
    max-height: 32px !important;
    height: auto !important;
  }
}
body:has(.claimX1--htx) {
  /* --claimX1-header-bg: #...; */
}

body:has(.claimX1--cmc) {
  /* --claimX1-header-bg: #...; */
}

body:has(.claimX1--mexc) {
  /* --claimX1-header-bg: #...; */
}
