/* ========================================
   GoldJudge - Points System Styles (v3.1)
   积分系统样式：深灰黑+暗金+毛玻璃风格
   完整会员中心弹窗 + 消耗确认弹窗
   ======================================== */

/* ===== 通用模态框基础 ===== */
.gj-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gj-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.gj-modal-box {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(160deg, rgba(15, 15, 22, 0.98) 0%, rgba(8, 8, 14, 0.98) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 24px 20px 20px;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.05);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gj-modal-overlay.show .gj-modal-box {
  transform: translateY(0) scale(1);
}

.gj-modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
  pointer-events: none;
}

/* ===== 通用按钮 ===== */
.gj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s ease;
  gap: 6px;
  white-space: nowrap;
}

.gj-btn:active {
  transform: scale(0.97);
}

.gj-btn-gold {
  background: linear-gradient(135deg, #E8CC88 0%, #D4AF37 50%, #B8941F 100%);
  color: #1a1400;
  box-shadow:
    0 2px 12px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.gj-btn-gold:active {
  box-shadow: 0 1px 6px rgba(255, 215, 0, 0.25);
}

.gj-btn-outline {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #E8CC88;
}

.gj-btn-outline:active {
  background: rgba(212, 175, 55, 0.1);
}

/* ===== Toast ===== */
.gj-toast {
  background: rgba(13, 13, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 20px;
  color: #E2E8F0;
  font-size: 13px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  max-width: 80vw;
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gj-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.gj-toast-success {
  border-color: rgba(0, 255, 136, 0.25);
  color: #8FFFC4;
}

.gj-toast-error {
  border-color: rgba(255, 71, 87, 0.25);
  color: #FFB3B8;
}

.gj-toast-gold {
  border-color: rgba(255, 215, 0, 0.3);
  color: #E8CC88;
  background: linear-gradient(160deg, rgba(255, 215, 0, 0.1) 0%, rgba(13, 13, 20, 0.95) 100%);
}

/* ===== 消耗确认弹窗 ===== */
.consume-modal-box {
  text-align: center;
  max-width: 320px;
}

.consume-modal-icon {
  font-size: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.4));
}

.consume-modal-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.consume-modal-desc {
  font-size: 12.5px;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 18px;
}

.consume-modal-cost {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  padding: 16px 20px;
  margin-bottom: 18px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%),
    rgba(255, 215, 0, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  flex-wrap: wrap;
}

.cost-label {
  font-size: 12px;
  color: #64748B;
}

.cost-num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #E8CC88 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'SF Mono', monospace;
  margin: 0 2px;
}

.cost-unit {
  font-size: 13px;
  color: #D4AF37;
  font-weight: 500;
}

.cost-balance {
  width: 100%;
  font-size: 11px;
  color: #64748B;
  margin-top: 6px;
}

.consume-modal-actions {
  display: flex;
  gap: 10px;
}

.consume-modal-actions .gj-btn {
  flex: 1;
  padding: 12px;
  font-size: 13px;
  border-radius: 12px;
}

/* 积分不足状态 */
.consume-insufficient {
  padding: 16px;
  margin-bottom: 18px;
  background: rgba(255, 71, 87, 0.06);
  border: 1px solid rgba(255, 71, 87, 0.15);
  border-radius: 12px;
  text-align: center;
}

.insufficient-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.insufficient-text {
  font-size: 13px;
  color: #E2E8F0;
  margin-bottom: 4px;
}

.insufficient-text b {
  color: #FF4757;
  font-weight: 600;
  font-size: 15px;
}

.insufficient-tip {
  font-size: 11px;
  color: #D4AF37;
}

/* ===== 顶部积分胶囊（可点击） ===== */
.diamond-points {
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease;
}

.diamond-points:active {
  transform: scale(0.95);
}

/* ===== 逐笔回放锁定遮罩 ===== */
.trade-locked-overlay {
  position: relative;
  overflow: hidden;
  filter: blur(2px) grayscale(0.3);
  opacity: 0.6;
  pointer-events: none;
}

.trade-lock-prompt {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(13, 13, 20, 0.3) 0%, rgba(13, 13, 20, 0.8) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 5;
  text-align: center;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trade-lock-prompt:hover {
  background: linear-gradient(180deg, rgba(13, 13, 20, 0.2) 0%, rgba(13, 13, 20, 0.7) 100%);
}

.trade-lock-icon {
  font-size: 32px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.trade-lock-text {
  font-size: 13px;
  color: #E8CC88;
  font-weight: 500;
  margin-bottom: 4px;
}

.trade-lock-sub {
  font-size: 11px;
  color: #64748B;
}

.trade-lock-btn {
  margin-top: 12px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #E8CC88 0%, #D4AF37 100%);
  color: #1a1400;
  border: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.3);
}

.trade-lock-btn:active {
  transform: scale(0.95);
}

/* ===== 更多维度锁定样式 ===== */
.dim-card.points-locked {
  position: relative;
  overflow: hidden;
}

.dim-card.points-locked::after {
  content: '🔒 积分解锁';
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 9px;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===========================================
   完整会员中心弹窗（Member Center Modal）
   =========================================== */

.mc-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mc-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mc-modal {
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  background: linear-gradient(165deg, rgba(18, 18, 28, 0.98) 0%, rgba(8, 8, 14, 0.98) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(255, 215, 0, 0.06);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mc-overlay.show .mc-modal {
  transform: translateY(0) scale(1);
}

.mc-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
  pointer-events: none;
  z-index: 2;
}

/* 关闭按钮 */
.mc-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  z-index: 10;
}

.mc-close:active {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(0.95);
}

/* ===== Tab切换 ===== */
.mc-tabs {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 20px 0;
  margin-bottom: 12px;
}

.mc-tab {
  position: relative;
  z-index: 1;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 0.25s ease;
  letter-spacing: 1px;
}

.mc-tab.active {
  color: #E8CC88;
}

.mc-tab-slider {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  width: 60px;
}

/* ===== 内容滚动区 ===== */
.mc-content {
  flex: 1;
  overflow-y: auto;
  padding: 4px 20px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.2) transparent;
}

.mc-content::-webkit-scrollbar {
  width: 4px;
}

.mc-content::-webkit-scrollbar-track {
  background: transparent;
}

.mc-content::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.2);
  border-radius: 2px;
}

