* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.sprite-definitions {
  position: absolute;
}

/* src 由 entry module 依語系與 viewport 設定，未設前不顯示破圖 placeholder。 */
img[data-logo]:not([src]) {
  visibility: hidden;
}
/* shared text-gradient recipe; pair with `background-image: <gradient>` on each rule */
.gradient-text,
.title-gold,
.theme-tab__item.active,
.theme-carousel__name,
.theme-card__name,
.theme-section__title,
.products-section__feature,
.partner-section__title,
.hot-section__title,
.recommend-bonus-item {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
html,
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family:
    'Noto Sans SC',
    'PingFang TC',
    'Noto Sans TC',
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    system-ui,
    -apple-system,
    BlinkMacSystemFont;
}

.config-error {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 16px;
  border-radius: 8px;
  background: #7f1d1d;
  color: #fff;
  font-size: 14px;
}

a[aria-disabled='true'] {
  pointer-events: none;
  opacity: 0.55;
}
body {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
@media (min-width: 1000px) {
  body {
    max-width: unset;
  }
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
html[lang='zh'] .slogan-section .desktop-image:not(.slogan-image) {
  width: 320px;
}

.btn {
  border: none;
  outline: none;
  cursor: pointer;
  background: url('./assets/btn_bg.avif');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px 0;
  color: #000;
  text-align: center;
  font-weight: 900;
}

.container {
  padding: 0 20px;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .container {
    max-width: 900px;
  }
}

.title {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}
.title-gold {
  margin: 0;
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  background-image: linear-gradient(
    90deg,
    #b28200 0%,
    #ffcf72 51.92%,
    #b28200 100%
  );
}
@media (min-width: 1000px) {
  .title,
  .title-gold {
    font-size: 40px;
  }
}

.gradient-border {
  position: relative;
}
.gradient-border::before {
  position: absolute;
  inset: 0;
  content: '';
  padding: 1px;
  background-image: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-radius: inherit;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.mobile-image {
  display: block;
}
.desktop-image {
  display: none;
}
@media (min-width: 1000px) {
  .mobile-image {
    display: none;
  }
  .desktop-image {
    display: block;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #000;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 14px 20px;
}
.header__logo {
  width: 128px;
  height: 40px;
}
.header .language-selector {
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding: 5.5px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.header .language-selector img {
  transition: transform 0.2s ease;
  transform: rotate(180deg);
}
.header .language-selector.open img {
  transform: rotate(0deg);
}
.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 106px;
  background: #2b2b2b;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 30;
}
.language-menu.hidden {
  display: none;
}
.language-menu button {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  cursor: pointer;
}
.language-menu button + button {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.language-menu button:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Slogan Section */
.slogan-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('./assets/slogan/bg.avif');
  background-size: 1000px 400px;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
}
.slogan-section .open-site-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  width: 169px;
  font-size: 16px;
}
.slogan-section .mobile-image:not(.slogan-image) {
  margin-bottom: 8px;
}
@media (min-width: 1000px) {
  .slogan-section {
    position: relative;
    z-index: 1;
    background-image: url('./assets/slogan/bg_desktop.avif');
    background-size: 1440px 498px;
    height: 498px;
  }
  .slogan-section .open-site-btn {
    margin-bottom: 48px;
  }
  .slogan-section .slogan-image {
    height: 30px;
    margin-bottom: 80px;
  }
}

/* Theme Showcase Section (replaces Features Section) */
.theme-section {
  position: relative;
  z-index: 1;
  padding-top: 32px;
  padding-bottom: 0;
}
.theme-section__title {
  margin-bottom: 20px;
  text-align: center;
}
.theme-highlights--desktop,
.theme-stage {
  display: none;
}
.theme-highlights--desktop {
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.theme-highlights--desktop .features-section__item {
  font-size: 24px;
  column-gap: 12px;
}
.theme-highlights--desktop .features-section__item img {
  width: 32px;
  height: 32px;
}

/* Tab */
.theme-tab {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.theme-tab__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  cursor: pointer;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 700;
  font-family: inherit;
}
.theme-tab__item.active {
  background-image: linear-gradient(270deg, #d9a608 0%, #ffdc70 100%);
}
.theme-tab__underline {
  width: 80px;
  height: 2px;
  background: transparent;
}
.theme-tab__item.active .theme-tab__underline {
  background: linear-gradient(90deg, #ffdc70 0%, #947002 100%);
}

/* Carousel */
.theme-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme-carousel__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.theme-carousel__name-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.theme-carousel__name {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
}

/* Color dots */
.theme-color-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-bottom: 0;
  max-width: 198px;
}
.theme-color-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}
.theme-color-dot img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Image area */
.theme-image-area {
  position: relative;
  width: 100%;
  max-width: 375px;
  z-index: 0;
}
.theme-image-bg {
  width: 100%;
  height: 390px;
  background-image: url('./assets/theme/bg.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 190px;
}
#theme-section[data-tab='desktop'] .theme-image-bg {
  top: 180px;
}
/* loading mask + spinner */
.has-loader {
  position: relative;
}
.has-loader::after {
  position: absolute;
  inset: 0;
  content: '';
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.has-loader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  margin-left: -24px;
  border: 5px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  animation: rotation 1s linear infinite;
  z-index: 3;
}
.has-loader.is-loading::after,
.has-loader.is-loading::before {
  opacity: 1;
  pointer-events: auto;
}
/* main shot wrapper (switches by tab) */
.theme-shot {
  z-index: 1;
  width: 237px;
  margin: 28px auto 0 auto;
}
.theme-shot::after {
  z-index: 2;
}
#theme-section[data-tab='mobile'] .theme-shot::after {
  margin: 10px;
}
.theme-shot__img {
  display: block;
  width: 100%;
  height: auto;
}

/* Desktop tab layout (matches Figma 252:2183) */
#theme-section[data-tab='desktop'] .theme-carousel__info {
  margin-bottom: 10px;
}
#theme-section[data-tab='desktop'] .theme-color-dots {
  margin-top: 4px;
}
#theme-section[data-tab='desktop'] .theme-shot {
  width: 100%;
  margin: auto;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  overflow: hidden;
}
#theme-section[data-tab='desktop'] .theme-shot__img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Arrow buttons */
.theme-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.theme-arrow--left {
  left: 0;
}
.theme-arrow--right {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}
#theme-section[data-tab='desktop'] #theme-prev {
  left: -60px;
}
#theme-section[data-tab='desktop'] #theme-next {
  right: -60px;
}

