/* Account tabs + two-column hero. Additive — do not replace styles.css. */

.account-hero {
  display: grid;
  gap: 14px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .account-hero {
    grid-template-columns: 1fr 1fr;
  }
}

.account-player-card,
.account-hero .dash-card {
  min-height: 100%;
}
.account-player-card .account-head {
  align-items: flex-start;
}
.account-player-card h1 {
  word-break: break-word;
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 4px 0 2px;
  border-bottom: 1px solid #2a2a30;
}
.account-tab {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--mist-500, #9ca3af);
  cursor: pointer;
  font-family: var(--font-display, inherit);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding: 10px 16px 12px;
  text-transform: uppercase;
}
.account-tab:hover {
  color: var(--mist-100, #f3f4f6);
}
.account-tab.is-on {
  color: var(--accent, #f2a900);
  border-bottom-color: var(--accent, #f2a900);
}
.account-tab:focus-visible {
  outline: 1px solid var(--accent, #f2a900);
  outline-offset: 2px;
}

.account-panels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.account-panel[hidden] {
  display: none !important;
}

.account-record-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.account-record-list li {
  border: 1px solid #2a2a30;
  background: #141418;
  padding: 10px 12px;
}
.account-record-list strong {
  display: block;
  margin: 0 0 4px;
}
.account-join {
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid #2a2a30;
  background: #141418;
}
.account-join.is-blocked {
  border-color: color-mix(in srgb, #ef4444 50%, #2a2a30);
}
.account-join .dash-remain {
  font-size: 1.35rem;
}

.field-static--readonly strong {
  font-weight: 600;
}

/* Supporter timeline — one horizontal track, not a 3-row list. */
.sup-tl-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 14px 0 8px;
  padding-bottom: 4px;
}
.sup-tl {
  position: relative;
  min-width: 540px;
  padding: 8px 10px 0;
}
.sup-tl-track {
  position: relative;
  height: 4px;
  margin: 10px 2px 0;
  background: #2a2a30;
  border-radius: 99px;
}
.sup-tl-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  max-width: 100%;
  background: var(--accent, #f2a900);
  border-radius: 99px;
}
.sup-tl-now {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border: 2px solid var(--accent, #f2a900);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px #141418;
  transform: translateY(-50%);
  z-index: 3;
}
.sup-tl-stops {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 8px;
  height: 118px;
}
.sup-tl-stop {
  position: absolute;
  top: -18px;
  width: 0;
}
.sup-tl-dot {
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #3a3a42;
  border-radius: 50%;
  background: #141418;
  color: #141418;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
}
.sup-tl-stop.is-on .sup-tl-dot {
  border-color: var(--accent, #f2a900);
  background: var(--accent, #f2a900);
  color: #141418;
}
.sup-tl-card {
  position: absolute;
  top: 34px;
  width: 168px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sup-tl-stop.is-first .sup-tl-card {
  left: -8px;
  text-align: left;
}
.sup-tl-stop.is-mid .sup-tl-card {
  left: 0;
  transform: translateX(-50%);
  text-align: center;
}
.sup-tl-stop.is-last .sup-tl-card {
  right: -8px;
  left: auto;
  text-align: right;
}
.sup-tl-card strong {
  display: block;
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.sup-tl-amt {
  color: var(--mist-500, #9ca3af);
  font-size: 12px;
}
.sup-tl-unlocks {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}
.sup-tl-stop.is-mid .sup-tl-unlocks {
  align-items: center;
}
.sup-tl-stop.is-last .sup-tl-unlocks {
  align-items: flex-end;
}
.sup-tl-unlocks span {
  display: inline-flex;
  width: fit-content;
  padding: 2px 7px;
  border: 1px solid #3a3a42;
  background: #1a1a1f;
  color: var(--mist-500, #9ca3af);
  font-family: var(--font-display, inherit);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}
.sup-tl-stop.is-on .sup-tl-card strong {
  color: #fff;
}
.sup-tl-stop.is-on .sup-tl-unlocks span {
  color: #fde68a;
  border-color: rgb(253 230 138 / 0.35);
  background: rgb(234 179 8 / 0.12);
}
.sup-tl-stop:not(.is-on) {
  opacity: 0.45;
}
.sup-tl-next {
  margin: 4px 0 0;
}

@media (min-width: 760px) {
  .sup-tl {
    min-width: 0;
  }
}

.product-or {
  margin: 0 0 8px;
  font-family: var(--font-display, inherit);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, #f2a900);
}
.product-card--donate {
  min-width: 0;
}
.product-card--donate .sup-status {
  margin-bottom: 10px;
}
.product-card--donate .btn-block {
  width: 100%;
}
