:root {
  color-scheme: dark;
  --bb-bg: #03070d;
  --bb-panel: rgba(9, 16, 27, .92);
  --bb-panel-soft: rgba(11, 22, 35, .72);
  --bb-line: rgba(155, 213, 255, .14);
  --bb-line-strong: rgba(92, 242, 255, .28);
  --bb-text: #f7fbff;
  --bb-muted: #9fb0c2;
  --bb-cyan: #5cf2ff;
  --bb-gold: #ffd166;
  --bb-green: #7af5b0;
  --bb-red: #ff7a93;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--bb-text);
  background:
    radial-gradient(circle at 20% 0%, rgba(92, 242, 255, .08), transparent 32%),
    radial-gradient(circle at 82% 6%, rgba(255, 209, 102, .08), transparent 28%),
    linear-gradient(180deg, #03070d 0%, #060b13 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", sans-serif;
}
a { color: inherit; text-decoration: none; }
.bb-indicator-shell {
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 60px;
}
.bb-indicator-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 10px 0 16px;
  background: linear-gradient(180deg, rgba(3, 7, 13, .96), rgba(3, 7, 13, .78));
  backdrop-filter: blur(12px);
}
.bb-indicator-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bb-indicator-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.bb-indicator-brand strong,
.bb-indicator-brand small {
  display: block;
}
.bb-indicator-brand strong { font-size: 15px; }
.bb-indicator-brand small { color: var(--bb-muted); font-size: 11px; }
.bb-indicator-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-weight: 800;
  font-size: 14px;
}
.bb-indicator-nav a {
  color: #dce9f5;
  opacity: .92;
}
.bb-indicator-nav a.active {
  color: #fff;
  border-bottom: 2px solid var(--bb-cyan);
}
.bb-indicator-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.bb-indicator-ghost,
.bb-indicator-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid var(--bb-line-strong);
}
.bb-indicator-ghost {
  color: var(--bb-cyan);
  background: rgba(92, 242, 255, .06);
}
.bb-indicator-primary {
  color: #03120a;
  background: linear-gradient(135deg, #9dfad0, #f1ffb8);
  border: 0;
}
.bb-indicator-main {
  display: grid;
  gap: 26px;
}
.bb-indicator-profile {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--bb-line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(9, 16, 27, .92), rgba(6, 13, 22, .76)),
    radial-gradient(circle at right, rgba(92, 242, 255, .12), transparent 38%);
}
.bb-indicator-avatar {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(92, 242, 255, .2);
  background: #02050a;
  box-shadow: 0 0 42px rgba(92, 242, 255, .10);
}
.bb-indicator-avatar img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}
.bb-indicator-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bb-indicator-profile h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .02em;
}
.bb-indicator-badge,
.bb-indicator-live,
.bb-indicator-card-tier,
.bb-indicator-card-category,
.bb-indicator-card-tv {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
}
.bb-indicator-badge {
  color: #111;
  background: #fff;
}
.bb-indicator-live {
  color: var(--bb-green);
  background: rgba(122, 245, 176, .10);
  border: 1px solid rgba(122, 245, 176, .22);
}
.bb-indicator-stats {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.bb-indicator-stats b,
.bb-indicator-stats small {
  display: block;
}
.bb-indicator-stats b {
  color: #fff;
  font-size: 22px;
}
.bb-indicator-stats small {
  color: var(--bb-muted);
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
}
.bb-indicator-profile p {
  max-width: 980px;
  margin: 0;
  color: #c8d7e6;
  line-height: 1.7;
  font-size: 15px;
}
.bb-indicator-tabs {
  display: flex;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.bb-indicator-tabs button {
  appearance: none;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: #cfdae6;
  background: transparent;
  font: inherit;
  font-weight: 950;
  font-size: 17px;
  cursor: pointer;
}
.bb-indicator-tabs button.active {
  color: #fff;
  border-color: #fff;
}
.bb-indicator-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px 240px;
  gap: 12px;
  justify-content: end;
}
.bb-indicator-toolbar label {
  display: grid;
  gap: 6px;
}
.bb-indicator-toolbar span {
  color: var(--bb-muted);
  font-size: 11px;
  font-weight: 900;
}
.bb-indicator-toolbar input,
.bb-indicator-toolbar select {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: #fff;
  background: #02050a;
}
.bb-indicator-section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}
.bb-indicator-section-head p,
.bb-indicator-section-head h2 {
  margin: 0;
}
.bb-indicator-section-head p {
  color: var(--bb-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bb-indicator-section-head h2 {
  margin-top: 6px;
  font-size: 26px;
}
.bb-indicator-section-head small {
  color: var(--bb-muted);
}
.bb-indicator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 30px;
}
.bb-indicator-card {
  min-width: 0;
  display: block;
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
}
.bb-indicator-card.is-clickable {
  cursor: pointer;
}
.bb-indicator-card.is-clickable:hover h3 {
  color: var(--bb-cyan);
}
.bb-indicator-card.is-clickable:focus-visible {
  outline: 2px solid var(--bb-cyan);
  outline-offset: 6px;
}
.bb-indicator-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #080d14;
  border: 1px solid rgba(255, 255, 255, .10);
  aspect-ratio: 16 / 9;
}
.bb-indicator-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .22s ease, opacity .22s ease;
  opacity: .92;
}
.bb-indicator-card:hover .bb-indicator-card-image img {
  transform: scale(1.025);
  opacity: 1;
}
.bb-indicator-card-lock,
.bb-indicator-card-chart {
  position: absolute;
  top: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, .54);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 16px;
}
.bb-indicator-card-lock { right: 10px; }
.bb-indicator-card-chart { right: 50px; }
.bb-indicator-card-body {
  padding-top: 14px;
}
.bb-indicator-card-body h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
}
.bb-indicator-card-description {
  min-height: 76px;
  max-height: 112px;
  margin: 10px 0 14px;
  padding-right: 8px;
  overflow-y: auto;
  color: #cdd9e6;
  font-size: 14px;
  line-height: 1.55;
  scrollbar-width: thin;
  scrollbar-color: rgba(92, 242, 255, .35) rgba(255, 255, 255, .06);
}
.bb-indicator-card-description::-webkit-scrollbar {
  width: 6px;
}
.bb-indicator-card-description::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .05);
  border-radius: 999px;
}
.bb-indicator-card-description::-webkit-scrollbar-thumb {
  background: rgba(92, 242, 255, .30);
  border-radius: 999px;
}
.bb-indicator-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.bb-indicator-card-tier {
  color: var(--bb-gold);
  background: rgba(255, 209, 102, .10);
  border: 1px solid rgba(255, 209, 102, .22);
}
.bb-indicator-card-category {
  color: var(--bb-cyan);
  background: rgba(92, 242, 255, .08);
  border: 1px solid rgba(92, 242, 255, .20);
}
.bb-indicator-card-tv {
  color: #b9e7ff;
  background: rgba(120, 180, 255, .08);
  border: 1px solid rgba(120, 180, 255, .18);
}
.bb-indicator-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  min-height: 26px;
}
.bb-indicator-card-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #b7c9d6;
  background: rgba(255, 255, 255, .06);
  font-size: 11px;
  font-weight: 850;
}
.bb-indicator-card-footer {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  color: #b8c8d8;
  font-size: 12px;
}
.bb-indicator-card-footer small {
  color: #9fb0c2;
  font-weight: 800;
}
.bb-indicator-card.is-clickable .bb-indicator-card-footer small::after {
  content: " →";
  color: var(--bb-cyan);
}
.bb-indicator-locked {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 10px;
  color: var(--bb-gold);
  background: rgba(255, 209, 102, .08);
  border: 1px solid rgba(255, 209, 102, .22);
  font-weight: 1000;
  font-size: 12px;
}
.bb-indicator-skeleton {
  min-height: 360px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.10), rgba(255,255,255,.05));
  background-size: 200% 100%;
  animation: bbIndicatorPulse 1.2s ease infinite;
}
@keyframes bbIndicatorPulse {
  to { background-position: -200% 0; }
}
.bb-indicator-empty,
.bb-indicator-note {
  padding: 20px;
  border: 1px solid var(--bb-line);
  border-radius: 20px;
  background: var(--bb-panel-soft);
}
.bb-indicator-empty h3 {
  margin: 0 0 6px;
}
.bb-indicator-empty p,
.bb-indicator-note p {
  margin: 0;
  color: #cdd9e6;
  line-height: 1.65;
}
.bb-indicator-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--bb-gold);
}
@media (max-width: 1100px) {
  .bb-indicator-topbar {
    grid-template-columns: 1fr;
  }
  .bb-indicator-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .bb-indicator-profile {
    grid-template-columns: 1fr;
  }
  .bb-indicator-toolbar,
  .bb-indicator-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .bb-indicator-shell {
    width: min(100% - 22px, 1440px);
  }
  .bb-indicator-grid,
  .bb-indicator-toolbar {
    grid-template-columns: 1fr;
  }
  .bb-indicator-profile {
    padding: 18px;
  }
  .bb-indicator-profile h2 {
    font-size: 34px;
  }
  .bb-indicator-stats {
    gap: 18px;
  }
  .bb-indicator-tabs {
    overflow-x: auto;
  }
}