.theme-arrow.disabled {
  opacity: 0.2;
  cursor: default;
}

/* Buttons below carousel */
.theme-actions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  /* overlap onto image so mask can sit above image */
  margin-top: -230px;
  padding-top: 60px;
  padding-bottom: 32px;
  z-index: 2;
  width: 100%;
}
/* Mask behind DEMO area (matches Figma) */
.theme-actions::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  /* Match ellipse mask from Figma (375x235, rx=323.5, ry=117.5) */
  width: 100%;
  height: 235px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 32.28%,
    rgba(0, 0, 0, 0.95) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.theme-actions > * {
  position: relative;
  z-index: 1;
}
.theme-view-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 600;
  font-family: inherit;
  padding: 0;
}
.theme-view-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.theme-demo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  padding: 8px 0;
  font-size: 20px;
}
.theme-stage {
  width: 100%;
}

/* Gallery (both variants) */
.theme-gallery--mobile,
.theme-gallery--desktop {
  width: 100%;
}
.theme-gallery--mobile {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.theme-gallery--desktop {
  display: flex;
  flex-direction: row;
  gap: 28px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.theme-gallery--desktop::-webkit-scrollbar {
  display: none;
}

/* Card (shared base + variants) */
.theme-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.theme-card__image {
  position: relative;
  width: 100%;
}
.theme-card__image img {
  width: 100%;
  height: auto;
}
.theme-card--mobile .theme-card__image {
  min-height: 601px;
}
.theme-card--desktop .theme-card__image img {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}
.theme-card--desktop .theme-card__image::after {
  border-radius: 8px;
}
.theme-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.theme-card--desktop .theme-card__overlay {
  border-radius: 8px;
}
.theme-card__image:hover::after {
  opacity: 1;
}
.theme-card__image:hover .theme-card__overlay {
  opacity: 1;
  pointer-events: auto;
}
.theme-card__image.is-loading .theme-card__overlay {
  opacity: 0;
  pointer-events: none;
}
.theme-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.theme-card__name {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
}
.theme-card__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  width: 198px;
}

/* Gallery scroll wrap (desktop only) */
.theme-gallery-scroll-wrap {
  position: relative;
  width: 100%;
}
.theme-gallery-scroll-wrap::before,
.theme-gallery-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 480px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.theme-gallery-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), transparent);
}
.theme-gallery-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.75), transparent);
}
.theme-gallery-scroll-wrap.show-left-fade::before {
  opacity: 1;
}
.theme-gallery-scroll-wrap.show-right-fade::after {
  opacity: 1;
}

