/* 首屏下載鈕：沿用原站底部註冊鈕樣式語彙 */

.lineMatch_banner {
  position: relative;
}

.dl-hero {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 5vw, 56px);
  transform: translateX(-50%);
  z-index: 5;
  width: max-content;
  max-width: calc(100% - 32px);
}

.dl-hero__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: linear-gradient(-145deg, #13dcae 0%, #30cbdb 100%);
  border: 1px solid #fff;
  border-radius: 100px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.22);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dl-hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.dl-hero__btn span {
  color: #fff;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  white-space: nowrap;
}

.dl-hero__btn img {
  width: clamp(22px, 3vw, 36px);
  display: block;
  transform: translateY(6%);
}

@media screen and (max-width: 767px) {
  .dl-hero {
    bottom: clamp(16px, 4vw, 28px);
  }

  .dl-hero__btn {
    padding: 12px 22px;
  }
}

@media screen and (max-width: 450px) {
  .dl-hero__btn {
    padding: 10px 16px;
  }

  .dl-hero__btn span {
    letter-spacing: 0.1em;
  }
}
