/* ==========================================================================
   Mzansi Harvest — Landing Page
   固定设计稿：750 × 1334（viewport width=750 由浏览器自动缩放）
   ========================================================================== */

html, body {
  max-width: 750px;
  margin: 0 auto;
}

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

:root {
  --color-download: #7aaa42;
  --color-support: #59b8eb;
  --color-bottom: #f58c56;
  --color-bottom-bg: linear-gradient(
    0,
    rgba(250, 204, 34, 0.71) 0%,
    rgba(248, 54, 0, 0.71) 100%
  );
  --color-text-light: #ffffff;
  --color-text-dark: #000000;
  --bevel-highlight: rgba(203, 255, 0, 0.5);
  --bevel-shadow: rgba(0, 0, 0, 0.42);
  --color-stroke: #5f3512;
  --color-frame-label: #22ac38;
  --font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-bump: 2px;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  width: 750px;
  margin: 0 auto;
  font-family: var(--font-family);
  background-color: #ffffff;
  background-image: var(--color-bottom-bg);
  background-repeat: no-repeat;
  overflow-x: hidden;
}

img {
  display: block;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --------------------------------------------------------------------------
   Page shell
   -------------------------------------------------------------------------- */

.page {
  position: relative;
  z-index: 1;
  width: 750px;
  height: 1334px;
  overflow: hidden;
}

.page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page__bg-poster,
.page__bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 750px;
  height: 1334px;
}

.page__bg-poster {
  z-index: 1;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.page__bg-canvas {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.page__bg.is-video-ready .page__bg-canvas {
  opacity: 1;
}

.page__bg.is-video-ready .page__bg-poster {
  opacity: 0;
  visibility: hidden;
}

.page__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 1334px;
  padding: 0 40px 120px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.hero__logo {
  width: 520px;
  height: auto;
  margin-top: 100px;
}

.hero__tagline {
  width: 560px;
  margin-top: 36px;
  font-size: calc(27px + var(--font-bump));
  font-weight: 700;
  line-height: 1.45;
  -webkit-text-fill-color: var(--color-text-light);
  -webkit-text-stroke: 2px var(--color-stroke);
  paint-order: stroke fill;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.55),
    0 0 12px rgba(0, 0, 0, 0.25);
}

.hero__trailer-btn {
  position: absolute;
  left: 50%;
  bottom: 320px; /* 距橙色过渡区顶部 230px（90px 弧形 + 230px 间距） */
  z-index: 2;
  display: block;
  width: 299px;
  height: 105px;
  transform: translateX(-50%);
  transition: transform 0.15s ease;
}

.hero__trailer-btn:active {
  transform: translateX(-50%) scale(0.97);
}

.hero__trailer-bg {
  width: 299px;
  height: 105px;
  /* PS 投影：正片叠底 #000 33% | 128° 距离4 扩展4% 大小7 */
  filter: drop-shadow(2px 3px 7px rgba(0, 0, 0, 0.33));
}

.hero__trailer-text {
  position: absolute;
  left: 93px;
  top: 50%;
  transform: translateY(-50%);
  font-size: calc(27px + var(--font-bump));
  font-weight: 800;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Trailer modal
   -------------------------------------------------------------------------- */

body.is-modal-open {
  overflow: hidden;
}

.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.trailer-modal[hidden] {
  display: none;
}

.trailer-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.78);
}

.trailer-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 680px;
  max-width: 100%;
}

.trailer-modal__video-wrap {
  width: 100%;
  max-height: min(900px, calc(100vh - 200px));
  overflow: hidden;
  border-radius: 12px;
  background-color: #000000;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.trailer-modal__video {
  display: block;
  width: 100%;
  max-height: min(900px, calc(100vh - 200px));
  height: auto;
  object-fit: contain;
  background-color: #000000;
}

.trailer-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-top: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.trailer-modal__close img {
  width: 42px;
  height: 42px;
}

.trailer-modal__close:active {
  transform: scale(0.92);
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Support modal
   -------------------------------------------------------------------------- */

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.support-modal[hidden] {
  display: none;
}

.support-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.78);
}

.support-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 520px;
  max-width: 100%;
}

.support-modal__panel {
  width: 100%;
  padding: 36px 32px 28px;
  border-radius: 16px;
  background-color: #fdf3dc;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.support-modal__title {
  font-size: calc(28px + var(--font-bump));
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: var(--color-stroke);
}