/* Gallery nav (desktop only) */
.theme-gallery-nav {
  position: absolute;
  top: 240px;
  transform: translateY(-50%);
  z-index: 5;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.theme-gallery-nav--left {
  left: calc(32px - (100vw - 100%) / 2);
}
.theme-gallery-nav--right {
  right: calc(32px - (100vw - 100%) / 2);
  transform: translateY(-50%) scaleX(-1);
}
.theme-gallery-nav.disabled {
  opacity: 0.2;
  cursor: default;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1000px) {
  .theme-carousel {
    width: 100%;
  }
  .theme-carousel__info {
    gap: 4px;
  }
  .theme-image-area {
    min-height: 371px;
  }
  .theme-shot {
    margin-top: 30px;
    min-height: 485px;
  }
  .theme-actions {
    padding-bottom: 0;
  }
}

/* Features list */
.features-list-section {
  position: relative;
  margin-top: 0;
  padding-top: 32px;
  padding-bottom: 32px;
  z-index: 1;
}
.features-list-section .content-container {
  margin-top: 8px;
}
.features-section__features {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.features-section__features-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
html[lang='en'] .features-section__features-row {
  flex-direction: column;
  row-gap: 20px;
  align-items: start;
}
.features-section__item {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.features-section__features-row > .features-section__item {
  flex: 1;
}

.theme-preview-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.theme-preview-modal.open {
  display: flex;
  touch-action: manipulation;
}
.theme-preview-modal__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100%;
}
.theme-preview-modal__scroll {
  width: 100%;
  flex: 1;
  overflow: auto;
}
.theme-preview-modal__scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.theme-preview-modal__scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.theme-preview-modal__scroll img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  transition: width 0.2s ease-out;
}
.theme-preview-modal__scroll img.is-zoomed {
  max-width: none !important;
  max-height: none !important;
}
.theme-preview-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-preview-modal__close svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
}

.theme-preview-zoom-controls {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 101;
}
.theme-preview-zoom-controls .zoom-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}
.theme-preview-zoom-controls .zoom-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.theme-preview-zoom-controls .zoom-btn:not(.disabled):hover {
  opacity: 1;
}
.theme-preview-zoom-controls .zoom-btn svg {
  width: 40px;
  height: 40px;
}
.theme-preview-zoom-controls .zoom-level {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  min-width: 44px;
  text-align: center;
  user-select: none;
}

