.wrapper {
  min-height: 100vh;
  font-family: "Orbitron", sans-serif;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 10px auto;
  background: linear-gradient(
    90deg,
    #1a1715 0%,
    #1a1715 50%,
    #221f1f 50%,
    #141210 100%
  );
}

.pageTitle {
  font-size: 28px;
  margin-bottom: 30px;
  margin-top: 90px;
}
/* 燃烧分红 */
.pageTitle .burn {
  background: linear-gradient(
    180deg,
    #ff3b00 0%,
    #ff6a00 30%,
    #ff9d00 60%,
    #ffd54a 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 8px rgba(255, 120, 0, 0.7), 0 0 18px rgba(255, 80, 0, 0.6),
    0 0 30px rgba(255, 140, 0, 0.4);
}

/* & */
.pageTitle .symbol {
  color: #ffffff;
}

/* LP锁仓 */
.pageTitle .lp {
  color: #f79422;
  text-shadow: 0 0 18px rgba(77, 163, 255, 0.35);
}

.card {
  position: relative;
  width: calc(100% - 32px);
  max-width: 520px;
  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);
  overflow: hidden;
  transition: 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, #f79422, #ffb347, #f79422);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.card: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);
}

.card h3 {
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #f79422;
  text-shadow: 0 0 12px rgba(247, 148, 34, 0.5);
}

.inputField {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid rgba(247, 148, 34, 0.25);
  background: rgba(34, 31, 31, 0.7);
  color: white;
  outline: none;
  transition: 0.3s;
}

.inputField:focus {
  border-color: #f79422;
  box-shadow: 0 0 12px rgba(247, 148, 34, 0.4);
}

.btn {
  margin-top: 10px;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid rgba(247, 148, 34, 0.35);
  background: linear-gradient(
    135deg,
    rgba(247, 148, 34, 0.85),
    rgba(255, 179, 71, 0.85)
  );
  color: white;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    135deg,
    rgba(247, 148, 34, 0.95),
    rgba(255, 179, 71, 0.95)
  );
  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.25);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4), 0 0 10px rgba(247, 148, 34, 0.35);
}

.disabledBtn {
  background: gray !important;
  cursor: not-allowed;
}

.burnSection h3 {
  color: #ff3e00;
  background: linear-gradient(to right, #ff3e00, #ff9500);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.periodBox {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.periodBtn {
  flex: 1 1;
  padding: 8px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  border: 1px solid rgba(247, 148, 34, 0.25);
  background: rgba(34, 31, 31, 0.6);
  text-align: center;
  transition: 0.3s;
}

.periodBtn:hover {
  box-shadow: 0 0 6px rgba(247, 148, 34, 0.6);
}

.activeBtn {
  background: linear-gradient(
    135deg,
    rgba(247, 148, 34, 0.7),
    rgba(255, 179, 71, 0.7)
  );
  color: white;
  box-shadow: 0 0 8px rgba(247, 148, 34, 0.6);
}

.row {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #bfbfbf;
  font-size: 14px;
  gap: 12px;
}

.detail {
  margin-top: 20px;
  border-top: 1px solid rgba(247, 148, 34, 0.2);
  padding-top: 12px;
}

.item {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.item span {
  flex: 1 1;
  font-size: 14px;
  color: #bfbfbf;
}

.withdrawBtn.disabledBtn {
  opacity: 0.4;
  cursor: not-allowed;
}

.toastMsg {
  position: fixed;
  top: 80px;
  right: 24px;
  width: 260px;
  padding: 14px 16px;
  color: white;
  background: rgba(30, 30, 30, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transform: translateX(120%);
  pointer-events: none;
  transition: opacity 0.55s ease-out,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.showMsg {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