.support-modal__list {
  width: 100%;
  margin-top: 28px;
  list-style: none;
}

.support-modal__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 72px;
  padding: 0 24px;
  border-radius: 14px;
  overflow: hidden;
  color: #ffffff;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 var(--bevel-highlight),
    inset 0 -2px 4px var(--bevel-shadow);
  transition: transform 0.15s ease;
}

.support-modal__list li + li {
  margin-top: 14px;
}

.support-modal__item:active {
  transform: scale(0.98);
}

.support-modal__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  font-size: calc(36px + var(--font-bump));
}

.support-modal__label {
  font-size: calc(24px + var(--font-bump));
  font-weight: 800;
  line-height: 1;
}

.support-modal__item--whatsapp {
  background-color: #25d366;
}

.support-modal__item--telegram {
  background-color: #26a5e4;
}

.support-modal__item--messenger {
  background: linear-gradient(135deg, #00b2ff 0%, #006aff 100%);
}

.support-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-top: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.support-modal__close img {
  width: 42px;
  height: 42px;
}

.support-modal__close:active {
  transform: scale(0.92);
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Sidebar
   -------------------------------------------------------------------------- */

.sidebar {
  position: fixed;
  right: max(0px, calc((100vw - 750px) / 2));
  bottom: 200px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 100px;
  padding-left: 14px;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  /* PS 内斜面：深度230% 大小6px 高光滤色 #cbff00 50% 光源90°高度30° */
  box-shadow:
    inset 0 1px 0 var(--bevel-highlight),
    inset 0 -2px 4px var(--bevel-shadow),
    inset 0 6px 6px -4px var(--bevel-highlight),
    inset 0 -6px 8px -3px var(--bevel-shadow);
}

.sidebar__item::before,
.sidebar__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  pointer-events: none;
}

.sidebar__item::before {
  top: 0;
  background: linear-gradient(180deg, var(--bevel-highlight) 0%, transparent 100%);
  border-radius: 12px 0 0 0;
}

.sidebar__item::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--bevel-shadow) 0%, transparent 100%);
  border-radius: 0 0 0 12px;
}

.sidebar__item:active {
  filter: brightness(0.92);
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.35),
    inset 0 -1px 2px var(--bevel-highlight);
}

.sidebar__item--download {
  background-color: var(--color-download);
}

.sidebar__item--support {
  background-color: var(--color-support);
}

.sidebar__icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: auto;
}

.sidebar__label {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  font-size: calc(18px + var(--font-bump));
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Section 2 — Game World Showcase
   -------------------------------------------------------------------------- */

.showcase {
  position: relative;
  z-index: 2;
  width: 750px;
  margin-top: -20px;
  padding: 20px 0 0;
  background: #f58d57;
}

.showcase__curve {
  position: absolute;
  top: -54px;
  left: 0;
  z-index: 3;
  width: 750px;
  height: 55px;
  background: url("../images/circle-bg.png") no-repeat center / 100% 100%;
  pointer-events: none;
}

.showcase__title {
  display: block;
  width: 511px;
  height: auto;
  margin: 60px auto 0;
}

.showcase__shelf {
  width: 712px;
  margin: 32px auto 0;
}

.showcase__list {
  display: flex;
  list-style: none;
}

.showcase__item {
  flex: 1;
  display: flex;
  justify-content: center;
}

.showcase__card {
  position: relative;
  width: 116px;
  height: 112px;
}

.showcase__icon {
  width: 116px;
  height: 112px;
}

.showcase__label {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  font-size: calc(13px + 1px);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  -webkit-text-fill-color: var(--color-text-light);
  -webkit-text-stroke: 2px var(--color-stroke);
  paint-order: stroke fill;
}

.showcase__frame {
  width: 712px;
  height: 153px;
  margin: 32px auto 0;
  background: url("../images/section2-background.png") no-repeat center / 100% 100%;
}

.showcase__frame-list {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 10px;
  gap: 4px;
  list-style: none;
}

.showcase__frame-item img {
  display: block;
  width: 94px;
  height: 114px;
}

.showcase__frame-card {
  position: relative;
  width: 94px;
  height: 114px;
}

.showcase__frame-label {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  padding: 3px 2px;
  background-color: var(--color-frame-label);
  border-radius: 6px;
  overflow: hidden;
  font-size: calc(10px + var(--font-bump));
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-light);
  text-align: center;
  z-index: 1;
  /* PS 内斜面：深度230% 大小3px 高光 #cbff00 50% */
  box-shadow:
    inset 0 1px 0 var(--bevel-highlight),
    inset 0 -1px 2px var(--bevel-shadow),
    inset 0 3px 3px -2px var(--bevel-highlight),
    inset 0 -3px 4px -2px var(--bevel-shadow);
}