/* 88BB Indicator Library Subscription Pricing v0.3.5 */
.bb-indicator-price-box {
  display: grid;
  gap: 8px;
  margin: 14px 0 4px;
  padding: 12px;
  border: 1px solid rgba(92, 242, 255, .18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(92, 242, 255, .07), rgba(255, 209, 102, .05));
}
.bb-indicator-price-box p {
  display: grid;
  gap: 3px;
  margin: 0;
}
.bb-indicator-price-box b {
  color: var(--bb-cyan);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.bb-indicator-price-box span {
  color: #f7fbff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}
.bb-indicator-apply-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.bb-indicator-apply {
  appearance: none;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(92, 242, 255, .24);
  border-radius: 12px;
  color: #03120a;
  background: linear-gradient(135deg, #9dfad0, #f1ffb8);
  font: inherit;
  font-size: 12px;
  font-weight: 1000;
  cursor: pointer;
}
.bb-indicator-apply.is-bbtc {
  color: #170d00;
  background: linear-gradient(135deg, #ffd166, #fff0a8);
  border-color: rgba(255, 209, 102, .35);
}
.bb-indicator-apply:disabled {
  cursor: not-allowed;
  opacity: .48;
  filter: grayscale(.25);
}
.bb-indicator-tv-link {
  color: var(--bb-cyan);
  font-size: 12px;
  font-weight: 900;
}
@media (max-width: 680px) {
  .bb-indicator-apply-row { grid-template-columns: 1fr; }
}

/* 88BB Indicator Library Luxury Showroom v1.5 */
body[data-page="indicators"] {
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 209, 102, .10), transparent 34%),
    radial-gradient(circle at 12% 12%, rgba(92, 242, 255, .10), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(122, 245, 176, .08), transparent 28%),
    linear-gradient(180deg, #02050a 0%, #050a12 42%, #02050a 100%);
}
.bb-indicator-shell {
  width: min(1360px, calc(100% - 42px));
  padding-top: 28px;
}
.bb-indicator-profile {
  position: relative;
  overflow: hidden;
  grid-template-columns: 112px minmax(0, 1fr);
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 209, 102, .28);
  background:
    linear-gradient(135deg, rgba(11, 18, 31, .96), rgba(4, 8, 15, .90)),
    radial-gradient(circle at 78% 28%, rgba(255, 209, 102, .20), transparent 28%),
    radial-gradient(circle at 14% 16%, rgba(92, 242, 255, .16), transparent 34%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.bb-indicator-profile::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .06);
}
.bb-indicator-profile::after {
  content: "88BB PRIVATE TOOL COLLECTION";
  position: absolute;
  right: 28px;
  bottom: 20px;
  color: rgba(255, 255, 255, .055);
  font-weight: 1000;
  font-size: clamp(18px, 3.4vw, 42px);
  letter-spacing: .08em;
  white-space: nowrap;
}
html[lang="zh-Hans"] .bb-indicator-profile::after { content: "88BB 高级指标展示厅"; }
.bb-indicator-profile-copy,
.bb-indicator-avatar { position: relative; z-index: 1; }
.bb-indicator-avatar {
  width: 112px;
  height: 112px;
  border-color: rgba(255, 209, 102, .30);
  background: radial-gradient(circle, rgba(92, 242, 255, .14), #02050a 62%);
  box-shadow: 0 0 45px rgba(92, 242, 255, .16), 0 0 34px rgba(255, 209, 102, .10);
}
.bb-indicator-avatar img { width: 78px; height: 78px; }
.bb-indicator-profile h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.02em;
}
.bb-indicator-badge {
  background: linear-gradient(135deg, #fff6cf, #d9fff0);
  color: #04110c;
  box-shadow: 0 0 22px rgba(255, 209, 102, .18);
}
.bb-indicator-live {
  color: #ffe49a;
  background: rgba(255, 209, 102, .10);
  border-color: rgba(255, 209, 102, .28);
}
.bb-indicator-stats {
  gap: 14px;
  margin: 20px 0 16px;
}
.bb-indicator-stats span {
  min-width: 136px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.bb-indicator-stats b {
  color: #fff5cd;
  font-size: 24px;
}
.bb-indicator-tabs {
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 20px;
  background: rgba(4, 9, 15, .72);
  backdrop-filter: blur(12px);
  overflow-x: auto;
}
.bb-indicator-tabs button {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #aebdca;
  font-size: 13px;
  letter-spacing: .02em;
}
.bb-indicator-tabs button.active {
  color: #04110c;
  border-color: rgba(255, 209, 102, .42);
  background: linear-gradient(135deg, #fff1a8, #8cf8ce);
  box-shadow: 0 10px 28px rgba(122, 245, 176, .12);
}
.bb-indicator-toolbar {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11, 18, 31, .72), rgba(5, 10, 17, .82));
}
.bb-indicator-toolbar input,
.bb-indicator-toolbar select {
  min-height: 46px;
  border-radius: 14px;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(1, 4, 8, .86);
}
.bb-indicator-section-head {
  padding: 0 4px;
}
.bb-indicator-section-head p { color: #ffe49a; }
.bb-indicator-section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -.02em;
}
.bb-indicator-section-head small {
  max-width: 420px;
  color: #aebdca;
  line-height: 1.5;
  text-align: right;
}
.bb-indicator-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.bb-indicator-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 12px;
  border-radius: 26px;
  border: 1px solid rgba(255, 209, 102, .18);
  background:
    linear-gradient(180deg, rgba(13, 22, 35, .88), rgba(4, 9, 16, .92)),
    radial-gradient(circle at 50% 0%, rgba(255, 209, 102, .12), transparent 40%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.bb-indicator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 30%, rgba(92,242,255,.08));
  opacity: .55;
}
.bb-indicator-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 209, 102, .38);
  box-shadow: 0 30px 82px rgba(0, 0, 0, .46), 0 0 34px rgba(255, 209, 102, .08);
}
.bb-indicator-card > * { position: relative; z-index: 1; }
.bb-indicator-card-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 16px 40px rgba(0, 0, 0, .28);
}
.bb-indicator-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.36));
}
.bb-indicator-card-chart,
.bb-indicator-card-lock {
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 1000;
  backdrop-filter: blur(10px);
}
.bb-indicator-card-chart {
  left: 12px;
  right: auto;
  color: #06120c;
  background: linear-gradient(135deg, #fff2a7, #8df8cd);
  border-color: rgba(255, 255, 255, .22);
}
.bb-indicator-card-lock {
  right: 12px;
  color: #ffe49a;
  background: rgba(0, 0, 0, .62);
}
.bb-indicator-card-body {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 18px 6px 4px;
}
.bb-indicator-card-meta {
  order: 0;
  margin: 0 0 12px;
}
.bb-indicator-card-category,
.bb-indicator-card-tier {
  min-height: 26px;
  padding: 0 10px;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.bb-indicator-card-category {
  color: #8df8cd;
  background: rgba(122, 245, 176, .08);
  border-color: rgba(122, 245, 176, .22);
}
.bb-indicator-card-tier {
  color: #ffe49a;
  background: rgba(255, 209, 102, .09);
  border-color: rgba(255, 209, 102, .25);
}
.bb-indicator-card-body h3 {
  margin-bottom: 2px;
  font-size: 21px;
  letter-spacing: -.01em;
}
.bb-indicator-card-description {
  min-height: 88px;
  max-height: 124px;
  color: #c8d4e0;
}
.bb-indicator-price-box {
  gap: 10px;
  margin: 14px 0 12px;
  padding: 13px;
  border: 1px solid rgba(255, 209, 102, .20);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, .08), rgba(92, 242, 255, .045)),
    rgba(2, 6, 11, .74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.bb-indicator-price-row {
  display: grid;
  gap: 8px;
}
.bb-indicator-price-row + .bb-indicator-price-row {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.bb-indicator-price-row > b {
  color: #ffe49a;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bb-indicator-price-row > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.bb-indicator-plan-pill {
  display: grid;
  gap: 2px;
  min-height: 52px;
  padding: 9px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .24);
}
.bb-indicator-plan-pill em {
  color: #9fb0c2;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.bb-indicator-plan-pill strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
}
.bb-indicator-plan-pill.is-bbtc strong { color: #ffe49a; }
.bb-indicator-card-tags {
  margin-top: auto;
}
.bb-indicator-card-tags span {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.06);
}
.bb-indicator-apply-row {
  gap: 9px;
  margin-top: 14px;
}
.bb-indicator-apply {
  min-height: 42px;
  border-radius: 14px;
  letter-spacing: .01em;
  box-shadow: 0 12px 24px rgba(122, 245, 176, .08);
}
.bb-indicator-apply.is-bbtc {
  box-shadow: 0 12px 24px rgba(255, 209, 102, .08);
}
.bb-indicator-card-footer {
  min-height: 38px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.bb-indicator-tv-link,
.bb-indicator-locked {
  width: 100%;
  min-height: 36px;
  border-radius: 13px;
  text-align: center;
}
.bb-indicator-tv-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8df8cd;
  background: rgba(122, 245, 176, .07);
  border: 1px solid rgba(122, 245, 176, .20);
}
.bb-indicator-note {
  border-color: rgba(255, 209, 102, .18);
  background: linear-gradient(135deg, rgba(255, 209, 102, .06), rgba(92, 242, 255, .035));
}
@media (max-width: 1180px) {
  .bb-indicator-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bb-indicator-toolbar { grid-template-columns: 1fr 1fr; }
  .bb-indicator-toolbar label:first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .bb-indicator-shell { width: min(100% - 24px, 1360px); padding-top: 18px; }
  .bb-indicator-profile { grid-template-columns: 1fr; padding: 22px; }
  .bb-indicator-profile::after { display: none; }
  .bb-indicator-stats span { min-width: 0; flex: 1 1 130px; }
  .bb-indicator-grid,
  .bb-indicator-toolbar,
  .bb-indicator-price-row > div { grid-template-columns: 1fr; }
  .bb-indicator-section-head { display: grid; }
  .bb-indicator-section-head small { text-align: left; max-width: none; }
  .bb-indicator-card-body { min-height: 0; }
}


/* 88BB Indicator Library Luxury Showroom v1.6
   - Remove image corner 88 mark
   - Rename 中文 Statistics tab to 统计 via JS
   - Softer luxury CTA frames, tier-based product card accents */
.bb-indicator-card-chart {
  display: none !important;
}

.bb-indicator-card {
  --tier-accent: #f6d365;
  --tier-accent-rgb: 246, 211, 101;
  --tier-secondary: #8df8cd;
  --tier-secondary-rgb: 141, 248, 205;
  border-color: rgba(var(--tier-accent-rgb), .26) !important;
  background:
    linear-gradient(180deg, rgba(12, 18, 28, .94), rgba(4, 8, 14, .96)) padding-box,
    radial-gradient(circle at 16% 0%, rgba(var(--tier-accent-rgb), .16), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(var(--tier-secondary-rgb), .10), transparent 32%) !important;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(var(--tier-accent-rgb), .05),
    inset 0 1px 0 rgba(255, 255, 255, .08) !important;
}
.bb-indicator-card[data-tier="free"] {
  --tier-accent: #9fb0c2;
  --tier-accent-rgb: 159, 176, 194;
  --tier-secondary: #7be7ff;
  --tier-secondary-rgb: 123, 231, 255;
}
.bb-indicator-card[data-tier="basic"] {
  --tier-accent: #8df8cd;
  --tier-accent-rgb: 141, 248, 205;
  --tier-secondary: #7be7ff;
  --tier-secondary-rgb: 123, 231, 255;
}
.bb-indicator-card[data-tier="plus"] {
  --tier-accent: #f6d365;
  --tier-accent-rgb: 246, 211, 101;
  --tier-secondary: #8df8cd;
  --tier-secondary-rgb: 141, 248, 205;
}
.bb-indicator-card[data-tier="pro"] {
  --tier-accent: #ffd166;
  --tier-accent-rgb: 255, 209, 102;
  --tier-secondary: #ff7aa8;
  --tier-secondary-rgb: 255, 122, 168;
}
.bb-indicator-card::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), transparent 24%, rgba(var(--tier-accent-rgb), .08) 66%, rgba(var(--tier-secondary-rgb), .08)) !important;
  opacity: .72 !important;
}
.bb-indicator-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 11px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--tier-accent-rgb), .72), rgba(var(--tier-secondary-rgb), .38), transparent);
  pointer-events: none;
}
.bb-indicator-card:hover {
  border-color: rgba(var(--tier-accent-rgb), .46) !important;
  box-shadow:
    0 34px 92px rgba(0, 0, 0, .50),
    0 0 36px rgba(var(--tier-accent-rgb), .10),
    inset 0 1px 0 rgba(255, 255, 255, .10) !important;
}
.bb-indicator-card-image {
  overflow: hidden;
  border-color: rgba(var(--tier-accent-rgb), .20) !important;
  background: #02050a;
}
.bb-indicator-card-image img {
  filter: saturate(.96) contrast(1.04) brightness(.88);
  transform: scale(1.005);
}
.bb-indicator-card-image::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.12) 46%, rgba(0,0,0,.42) 100%),
    radial-gradient(circle at 18% 0%, rgba(var(--tier-accent-rgb), .14), transparent 30%) !important;
}
.bb-indicator-card-category {
  color: rgb(var(--tier-secondary-rgb)) !important;
  background: rgba(var(--tier-secondary-rgb), .075) !important;
  border-color: rgba(var(--tier-secondary-rgb), .20) !important;
}
.bb-indicator-card-tier {
  color: rgb(var(--tier-accent-rgb)) !important;
  background: rgba(var(--tier-accent-rgb), .075) !important;
  border-color: rgba(var(--tier-accent-rgb), .24) !important;
}

