/* 粉丝团等级角标 */
.fan-club-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
  padding: 1px 6px 1px 4px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  vertical-align: middle;
  color: #fff5f8;
  background: linear-gradient(135deg, #ff4d8d 0%, #c41e6a 55%, #8b1048 100%);
  border: 1px solid rgba(255, 200, 220, 0.55);
  box-shadow: 0 1px 6px rgba(255, 60, 120, 0.35);
}
.fan-club-badge__icon {
  font-size: 9px;
  opacity: 0.95;
}
.fan-club-badge__lv {
  font-variant-numeric: tabular-nums;
}

/* 客人 H5 · 粉丝团面板 */
.fan-club-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 10px 14px;
  min-height: 0;
  overflow: auto;
}
.fan-club-panel__head {
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 77, 141, 0.22), rgba(60, 10, 40, 0.5));
  border: 1px solid rgba(255, 120, 180, 0.35);
}
.fan-club-panel__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: #ffe0ef;
}
.fan-club-panel__meta {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}
.fan-club-panel__lv {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.fan-club-panel__lv-num {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 900;
  color: #ff8fb8;
}
.fan-club-panel__bar {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.fan-club-panel__bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6b9d, #ffd166);
  transition: width 0.25s ease;
}
.fan-club-panel__tasks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fan-club-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.fan-club-task__label {
  font-size: 13px;
  font-weight: 600;
  color: #f5e6ff;
}
.fan-club-task__hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
.fan-club-task__btn {
  flex-shrink: 0;
  padding: 6px 12px;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff5c9a, #e91e7a);
  cursor: pointer;
}
.fan-club-task__btn:disabled {
  opacity: 0.45;
  cursor: default;
}
.fan-club-panel__join {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff5c9a, #c2185b);
  cursor: pointer;
}
.fan-club-panel__rank-title {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
.fan-club-rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fan-club-rank-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  font-size: 12px;
}
.fan-club-rank-item__n {
  width: 22px;
  font-weight: 800;
  color: #ffd166;
}
.fan-club-rank-item__nick {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
}
.fan-club-rank-item__meta {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.65);
}
.tag--fan-club {
  background: linear-gradient(90deg, #ff4d8d, #ff8fb8) !important;
  color: #fff !important;
  font-weight: 800;
}
.live-badge--fanclub {
  position: absolute;
  left: auto;
}