.showcase__frame-label::before,
.showcase__frame-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
}

.showcase__frame-label::before {
  top: 0;
  background: linear-gradient(180deg, var(--bevel-highlight) 0%, transparent 100%);
  border-radius: 6px 6px 0 0;
}

.showcase__frame-label::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--bevel-shadow) 0%, transparent 100%);
  border-radius: 0 0 6px 6px;
}

.showcase__frame-item:nth-child(1) .showcase__frame-card {
  transform: translate(4px, -2px);
}

.showcase__frame-item:nth-child(2) .showcase__frame-card {
  transform: translate(2px, -2px);
}

.showcase__frame-item:nth-child(3) .showcase__frame-card {
  transform: translate(1px, -2px);
}

.showcase__frame-item:nth-child(4) .showcase__frame-card {
  transform: translate(0, -2px);
}

.showcase__frame-item:nth-child(5) .showcase__frame-card {
  transform: translate(0, -2px);
}

.showcase__frame-item:nth-child(6) .showcase__frame-card {
  transform: translate(-2px, -2px);
}

.showcase__frame-item:nth-child(7) .showcase__frame-card {
  transform: translate(-2px, -2px);
}

/* --------------------------------------------------------------------------
   Section 3 — Play-to-Grow Mechanism
   -------------------------------------------------------------------------- */

.mechanism {
  width: 750px;
  padding: 60px 0 0;
  margin-top: -01px;
}

.mechanism__title {
  display: block;
  width: 433px;
  height: auto;
  margin: 0 auto;
}

.mechanism__flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 36px;
  padding: 0 4px;
}

.mechanism__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 154px;
  height: 272px;
  padding: 12px 6px 10px;
  background-color: #ffffff;
  border: 3px solid;
  border-radius: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.mechanism__card--play {
  border-color: #8ed081;
  overflow: visible;
}

.mechanism__card--earn {
  border-color: #f5b04a;
}

.mechanism__card--redeem {
  border-color: #59b8eb;
}

.mechanism__card--powered {
  border-color: #b06ad4;
}

.mechanism__card-title {
  font-size: calc(18px + var(--font-bump));
  font-weight: 800;
  line-height: 1.1;
}

.mechanism__card--play .mechanism__card-title {
  color: #6ec045;
}

.mechanism__card--earn .mechanism__card-title {
  color: #f0a030;
}

.mechanism__card--redeem .mechanism__card-title {
  color: #59b8eb;
}

.mechanism__card--powered .mechanism__card-title {
  color: #b06ad4;
}

.mechanism__card-desc {
  flex-shrink: 0;
  margin-top: 10px;
  font-size: calc(12px + var(--font-bump));
  font-weight: 600;
  line-height: 1.3;
  color: #333333;
}

.mechanism__icon-wrap {
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 0;
  margin-top: 8px;
  padding-bottom: 4px;
}

.mechanism__icon {
  display: block;
  max-width: 100%;
  height: auto;
}

.mechanism__icon--overflow {
  position: absolute;
  bottom: -4px;
  left: -22px;
  width: 110px;
  height: 119px;
}

.mechanism__arrow {
  flex-shrink: 0;
  align-self: center;
  width: 29px;
  height: 29px;
  margin: 0 1px;
  background: url("../icon/arrow.png") no-repeat;
  background-size: 366px 29px;
}

.mechanism__arrow--gold {
  background-position: 0 0;
}

.mechanism__arrow--blue {
  background-position: -165px 0;
}

.mechanism__arrow--purple {
  background-position: -337px 0;
}

.mechanism__footer {
  width: 620px;
  margin: 32px auto 0;
  padding-bottom: 0;
  font-size: calc(16px + var(--font-bump));
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #333333;
}

/* --------------------------------------------------------------------------
   Section 4 — Product Matrix Preview
   -------------------------------------------------------------------------- */

