@charset "UTF-8";
/* ---- VIP Details page (tier explorer) — pixel pass against the approved design ---- */
.vtg-vipDetails {
  max-width: 440px;
  margin: 0 auto;
  padding: 14px 15px 32px;
  color: rgba(229, 231, 235, 0.92);
}

/* Header row: back + title on the left, scope pill on the right */
.vtg-vipDetails__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vtg-vipDetails__scopePill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #1D2536;
  border: 1px solid #343A49;
  font-size: 12px;
  font-weight: 700;
  color: #3B82F6;
  white-space: nowrap;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}

.vtg-vipDetails__scopePill i {
  font-size: 13px;
  color: #3b82f6;
}

/* Current / Next summary */
.vtg-vipDetails__summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.vtg-vipDetails__summaryCol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.vtg-vipDetails__summaryLabel {
  font-size: 12px;
  color: #7c879c;
  font-weight: 400;
  text-transform: none;
}

.vtg-vipDetails__summaryCol strong {
  font-family: var(--primary-800);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.vtg-vipDetails__summaryCol strong.is-accent {
  color: var(--vip-next-accent, #ed672f);
}

.vtg-vipDetails__summaryCol strong.is-accent-current {
  color: var(--vip-accent, #fff);
}

.vip-theme-3 .vtg-vipDetails__summaryCol strong.is-accent-current {
  color: #00D1FF;
}

.vip-theme-4 .vtg-vipDetails__summaryCol strong.is-accent-current {
  color: #A64DFF;
}

.vip-theme-5 .vtg-vipDetails__summaryCol strong.is-accent-current {
  color: #7B61FF;
}

.vtg-vipDetails__summaryDivider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.14);
  justify-self: center;
}

/* Tier selector row (VIP 1-5) */
.vtg-vipDetails__tiers {
  gap: 10px;
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
}

.vtg-vipDetails__tier {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: none;
  border: 0;
  padding: 8px 2px 10px;
  cursor: pointer;
}

.vtg-vipDetails__tierBadgeSm {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vtg-vipDetails__tierBadgeSm img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.vtg-vipDetails__tier.is-selected {
  border-color: var(--vip-accent, #ed672f);
  box-shadow: 0 0 0 1px var(--vip-accent-ring, rgba(237, 103, 47, 0.35));
  border-radius: 16px;
}

.vtg-vipDetails__tier.is-selected .vtg-vipDetails__tierBadgeSm {
  border: none;
  box-shadow: none;
}

.vtg-vipDetails__tierLockBadge {
  position: absolute;
  top: 0;
  right: 2px;
  width: 20px;
  height: auto;
  border-radius: 999px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vtg-vipDetails__tierLockBadge img {
  width: auto;
  height: auto;
}

.vtg-vipDetails__tierLabel {
  font-size: 12px;
  font-weight: 700;
  color: #7c879c;
}

.vtg-vipDetails__tier.is-selected .vtg-vipDetails__tierLabel {
  color: var(--vip-accent, #ed672f);
}

/* Selected tier detail card
   Theme hook: pages set --vip-accent / --vip-card-shadow / --vip-progress-fill
   on a wrapper (e.g. .vip-theme-2) to re-skin the card + progress bar per
   VIP tier without touching this shared markup/CSS. VIP 1 has no wrapper,
   so it keeps the literal fallback values below. */
.vtg-vipDetails__tierCard {
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
  background: var(--vip-card-bg, #131a2c);
  border: 1px solid var(--vip-accent, #ed672f);
  box-shadow: var(--vip-card-shadow, none);
}

.vtg-vipDetails__tierCardHead {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vtg-vipDetails__tierBadge {
  flex: 0 0 auto;
  width: 130px;
  object-fit: contain;
}

.vtg-vipDetails__tierBadge_img {
  background: none;
  box-shadow: none;
  width: 100px;
  height: auto;
  margin-left: -3px;
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
}

.vtg-vipDetails__tierCardText h2 {
  margin: 0;
  font-size: 28px;
  font-weight: var(--primary-800) !important;
  color: #fff;
}

.vtg-vipDetails__tierDesc {
  margin: 8px 0 0;
  font-size: 15px;
  color: #7c879c;
}

.vtg-vipDetails__tierProgress {
  margin-top: 10px;
}

.vtg-vipDetails__tierProgressMeta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 14px;
}

.vtg-vipDetails__tierProgressNums strong {
  color: var(--vip-accent, #ed672f);
  font-weight: 800;
  font-size: 18px;
}

.vtg-vipDetails__tierProgressNums .is-muted {
  color: #7c879c;
  font-weight: 500;
  font-size: 18px;
}

.vtg-vipDetails__tierProgressPct {
  color: var(--vip-accent, #ed672f);
  font-weight: 800;
  font-size: 24px;
}

.vtg-vipDetails__tierProgressBar {
  height: 10px;
  border-radius: 999px;
  background: none;
  border: none;
  overflow: hidden;
}

.vtg-vipDetails__tierProgressFill {
  height: 100%;
  border-radius: 999px;
  background: var(--vip-progress-fill, linear-gradient(90deg, #ffb07a, #ed672f));
  transition: width 300ms ease;
}

/* Section headings (Requirements / Benefits) */
.vtg-vipDetails__section {
  margin-bottom: 20px;
}

.vtg-vipDetails__heading {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}

/* Requirements list */
.vtg-vipDetails__reqList {
  display: grid;
  gap: 16px;
}

.vtg-vipDetails__reqRow {
  border-radius: 22px;
  padding: 16px;
  background: #131a2c;
  border: 1px solid #2a3247;
}

.vtg-vipDetails__reqRow.is-completed {
  border-color: rgba(51, 204, 51, 0.4);
}

.vtg-vipDetails__reqTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vtg-vipDetails__reqTitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.vtg-vipDetails__reqNum {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: none;
  border: 1px solid var(--vip-accent, #8A92A6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--vip-accent, #8A92A6);
}

.vtg-vipDetails__reqNum.is-completed {
  border-color: #33CC33;
  color: #33CC33;
}

.vtg-vipDetails__reqStatus {
  flex: 0 0 auto;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  color: #7c879c;
  background: rgba(128, 128, 128, 0.2);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.vtg-vipDetails__reqStatus.is-completed {
  background: rgba(51, 204, 51, 0.2);
  color: #33CC33;
}

.vtg-vipDetails__reqStatus.is-in-progress {
  background: rgba(229, 128, 26, 0.2);
  color: #F93;
}

/* Per-requirement progress (number + bar) — used by requirements that track
   toward a numeric target (e.g. "3 / 10") instead of the sub-line/checklist
   layout above. */
.vtg-vipDetails__reqProgress {
  margin-top: 14px;
}

.vtg-vipDetails__reqProgressNums {
  display: block;
  margin-bottom: 10px;
}

.vtg-vipDetails__reqProgressNums strong {
  color: #ED672F;
  font-weight: 800;
  font-size: 12px;
}

.vtg-vipDetails__reqProgressNums.is-completed strong {
  color: #33CC33;
}

.vtg-vipDetails__reqProgressNums .is-muted {
  color: #7c879c;
  font-weight: 500;
  font-size: 12px;
}

.vtg-vipDetails__reqProgressBar {
  height: 10px;
  border-radius: 999px;
  background: none;
  border: none;
  overflow: hidden;
}

.vtg-vipDetails__reqProgressFill {
  height: 100%;
  border-radius: 999px;
  background: #ED672F;
  transition: width 300ms ease;
}

.vtg-vipDetails__reqProgressFill.is-completed {
  background: #33CC33;
}

.vtg-vipDetails__reqSubWrap {
  margin-top: 8px;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vtg-vipDetails__reqSubLines {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vtg-vipDetails__reqSubLine {
  padding-left: 0;
  color: #5E6678;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 4px;
  margin-bottom: 2px;
}

.vtg-vipDetails__reqSubLine.is-actionable {
  color: #8b95aa;
  cursor: pointer;
}

.vtg-vipDetails__reqSubLine.is-completed {
  color: #33CC33;
}

.vtg-vipDetails__reqChev {
  color: #fff;
  font-size: 20px;
  flex: 0 0 auto;
}

.vtg-vipDetails__reqMeta {
  margin-top: 16px;
  padding-left: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.vtg-vipDetails__reqMeta strong {
  font-weight: 800;
  font-size: 12px;
  color: #8A92A6;
}

.vtg-vipDetails__reqMeta .is-muted {
  color: #5E6678;
  font-weight: 500;
  font-size: 12px;
}

.vtg-vipDetails__reqEmpty {
  padding: 18px;
  text-align: center;
  font-size: 13px;
  color: #7c879c;
  background: #131a2c;
  border: 1px solid #2a3247;
  border-radius: 14px;
}

/* Stat tiles: "X of Y requirements completed" / "N more <x> needed" */
.vtg-vipDetails__statGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.vtg-vipDetails__statTile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 20px;
  background: #131a2c;
  border: 1px solid #2a3247;
}

.vtg-vipDetails__statIcon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
}

.vtg-vipDetails__statIcon img {
  width: 18px;
  height: auto;
}

.vtg-vipDetails__statText {
  min-width: 0;
}

.vtg-vipDetails__statValue {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.vtg-vipDetails__statLabel {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
  color: #8A92A6;
  line-height: 1.3;
}

/* Benefits list */
.vtg-vipDetails__benefitList {
  display: grid;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid #343A49;
  background: #131A2C;
  box-shadow: 0 6px 16px -10px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
}

.vtg-vipDetails__benefitCard {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 0 15px;
  background: none;
  border: none;
  border-bottom: 1px solid #2a3247;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.vtg-vipDetails__benefitCard:nth-last-child(1) {
  border-bottom: none;
  padding-bottom: 0;
}

.vtg-vipDetails__benefitIcon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(237, 103, 47, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ed672f;
  font-size: 16px;
}

.vtg-vipDetails__benefitIcon.has-img {
  background: none;
}

.vtg-vipDetails__benefitIcon img {
  width: 40px;
  height: 40px;
}

.vtg-vipDetails__benefitTitle {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
}

.vtg-vipDetails__benefitDesc {
  margin-top: 4px;
  font-size: 12px;
  color: #8A92A6;
}

/* All-Game Challenge cards (VIP 4+). Same shell as the benefit list, but each
   card carries its own footer: a Join button, a live progress bar, or the
   settled outcome. */
.vtg-vipDetails__challengeList {
  display: grid;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid #343A49;
  background: #131A2C;
  box-shadow: 0 6px 16px -10px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
}

.vtg-vipDetails__challengeCard {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0 15px;
  border-bottom: 1px solid #2a3247;
}

.vtg-vipDetails__challengeCard:nth-last-child(1) {
  border-bottom: none;
  padding-bottom: 0;
}

.vtg-vipDetails__challengeProgressMeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 12px;
  color: #E6E9F2;
}

/* The tier bar has a transparent track; challenge bars need a visible one. */
.vtg-vipDetails__challengeProgress .vtg-vipDetails__tierProgressBar {
  background: #232B3E;
}

.vtg-vipDetails__challengeJoin {
  align-self: flex-start;
  min-width: 92px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #0B1020;
  border: none;
  border-radius: 999px;
  background: var(--vip-progress-fill, linear-gradient(90deg, #ffb07a, #ed672f));
  cursor: pointer;
}

.vtg-vipDetails__challengeJoin:disabled {
  opacity: 0.55;
  cursor: default;
}

.vtg-vipDetails__challengeOutcome {
  font-size: 12px;
  color: #8A92A6;
}

.vtg-vipDetails__challengeOutcome.is-won {
  color: #35D07F;
}

.vtg-vipDetails__challengeOutcome.is-lost {
  color: #E4626F;
}

@media (max-width: 420px) {
  .vtg-vipDetails__tierLabel {
    font-size: 11px;
  }
  .vtg-vipDetails__tierBadge {
    width: 96px;
  }
}
/* Per-tier color themes.
   Apply the matching class to the page's ".second_card_main" wrapper to
   re-skin the tier card + progress bar (border, numbers, %, fill) without
   touching the shared markup/CSS above. VIP 1 stays on the hardcoded
   fallback values (no wrapper class). Add a new block here for VIP 3-5
   when their approved colors are ready. */
.vip-theme-2 {
  --vip-accent: #00D1FF;
  --vip-accent-ring: rgba(0, 209, 255, 0.35);
  --vip-next-accent: #A64DFF;
  --vip-card-bg: #131A2C;
  --vip-card-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.40);
  --vip-progress-fill: #00D1FF;
  --vip-progress-track: rgba(0, 209, 255, 0.12);
}

.vip-theme-3 {
  --vip-accent: #A64DFF;
  --vip-accent-ring: rgba(166, 77, 255, 0.35);
  --vip-next-accent: #A64DFF;
  --vip-card-bg: #131A2C;
  --vip-card-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.40);
  --vip-progress-fill: #A64DFF;
  --vip-progress-track: rgba(166, 77, 255, 0.12);
}

.vip-theme-4 {
  --vip-accent: #FF9F0A;
  --vip-accent-ring: rgba(255, 159, 10, 0.35);
  --vip-next-accent: #FF9F0A;
  --vip-card-bg: #131A2C;
  --vip-card-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.40);
  --vip-progress-fill: #FF9F0A;
  --vip-progress-track: rgba(255, 159, 10, 0.12);
}

.vip-theme-5 {
  --vip-accent: #7B61FF;
  --vip-accent-ring: rgba(123, 97, 255, 0.35);
  --vip-next-accent: #7B61FF;
  --vip-card-bg: #131A2C;
  --vip-card-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.40);
  --vip-progress-fill: #7B61FF;
  --vip-progress-track: rgba(123, 97, 255, 0.12);
}

/*# sourceMappingURL=ann_latest.css.map */
