/* =========================
   页面整体
========================= */
.bodyWrapper {
  min-height: 100vh;
  font-family: "Orbitron", sans-serif;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* =========================
   Hero
========================= */
.hero {
  padding: 75px 10px 1px;
}

.hero h1 {
  font-size: 28px;
  background: linear-gradient(to right, #f79422, #ffb347);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(247, 148, 34, 0.5);
  margin: 15px auto;
}

.hero p {
  opacity: 0.8;
  margin: 10px auto;
  letter-spacing: 1px;
}

/* =========================
   卡片盒子（玻璃质感）
========================= */
.cardBox {
  position: relative;
  width: calc(100% - 32px);
  max-width: 500px;
  margin: 30px auto;
  padding: 32px;
  border-radius: 22px;
  box-sizing: border-box;

  background: rgba(34, 31, 31, 0.7);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  box-shadow: inset 0 0 25px rgba(247, 148, 34, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.6);
  transition: 0.35s ease;
  overflow: hidden;
}

.cardBox:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: inset 0 0 30px rgba(247, 148, 34, 0.12),
    0 30px 80px rgba(0, 0, 0, 0.75);
}

/* =========================
   ReferralCard
========================= */
.referral-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.section-card {
  background: rgba(34, 31, 31, 0.7);
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: inset 0 0 10px rgba(247, 148, 34, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  text-align: center;
}

.otc-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f79422;
}

.invite-link-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.invite-link-wrapper input {
  flex: 1 1;
  padding: 8px 10px;
  min-width: 150px;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(247, 148, 34, 0.25);
  background: rgba(34, 31, 31, 0.7);
  color: white;
  font-size: 14px;
}

.invite-link-wrapper button {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(247, 148, 34, 0.35);

  background: linear-gradient(
    135deg,
    rgba(247, 148, 34, 0.9),
    rgba(255, 179, 71, 0.9)
  );
  color: white;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.invite-link-wrapper button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), 0 0 16px rgba(247, 148, 34, 0.45),
    0 0 28px rgba(255, 179, 71, 0.35);
}

.team-table {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 每一行三等分 */
.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
}

/* 表头 */
.team-header {
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(247, 148, 34, 0.25);
}

.no-data {
  opacity: 0.6;
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
}

/* =========================
   移动端
========================= */
@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(30px, 5vw, 60px);
  }

  .cardBox {
    margin: 10px auto;
    padding: 22px;
  }

  .invite-link-wrapper {
    flex-direction: column;
    gap: 6px;
  }

  .ref-reward,
  .ref-time {
    width: 60px;
  }
}
/* =========================
   NFT邀请奖励卡片
========================= */

.cardnftBox {
  position: relative;
  max-width: 500px;
  margin: 20px auto;
  padding: 28px;
  border-radius: 22px;
  box-sizing: border-box;

  background: rgba(34, 31, 31, 0.7);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);

  box-shadow: inset 0 0 25px rgba(247, 148, 34, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.6);

  transition: 0.35s ease;
  overflow: hidden;
}

/* =========================
   NFT奖励内容
========================= */

.referralnft-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 标题 */

.referralnft-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f79422;
}

/* =========================
   每一行数据
========================= */

.rewardnft-row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 14px;
  border-radius: 12px;

  font-size: 16px;

  background: rgba(247, 148, 34, 0.05);
  border: 1px solid rgba(247, 148, 34, 0.2);

  transition: 0.25s ease;
}

/* 左侧文字 */

.rewardnft-row span:first-child {
  opacity: 0.85;
}

/* 右侧数字 */

.rewardnft-row span:last-child {
  font-weight: 600;
  font-size: 15px;
  color: #ffb347;
}

/* =========================
   规则说明
========================= */

.rewardnft-rule {
  margin-top: 12px;
  padding-top: 10px;

  font-size: 13px;
  opacity: 0.75;

  border-top: 1px dashed rgba(247, 148, 34, 0.25);

  text-align: center;
}
.rewardusdt-rule {
  margin-top: 12px;
  padding-top: 10px;

  font-size: 13px;
  opacity: 0.75;

  border-top: 1px dashed rgba(247, 148, 34, 0.25);

  text-align: center;
}