.matrix {
  width: 750px;
  padding-top: 60px;
  margin-top: -1px;
}

.matrix__board {
  position: relative;
  width: 716px;
  margin: 0px auto 0;
}

.matrix__bg {
  display: block;
  width: 716px;
  height: 389px;
}

.matrix__grid {
  position: absolute;
  top: 76px;
  left: 13px;
  width: 670px;
  height: 298px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  list-style: none;
}

.matrix__item {
  position: relative;
  height: 100%;
  box-sizing: border-box;
}

.matrix__icon {
  position: absolute;
  top: 20px;
  left: 12px;
  background: url("../icon/list04/all.png") no-repeat;
  background-size: 440px auto;
}

/* 雪碧图 x：前一帧宽度 + 97px 间距；整体缩放 0.8 */
.matrix__icon--1 { width: 54px; height: 57px; background-position: 0 6px; }
.matrix__icon--2 { width: 54px; height: 57px; background-position: -131px 6px; }
.matrix__icon--3 { width: 38px; height: 57px; background-position: -262px 0px; }
.matrix__icon--4 { width: 37px; height: 57px; background-position: -395px 6px; }
.matrix__icon--5 { width: 49px; height: 44px; background-position: 0 -112px; }
.matrix__icon--6 { width: 43px; height: 44px; background-position: -126px -112px; }
.matrix__icon--7 { width: 37px; height: 44px; background-position: -260px -112px; }
.matrix__icon--8 { width: 52px; height: 44px; background-position: -392px -112px; }

.matrix__grid .matrix__item:nth-child(1) .matrix__text {
  right: 9px;
}

.matrix__grid .matrix__item:nth-child(1) .matrix__text,
.matrix__grid .matrix__item:nth-child(2) .matrix__text,
.matrix__grid .matrix__item:nth-child(3) .matrix__text,
.matrix__grid .matrix__item:nth-child(4)  .matrix__text{
  top: 88px;
}

.matrix__grid .matrix__item:nth-child(5)  .matrix__text,
.matrix__grid .matrix__item:nth-child(7)  .matrix__text {
  right: 0px;
}

.matrix__grid .matrix__item:nth-child(7)  .matrix__text,
.matrix__grid .matrix__item:nth-child(8)  .matrix__text {
  right: 4px;
  top: 60px;
}

.matrix__grid .matrix__item:nth-child(4)  .matrix__text,
.matrix__grid .matrix__item:nth-child(8)  .matrix__text {
  right: -12px;
}

.matrix__text {
  position: absolute;
  /* right: 2px; */
  right: -2px;
  /* bottom: 16px; */
  width: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  height: 56px;
  top: 74px;
}

.matrix__name {
  font-size: calc(11px);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  color: #5f3512;
}

.matrix__desc {
  margin-top: 4px;
  font-size: calc(10.5px + var(--font-bump));
  font-weight: 600;
  line-height: 1.25;
  color: #5f3512;
}

/* --------------------------------------------------------------------------
   Section 5 — Partners & Investors
   -------------------------------------------------------------------------- */

.partners {
  width: 750px;
  padding-top: 60px;
}

.partners__title {
  display: block;
  width: 501px;
  height: auto;
  margin: 0 auto;
}

.partners__list {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 32px;
  list-style: none;
}

.partners__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 88px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.partners__card img {
  max-width: 90%;
  max-height: 72%;
  width: auto;
  height: auto;
}

/* --------------------------------------------------------------------------
   Section 6 — Payment Methods
   -------------------------------------------------------------------------- */

.payments {
  width: 750px;
  padding-top: 60px;
}

.payments__title {
  display: block;
  width: 252px;
  height: auto;
  margin: 0 auto;
}

.payments__body {
  padding-top: 32px;
}

.payments__panel {
  width: 680px;
  padding: 20px 16px;
  background-color: #fdf3dc;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.payments__list {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
}

.payments__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.payments__card img {
  max-width: 88%;
  max-height: 72%;
  width: auto;
  height: auto;
}

/* --------------------------------------------------------------------------
   Section 7 — Roadmap Preview
   -------------------------------------------------------------------------- */

.roadmap {
  width: 750px;
  padding-top: 60px;
}

.roadmap__board {
  position: relative;
  width: 735px;
  margin: 0 auto;
}

.roadmap__bg {
  display: block;
  width: 735px;
  height: 183px;
}

