body {
  background-image: linear-gradient(
    180deg,
    var(--bs-secondary-bg),
    var(--bs-body-bg) 100px,
    var(--bs-body-bg)
  );
}

.bg-image {
  background-image: url("./image/huntress_jp_main_bg.png"); /* 替换为你的背景图路径 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: calc(100vh - 56px); /* 减去header高度 */
}

.container {
  max-width: 960px;
  min-height: auto;
}

.pricing-header {
  max-width: 700px;
}

.display-btn {
  display: none;
}

.card-item {
  opacity: 0.85; /* 80%透明度 */
  transition: opacity 0.3s ease;
}

/* 定义图片容器为相对定位 */
.card-body {
  position: relative;
}

/* 在全局 CSS 中定义 */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

/* 定义折扣叠加层的位置和样式 */
.discount-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 144px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 定义折扣文字的位置和样式 */
.discount-text {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
  width: 144px;
  height: 36px;
  background: url("image/huntressjp_discount.png") no-repeat center;
  background-size: cover;
}

.rotated-text {
  text-shadow: 1px 1px 2px black;
  transform: rotate(0deg);
}

.item-title {
  font-size: 0.7em;
  font-weight: 400;
  white-space: nowrap !important;
}

/* 小于等于 480px 的移动设备 */
@media (max-width: 480px) {
  .item-title {
    font-size: 0.8em;
  }
}

/* 大于 480px 且小于等于 768px 的 iPad 和平板电脑 */
@media (max-width: 768px) {
  .item-title {
    font-size: 0.8em;
  }
}

/* 大于 768px 且小于等于 1024px 的小屏幕笔记本电脑 */
@media (min-width: 769px) and (max-width: 1024px) {
  .item-title {
    font-size: 0.9em;
  }
}

/* 大于 1024px 且小于等于 1200px 的台式机和大屏幕 */
@media (min-width: 1025px) and (max-width: 1200px) {
  .item-title {
    font-size: 1em;
    font-weight: 500;
  }
}

/* 大于 1200px 的超大屏幕和电视 */
@media (min-width: 1201px) {
  .item-title {
    font-size: 1.1em;
    font-weight: 500;
  }
}

.faq {
  position: absolute;
  font-size: 1rem !important;
  bottom: 0;
  right: -5rem;
  text-decoration: none;
}

/* 小于等于 480px 的移动设备 */
@media (max-width: 480px) {
  .faq {
    font-size: 0.875rem !important;
  }
}

.custom-btn {
  background-color: #ff850c;
  color: white;
  border: none;
}

.custom-btn:hover {
  background-color: #e6760a;
  color: white;
  border: none;
}