@media (min-width: 1000px) {
  .theme-section {
    padding-top: 58px;
    max-width: 1282px;
    margin: 0 auto;
  }
  .theme-section .container {
    max-width: 1282px;
    padding: 0 40px;
  }
  .theme-section__title {
    width: 100%;
    text-align: center;
    font-size: 40px;
    background-image: linear-gradient(90deg, #fff 0%, #ffdf94 100%);
    margin-bottom: 32px;
  }
  .theme-highlights--desktop {
    display: flex;
  }
  .theme-tab {
    justify-content: center;
    margin-bottom: 32px;
  }
  .theme-tab__item {
    padding: 0 40px;
    font-size: 32px;
  }
  .theme-tab__underline {
    width: 100%;
  }
  .theme-carousel {
    display: none;
  }
  .theme-stage {
    display: block;
  }
  .theme-stage[data-mode='mobile'] .theme-gallery--desktop {
    display: none;
  }
  .theme-stage[data-mode='desktop'] .theme-gallery--mobile {
    display: none;
  }
  .theme-gallery--mobile {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    column-gap: 40px;
    row-gap: 0;
  }
  .theme-card--mobile {
    flex: 1 1 0;
    min-width: 0;
    max-width: 294px;
    gap: 4px;
  }
  .theme-card--mobile .theme-card__image {
    width: 100%;
    aspect-ratio: 294 / 601;
    min-height: 0;
  }
  .theme-gallery-scroll-wrap {
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
  }
  .theme-gallery--desktop {
    padding: 0 90px;
  }
  .theme-card--desktop {
    flex: 0 0 540px;
    width: 540px;
    gap: 4px;
  }
  .theme-card--desktop .theme-card__image {
    height: 480px;
    overflow: hidden;
  }
  .theme-card--desktop .theme-card__image img {
    height: 480px;
    object-fit: cover;
    object-position: top center;
  }
  .features-list-section {
    display: none;
  }
  .theme-preview-modal__content {
    width: 100%;
  }
  .theme-preview-modal__close {
    top: -52px;
    right: 0;
  }
}

/* Products Section */
.products-section {
  position: relative;
  padding-top: 32px;
  padding-bottom: 54px;
}
.products-section__title {
  margin-bottom: 32px;
}
.products-section__bg {
  position: absolute;
  top: -60px;
  width: 100%;
  background-image: url('./assets/products/bg.avif');
  background-size: 576px 429px;
  background-position: center;
  background-repeat: no-repeat;
  height: 429px;
}
.products-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
}
.products-section__features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  width: 100%;
}
html[lang='en'] .products-section__features {
  flex-direction: column;
  row-gap: 20px;
}
.products-section__feature {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  background-image: linear-gradient(180deg, #fff 0%, #ffdc70 100%);
}
.products-section__feature::after {
  content: '';
  display: block;
  margin: 8px auto 0;
  width: 85px;
  height: 1.107px;
  aspect-ratio: 85/1.11;
  background-image: url('./assets/products/feature_deco.avif');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.products-section__products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  width: 100%;
}
.products-section__products .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 4px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.products-section__products .item .count {
  color: #ffbb45;
}
@media (min-width: 1000px) {
  .products-section {
    padding-top: 80px;
    padding-bottom: 37px;
  }
  .products-section__title {
    margin-bottom: 0;
  }
  .products-section__bg {
    top: -811px;
    background-image: url('./assets/products/bg_desktop.avif');
    background-size: 1440px 1393px;
    height: 1393px;
  }
  .products-section__features,
  html[lang='en'] .products-section__features {
    flex-direction: row;
    justify-content: center;
    column-gap: 40px;
  }
  .products-section__products {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 40px;
  }
}

/* Service Section */
.service-section {
  padding-top: 40px;
  padding-bottom: 56px;
  background-image:
    url('./assets/service/top_bg.avif'), url('./assets/service/bottom_bg.avif');
  background-size:
    1000px 528px,
    1000px 870px;
  background-position: top, bottom;
  background-repeat: no-repeat;
}
.service-section__title {
  margin-bottom: 28px;
  text-align: left;
}
.service-section__items {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.service-section__item .item-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.service-section__item .description {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.service-section__item .divider {
  margin: 8px 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.service-section__item .image {
  aspect-ratio: 335/216.83;
}
.service-section__item .content {
  margin-bottom: 20px;
}
@media (min-width: 1000px) {
  .service-section {
    position: relative;
    z-index: 1;
    padding-top: 101px;
    padding-bottom: 113px;
    background-image:
      url('./assets/service/top_bg_desktop.avif'),
      url('./assets/service/bottom_bg_desktop.avif');
    background-size:
      1440px 419px,
      1440px 1150px;
  }
  .service-section__title {
    margin-bottom: 44px;
    text-align: center;
  }
  .service-section__items {
    row-gap: 60px;
  }
  .service-section__item {
    display: flex;
    align-items: center;
    column-gap: 40px;
  }
  .service-section__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .service-section__item .item-title {
    font-size: 28px;
  }
  .service-section__item .divider {
    margin: 16px 0;
  }
  .service-section__item .image {
    width: 430px;
    aspect-ratio: 430/278.32;
  }
}

/* Partner Section */
.partner-section {
  margin: 9px 0;
  background-image: url('./assets/partner/bg.png');
  background-size: 1000px 500px;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.partner-section__title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  background-image: linear-gradient(180deg, #fff 0%, #fff4da 100%);
}
@media (min-width: 1000px) {
  .partner-section {
    margin: 9px 0;
    background-image: url('./assets/partner/bg_desktop.png');
    background-size: 1440px 500px;
  }
  .partner-section__title {
    font-size: 40px;
  }
}

/* Hot Section */
.hot-section {
  margin-top: -20px;
}
.hot-section__title {
  position: relative;
  margin: 0 0 20px;
  text-align: left;
  font-size: 32px;
  font-weight: 900;
  background-image: linear-gradient(180deg, #fff 0%, #fff4da 100%);
}
.hot-section__title::before {
  content: '';
  position: absolute;
  left: -24px;
  top: -24px;
  width: 69.181px;
  height: 69.756px;
  transform: rotate(9.029deg);
  aspect-ratio: 69.18/69.76;
  background-image: url('./assets/hot/title_deco.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hot-section__content {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-bottom: 20px;
}
.hot-section__content .item {
  position: relative;
  padding: 20px 0;
  border-radius: 12px;
  text-align: center;
}
.hot-section__content .item::after {
  content: '';
  position: absolute;
  top: -11px;
  left: -10.5px;
  width: 62px;
  height: 30px;
  background-image: url('./assets/hot/item_deco.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hot-section__recommend-title {
  display: flex;
  align-items: center;
  column-gap: 4px;
  margin-bottom: 12px;
  padding: 3.5px 0;
}
.hot-section__recommend-extra {
  color: #ffbb45;
}
.hot-section__recommend .recommend-bonus {
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding: 20px;
  border-radius: 12px;
}
.hot-section__recommend .recommend-bonus-item {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  background-image: linear-gradient(90deg, #fff 0%, #ffdf94 100%);
}
.hot-section__recommend .recommend-bonus-item::after {
  content: '';
  display: block;
  margin: 8px auto 0;
  width: 85px;
  height: 1.107px;
  aspect-ratio: 85/1.11;
  background-image: url('./assets/hot/bonus_deco.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1000px) {
  .hot-section {
    position: relative;
    padding-top: 204px;
    background-image: url('./assets/hot/bg_desktop.webp');
    background-size: 1920px 971px;
    background-position: top;
  }
  .hot-section__title {
    margin-bottom: 32px;
  }
  .hot-section__content {
    display: flex;
    flex-direction: row;
    column-gap: 13px;
    margin-bottom: 32px;
  }
  .hot-section__content .item {
    flex: 1;
  }
  .hot-section__recommend-title {
    margin-bottom: 20px;
    font-size: 32px;
  }
  .hot-section__recommend .recommend-bonus {
    padding: 54px 0;
  }
}

/* Contact Section */
.contact-section {
  padding-top: 40px;
  padding-bottom: 43px;
}
.contact-section__title {
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
html[lang='en'] .contact-section__title {
  text-align: left;
}
.contact-section__content {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.contact-section__content .infos {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.contact-section__content .item-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
}
.contact-section__content .item-link {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 1000px) {
  .contact-section {
    padding-top: 80px;
    padding-bottom: 75px;
  }
  .contact-section__title {
    font-size: 32px;
  }
  .contact-section__content {
    justify-content: flex-end;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 40px;
  }
  .contact-section__content .infos {
    flex: 1;
    align-items: center;
    flex-direction: row;
    column-gap: 40px;
  }
  .contact-section__content .infos div {
    flex: 1;
  }
}