.roadmap__grid {
  position: absolute;
  top: 60px;
  left: 13px;
  width: 702px;
  height: 95px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.roadmap__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  /* padding: 4px 4px 4px 54px; */
}

.roadmap__grid .roadmap__item:nth-child(1) {
  padding-left: 52px;
  padding-right: 22px;
  
}

.roadmap__grid .roadmap__item:nth-child(2) {
  padding-left: 38px;
  padding-right: 15px;
}

.roadmap__grid .roadmap__item:nth-child(3) {
  padding-left: 63px;
  padding-right: 15px;
}

.roadmap__year {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
}

.roadmap__heading {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.15;
}

.roadmap__desc {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.25;
  color: #333333;
}

.roadmap__item--green .roadmap__year,
.roadmap__item--green .roadmap__heading {
  color: #6ec045;
}

.roadmap__item--orange .roadmap__year,
.roadmap__item--orange .roadmap__heading {
  color: #f0a030;
}

.roadmap__item--blue .roadmap__year,
.roadmap__item--blue .roadmap__heading {
  color: #59b8eb;
}

.roadmap__item--purple .roadmap__year,
.roadmap__item--purple .roadmap__heading {
  color: #b06ad4;
}

/* --------------------------------------------------------------------------
   Section 8 — Download
   -------------------------------------------------------------------------- */

.download {
  width: 750px;
}

.download__stage {
  position: relative;
  width: 750px;
  height: 423px;
}

.download__bg {
  display: block;
  width: 750px;
  height: 423px;
}

.download__box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 496px;
  height: 188px;
  transform: translate(-50%, -50%);
}

.download__box-bg {
  display: block;
  width: 496px;
  height: 188px;
}

.download__panel {
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 18%;
  height: 36%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  min-width: 0;
}

.download__btn {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  height: 32px;
  padding: 0 1px;
  border-radius: 16px;
  overflow: hidden;
  font-size: calc(10px + var(--font-bump));
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
  transition: transform 0.15s ease;
  box-shadow:
    0 2px 3px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 var(--bevel-highlight),
    inset 0 -2px 3px var(--bevel-shadow),
    inset 0 4px 4px -3px var(--bevel-highlight),
    inset 0 -4px 6px -3px var(--bevel-shadow);
}

.download__btn::before,
.download__btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  pointer-events: none;
}

.download__btn::before {
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, transparent 100%);
  border-radius: 16px 16px 0 0;
}

.download__btn::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.28) 0%, transparent 100%);
  border-radius: 0 0 16px 16px;
}

.download__btn:active {
  transform: scale(0.97);
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.35),
    inset 0 -1px 2px var(--bevel-highlight);
}

.download__btn-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  font-size: calc(12px + var(--font-bump));
  color: #ffffff;
}

.download__btn span {
  position: relative;
  z-index: 1;
}

.download__btn--android {
  background: linear-gradient(180deg, #4cd964 0%, #28a745 100%);
}

.download__btn--ios {
  background: linear-gradient(180deg, #33b5ff 0%, #007aff 100%);
}

.download__btn--ios .download__btn-icon {
  top: -1px;
}

.download__btn--pc {
  background: linear-gradient(180deg, #2a5298 0%, #1a3a8a 100%);
}

.download__btn--pc .download__btn-icon {
  width: 11px;
  height: 11px;
  font-size: calc(11px + var(--font-bump));
}

/* --------------------------------------------------------------------------
   Footer Nav — Site Sections
   -------------------------------------------------------------------------- */

.footer-nav {
  width: 750px;
  padding-top: 20px;
  padding-bottom: 30px;
}

.footer-nav__list {
  display: flex;
  justify-content: center;
  gap: 2px;
  padding: 0 6px;
  list-style: none;
}

.footer-nav__item {
  flex: 1;
  min-width: 0;
}



.footer-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-nav__link img {
  width: 73px;
  height: 41px;
}

.footer-nav__title {
  margin-top: 6px;
  font-size: calc(10px + var(--font-bump));
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-stroke);
}

.footer-nav__desc {
  align-self: stretch;
  margin-top: 4px;
  font-size: calc(8px + var(--font-bump));
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  padding-left: 16px;
  color: #666666;
}

.footer-nav__list .footer-nav__item:nth-child(8) .footer-nav__desc{
  padding-left: 20px;
}