/* ===== 通用section ===== */
.mc-section {
  margin-bottom: 20px;
}

.mc-section-header {
  margin-bottom: 12px;
}

.mc-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.mc-section-sub {
  font-size: 11px;
  color: #64748B;
}

/* ===== 区块1：顶部积分卡 ===== */
.mc-top-card {
  position: relative;
  padding: 22px 18px;
  margin-bottom: 20px;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(255, 215, 0, 0.15) 0%, transparent 65%),
    linear-gradient(145deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(255, 215, 0, 0.08),
    inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.mc-top-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
}

.mc-top-balance {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

.mc-balance-num {
  font-size: 52px;
  font-weight: 200;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #E8CC88 40%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
  letter-spacing: -2px;
  font-family: 'SF Mono', 'JetBrains Mono', monospace;
}

.mc-balance-unit {
  font-size: 14px;
  font-weight: 500;
  color: #D4AF37;
  letter-spacing: 1px;
}

.mc-top-checkin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mc-checkin-info {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
}

.mc-checkin-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mc-checkin-dot.done {
  background: #00FF88;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

.mc-checkin-dot.todo {
  background: #D4AF37;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  animation: mc-pulse-dot 2s ease-in-out infinite;
}

@keyframes mc-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.mc-checkin-text {
  font-size: 11.5px;
  color: #94A3B8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mc-checkin-btn {
  flex-shrink: 0;
  padding: 7px 16px;
  background: linear-gradient(135deg, #E8CC88 0%, #D4AF37 100%);
  color: #1a1400;
  border: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.25);
}

.mc-checkin-btn:active {
  transform: scale(0.96);
  box-shadow: 0 1px 5px rgba(255, 215, 0, 0.2);
}

.mc-checkin-btn.checked {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
  cursor: default;
}

/* ===== 区块2：积分消耗明细 ===== */
.mc-usage-list {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 4px 14px;
}

.mc-usage-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mc-usage-item:last-child {
  border-bottom: none;
}

.mc-usage-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.mc-usage-icon {
  font-size: 16px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.3));
}

.mc-usage-name {
  font-size: 12.5px;
  color: #E2E8F0;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mc-usage-cost {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: #D4AF37;
  font-family: 'SF Mono', monospace;
}

.mc-usage-right {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 8px;
}

.mc-usage-times {
  font-size: 12px;
  color: #94A3B8;
}

.mc-usage-loading,
.mc-usage-empty {
  padding: 16px 4px;
  text-align: center;
  font-size: 12.5px;
  color: #64748B;
}

/* ===== 区块3：积分充值 ===== */
.mc-recharge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mc-recharge-card {
  position: relative;
  padding: 16px 10px 14px;
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
}

.mc-recharge-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mc-recharge-card:active {
  transform: scale(0.97);
}

.mc-recharge-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.06);
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(255, 215, 0, 0.12),
    0 0 0 1px rgba(255, 215, 0, 0.15);
}

.mc-recharge-card:hover::before {
  opacity: 1;
}

.mc-recharge-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 10px;
  background: linear-gradient(135deg, #FF6B35, #FFD700);
  color: #1a1400;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 10px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
  z-index: 1;
}