.bb-indicator-price-box {
  border-color: rgba(var(--tier-accent-rgb), .18) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
    radial-gradient(circle at 0% 0%, rgba(var(--tier-accent-rgb), .09), transparent 32%),
    rgba(0, 0, 0, .28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.065),
    0 14px 30px rgba(0,0,0,.18) !important;
}
.bb-indicator-price-row > b {
  color: rgba(var(--tier-accent-rgb), .92) !important;
  letter-spacing: .14em;
}
.bb-indicator-plan-pill {
  border-color: rgba(255,255,255,.09) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.12)),
    rgba(3, 7, 12, .64) !important;
}
.bb-indicator-plan-pill strong {
  color: #f6f7f8 !important;
}
.bb-indicator-plan-pill.is-bbtc {
  border-color: rgba(var(--tier-accent-rgb), .18) !important;
  background: rgba(var(--tier-accent-rgb), .045) !important;
}
.bb-indicator-plan-pill.is-bbtc strong {
  color: rgb(var(--tier-accent-rgb)) !important;
}

.bb-indicator-apply-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px !important;
}
.bb-indicator-apply {
  position: relative;
  overflow: hidden;
  min-height: 42px;
  color: #d9fff0 !important;
  text-shadow: none !important;
  border: 1px solid rgba(var(--tier-secondary-rgb), .24) !important;
  background:
    linear-gradient(180deg, rgba(var(--tier-secondary-rgb), .105), rgba(var(--tier-secondary-rgb), .035)),
    rgba(1, 6, 10, .72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 24px rgba(0,0,0,.20) !important;
}
.bb-indicator-apply::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.035);
  pointer-events: none;
}
.bb-indicator-apply:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(var(--tier-secondary-rgb), .44) !important;
  background:
    linear-gradient(180deg, rgba(var(--tier-secondary-rgb), .15), rgba(var(--tier-secondary-rgb), .05)),
    rgba(1, 6, 10, .82) !important;
}
.bb-indicator-apply.is-bbtc {
  color: #ffe9a8 !important;
  border-color: rgba(var(--tier-accent-rgb), .30) !important;
  background:
    linear-gradient(180deg, rgba(var(--tier-accent-rgb), .13), rgba(var(--tier-accent-rgb), .04)),
    rgba(7, 5, 1, .58) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 24px rgba(0,0,0,.20) !important;
}
.bb-indicator-apply.is-bbtc:hover:not(:disabled) {
  border-color: rgba(var(--tier-accent-rgb), .50) !important;
  background:
    linear-gradient(180deg, rgba(var(--tier-accent-rgb), .18), rgba(var(--tier-accent-rgb), .055)),
    rgba(7, 5, 1, .68) !important;
}
.bb-indicator-tv-link {
  border-color: rgba(var(--tier-secondary-rgb), .20) !important;
  background: rgba(var(--tier-secondary-rgb), .055) !important;
}

@media (max-width: 720px) {
  .bb-indicator-apply-row {
    grid-template-columns: 1fr;
  }
}
