.member-hub-anchor {
  scroll-margin-top: 100px;
}

.member-hub--hint {
  padding: 18px 20px;
  border-radius: 14px;
  background: #f1f5f9;
  border: 1px dashed #cbd5e1;
  text-align: center;
  margin-bottom: 20px;
}

.member-hub--hint h2 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: #334155;
}

.member-hub--hint p {
  margin: 0 0 12px;
  font-size: 14px;
  color: #64748b;
}

.member-hub {
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(67, 56, 202, 0.25);
}

.member-hub__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.member-hub__head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.member-hub__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.member-hub__stat {
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.member-hub__stat strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.member-tasks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.member-task {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.member-task__title {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
}

.member-task__sub {
  margin: 0 0 8px;
  font-size: 11px;
  opacity: 0.85;
}

.member-task__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-bottom: 8px;
}

.member-task__bar span {
  display: block;
  height: 100%;
  background: #4ade80;
  border-radius: inherit;
}

.member-task__btn {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  background: #fff;
  color: #4338ca;
}

.member-task__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.member-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.member-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 700;
}

.member-badge.is-locked {
  opacity: 0.35;
}

.lg-weekly-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.lg-weekly-card__item {
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.lg-weekly-card__item strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #4338ca;
}

.lg-weekly-card__item span {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

tr.lm-row--vip-lock {
  opacity: 0.72;
}

tr.lm-row--vip-lock .site-pool-link {
  pointer-events: none;
  color: #94a3b8;
}

.lm-vip-lock {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  background: #fef3c7;
  color: #b45309;
  font-size: 10px;
  font-weight: 800;
  margin-right: 6px;
}

.method-downloads {
  margin-top: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.method-downloads h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
}

.method-dl-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.lb-table-wrap {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lb-rank {
  font-weight: 800;
  color: #4338ca;
}

.shell-tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 23, 42, 0.55);
}

.shell-tour-card {
  position: fixed;
  z-index: 301;
  max-width: 360px;
  padding: 20px 22px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.shell-tour-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
}

.shell-tour-card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.shell-tour-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