.mc-recharge-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.mc-recharge-points {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #E8CC88 60%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'SF Mono', monospace;
  margin-bottom: 3px;
}

.mc-recharge-unit {
  font-size: 12px;
  font-weight: 500;
  -webkit-text-fill-color: #D4AF37;
  background: none;
}

.mc-recharge-bonus {
  display: inline-block;
  font-size: 9.5px;
  color: #FF8A65;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 1px 6px;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 5px;
}

.mc-recharge-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #D4AF37;
  margin-top: 2px;
}

.mc-price-symbol {
  font-size: 11px;
  font-weight: 600;
}

.mc-price-num {
  font-size: 17px;
  font-weight: 700;
  font-family: 'SF Mono', monospace;
}

/* ===== 区块4：会员订阅 ===== */
.mc-vip-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mc-vip-card {
  position: relative;
  padding: 16px 16px 14px;
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.mc-vip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mc-vip-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mc-vip-card:hover::before {
  opacity: 1;
}

.mc-vip-card.mc-vip-card-highlight {
  border-color: #D4AF37;
  background:
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(255, 215, 0, 0.12) 0%, transparent 60%),
    rgba(20, 20, 30, 0.8);
  box-shadow:
    0 0 24px rgba(255, 215, 0, 0.12),
    inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.mc-vip-card.mc-vip-card-highlight::before {
  opacity: 1;
  width: 4px;
  background: linear-gradient(180deg, #FFD700, #D4AF37, #B8941F);
}

.mc-vip-popular {
  position: absolute;
  top: -1px;
  right: 16px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #1a1400;
  font-size: 10px;
  font-weight: 700;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.35);
}

.mc-vip-save {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 2px 8px;
  background: rgba(255, 71, 87, 0.15);
  border: 1px solid rgba(255, 71, 87, 0.3);
  color: #FF8A94;
  font-size: 9.5px;
  font-weight: 600;
  border-radius: 8px;
}

.mc-vip-card.mc-vip-card-highlight .mc-vip-save {
  top: 34px;
}

.mc-vip-price-col {
  flex-shrink: 0;
  text-align: center;
  min-width: 75px;
}

.mc-vip-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.mc-vip-price {
  display: flex;
  align-items: baseline;
  color: #D4AF37;
  line-height: 1;
}

.mc-vip-symbol {
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 3px;
}

.mc-vip-num {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #E8CC88, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'SF Mono', monospace;
}

.mc-vip-period {
  font-size: 11px;
  color: rgba(255, 215, 0, 0.6);
  margin-left: 1px;
}

.mc-vip-daily {
  font-size: 10.5px;
  color: #64748B;
  margin-top: 3px;
}

.mc-vip-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.mc-vip-benefits {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mc-vip-benefit {
  font-size: 11px;
  color: #94A3B8;
  line-height: 1.4;
}

.mc-vip-benefit::first-letter {
  color: #00FF88;
  font-weight: 700;
}

.mc-vip-btn {
  flex-shrink: 0;
  padding: 9px 14px;
  background: linear-gradient(135deg, #E8CC88 0%, #D4AF37 100%);
  color: #1a1400;
  border: none;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
  white-space: nowrap;
}

.mc-vip-btn:active {
  transform: scale(0.96);
  box-shadow: 0 1px 4px rgba(255, 215, 0, 0.2);
}

.mc-vip-card:not(.mc-vip-card-highlight) .mc-vip-btn {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: none;
}

/* ===== 区块5：邀请好友 ===== */
.mc-invite-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 14px;
}

.mc-invite-icon {
  font-size: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.mc-invite-info {
  flex: 1;
  min-width: 0;
}

.mc-invite-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.mc-invite-desc {
  font-size: 10.5px;
  color: #64748B;
  line-height: 1.4;
}

.mc-invite-btn {
  flex-shrink: 0;
  padding: 7px 14px;
  background: linear-gradient(135deg, #E8CC88 0%, #D4AF37 100%);
  color: #1a1400;
  border: none;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
}

.mc-invite-btn:active {
  transform: scale(0.96);
}

/* ===== 区块6：常见问题 ===== */
.mc-faq-list {
  background: rgba(20, 20, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.mc-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.2s ease;
}

.mc-faq-item:last-child {
  border-bottom: none;
}

.mc-faq-item:active {
  background: rgba(255, 255, 255, 0.03);
}

.mc-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #E2E8F0;
}

.mc-faq-q-text {
  flex: 1;
  min-width: 0;
}

.mc-faq-arrow {
  flex-shrink: 0;
  font-size: 14px;
  color: #64748B;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.mc-faq-item.open .mc-faq-arrow {
  transform: rotate(45deg);
  color: #D4AF37;
}

.mc-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  font-size: 11px;
  color: #64748B;
  line-height: 1.6;
  transition: all 0.25s ease;
}

.mc-faq-item.open .mc-faq-a {
  max-height: 100px;
  padding: 0 14px 11px;
}

/* ===== 响应式优化 ===== */
@media (min-width: 500px) {
  .mc-modal {
    max-width: 480px;
  }
}

@media (max-width: 340px) {
  .mc-balance-num {
    font-size: 44px;
  }

  .mc-recharge-points {
    font-size: 20px;
  }

  .mc-vip-num {
    font-size: 24px;
  }
}

/* ===== 邀请区块：详情（动态加载）===== */
.mc-invite-loading { font-size: 12px; color: #8B93A7; padding: 14px 0; text-align: center; }
.mc-invite-code-wrap {
  background: linear-gradient(135deg, rgba(255,215,0,0.10) 0%, rgba(212,175,55,0.02) 100%);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 14px;
  padding: 14px;
}
.mc-invite-lab { font-size: 11px; color: #8B93A7; margin-bottom: 6px; }
.mc-invite-code-row { display: flex; align-items: center; gap: 10px; }
.mc-invite-code {
  flex: 1; min-width: 0;
  font-size: 16px; font-weight: 800; letter-spacing: 2px; color: #D4AF37;
  background: rgba(20,20,30,0.5); border: 1px solid rgba(212,175,55,0.25);
  border-radius: 8px; padding: 9px 12px; font-family: inherit;
  word-break: break-all;
}
.mc-invite-link {
  flex: 1; min-width: 0; font-size: 10.5px; color: #cbd5e1;
  background: rgba(20,20,30,0.5); border: 1px solid rgba(212,175,55,0.22);
  border-radius: 8px; padding: 9px 12px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mc-invite-qr-wrap { text-align: center; margin-top: 14px; }
.mc-invite-qr {
  width: 150px; height: 150px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15); background: #fff; padding: 6px;
  object-fit: contain;
}
.mc-invite-qr-tip { font-size: 10.5px; color: #8B93A7; margin-top: 8px; }
.mc-invite-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px;
}
.mc-invite-stat {
  text-align: center; padding: 12px 0;
  background: rgba(20,20,30,0.4); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
}
.mc-invite-stat b {
  display: block; font-size: 18px; color: #D4AF37; font-weight: 800; margin-bottom: 2px;
}
.mc-invite-stat span { font-size: 11px; color: #8B93A7; }
.mc-invitee-title { font-size: 12.5px; font-weight: 600; color: #fff; margin: 16px 0 8px; }
.mc-invitee-list {
  overflow: hidden; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05); background: rgba(20,20,30,0.3);
}
.mc-invitee-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mc-invitee-row:last-child { border-bottom: none; }
.mc-invitee-name { font-size: 12.5px; font-weight: 600; color: #fff; }
.mc-invitee-sub { font-size: 10.5px; color: #8B93A7; margin-top: 2px; }
.mc-invitee-score { font-size: 13px; font-weight: 700; color: #D4AF37; }
.mc-invite-empty { font-size: 12px; color: #8B93A7; text-align: center; padding: 18px 0; }

/* ===== 手动绑定他人邀请码（增强，待发布） ===== */
.mc-invite-bind-wrap { margin-top: 14px; padding-top: 12px; border-top: 1px dashed rgba(255, 215, 0, 0.18); }
.mc-invite-bind-row { display: flex; align-items: center; gap: 10px; }
.mc-invite-input {
  flex: 1; min-width: 0; height: 36px; padding: 0 12px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 10px; color: #fff; font-size: 13px; outline: none; box-sizing: border-box;
}
.mc-invite-input::placeholder { color: #6B7280; }
.mc-invite-bind-tip { font-size: 10.5px; color: #8B93A7; margin-top: 8px; }

/* ===== 「领取积分」极简分享面板 ===== */
.free-invite-modal { max-width: 340px; }
.free-invite-body { padding: 28px 22px 24px; text-align: center; }
.free-invite-title { font-size: 20px; font-weight: 700; color: #E8CC88; margin-bottom: 8px; }
.free-invite-sub { font-size: 13px; color: var(--text-3); line-height: 1.5; margin-bottom: 20px; }
.free-invite-row { text-align: left; }
.free-invite-label { font-size: 13px; color: var(--text-3); margin-bottom: 8px; }
.free-invite-box { display: flex; align-items: center; gap: 8px; }
.free-invite-link { flex: 1; font-size: 12px; color: #D4AF37; word-break: break-all; background: rgba(13,13,20,.6); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 8px 10px; }
.free-invite-qr { margin-top: 20px; text-align: center; }
.free-invite-qr img.mc-invite-qr { width: 170px; height: 170px; }
.free-invite-qr-tip { margin-top: 8px; font-size: 12px; color: var(--text-3); }
