.wc-page {
  --wc-bg: #031b20;
  --wc-panel: rgba(5, 42, 48, 0.92);
  --wc-panel-soft: rgba(8, 54, 61, 0.72);
  --wc-border: rgba(35, 225, 217, 0.25);
  --wc-border-strong: rgba(41, 244, 231, 0.58);
  --wc-cyan: #1ff2e5;
  --wc-cyan-soft: #8ffbf4;
  --wc-teal: #08bdb9;
  --wc-gold: #f3cb62;
  --wc-gold-soft: #ffe7a0;
  --wc-text: #f1ffff;
  --wc-muted: #9ebfc1;
  --wc-danger: #ff7a84;
  --wc-success: #63e5a4;
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 10px 10px 112px;
  color: var(--wc-text);
  font-family: inherit;
  background:
    radial-gradient(circle at 94% 7%, rgba(19, 213, 198, 0.11), transparent 28%),
    linear-gradient(180deg, #031d22 0%, #02161b 100%);
}

.screen:not(.auth-screen) > .wc-page.wc-dialog-open {
  z-index: 20;
}

.wc-page,
.wc-page * {
  box-sizing: border-box;
}

.wc-page button,
.wc-page input,
.wc-page select {
  font: inherit;
}

.wc-page button {
  -webkit-tap-highlight-color: transparent;
}

.wc-page button:focus-visible,
.wc-page input:focus-visible,
.wc-page select:focus-visible {
  outline: 2px solid var(--wc-cyan);
  outline-offset: 2px;
}

.wc-loading,
.wc-load-error {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--wc-border);
  border-radius: 18px;
  background: var(--wc-panel);
}

.wc-loading strong,
.wc-load-error strong {
  font-size: 16px;
}

.wc-loading > span:last-child,
.wc-load-error p {
  margin: 0;
  color: var(--wc-muted);
  font-size: 13px;
  line-height: 1.55;
}

.wc-spinner,
.wc-mini-spinner {
  display: inline-block;
  width: 27px;
  height: 27px;
  border: 3px solid rgba(31, 242, 229, 0.2);
  border-top-color: var(--wc-cyan);
  border-radius: 50%;
  animation: wc-spin 0.8s linear infinite;
}

.wc-mini-spinner {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

@keyframes wc-spin {
  to { transform: rotate(360deg); }
}

.wc-load-error-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 122, 132, 0.5);
  border-radius: 50%;
  color: var(--wc-danger);
  background: rgba(255, 122, 132, 0.12);
  font-size: 22px;
  font-weight: 900;
}

.wc-button {
  min-height: 38px;
  padding: 9px 16px;
  border: 1px solid var(--wc-border-strong);
  border-radius: 11px;
  color: var(--wc-text);
  background: rgba(5, 51, 57, 0.82);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease, opacity 0.16s ease;
}

.wc-button:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.wc-button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.wc-button-primary {
  border-color: rgba(78, 255, 242, 0.68);
  color: #002729;
  background: linear-gradient(135deg, #55fff2, #0fcac4);
  box-shadow: 0 8px 22px rgba(0, 215, 205, 0.2);
}

.wc-stale-warning {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 181, 91, 0.42);
  border-radius: 12px;
  color: #ffe5b5;
  background: rgba(111, 64, 16, 0.55);
}

.wc-stale-warning > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #2b1903;
  background: #ffc96f;
  font-weight: 900;
}

.wc-stale-warning p {
  flex: 1;
  margin: 0;
  font-size: 12px;
}

.wc-stale-warning button {
  padding: 5px 8px;
  border: 0;
  color: #ffe5b5;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.wc-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--wc-border-strong);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(2, 31, 36, 0.18), rgba(2, 22, 27, 0.97)),
    url("/assets/ui/quick-powerbank-tile.png?v=1") right -42px top -30px / 250px 250px no-repeat,
    radial-gradient(circle at 76% 18%, rgba(29, 228, 216, 0.18), transparent 36%),
    linear-gradient(135deg, #06373d 0%, #031b20 58%, #021317 100%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}

.wc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 17%, rgba(63, 255, 235, 0.19), transparent 30%),
    linear-gradient(90deg, rgba(0, 20, 25, 0.74), rgba(0, 20, 25, 0.15));
}

.wc-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(2, 25, 29, 0.98), transparent 66%);
}

.wc-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 17px;
}

.wc-hero-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.wc-eyebrow,
.wc-section-heading > div > span,
.wc-dialog-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--wc-cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.wc-hero h1 {
  max-width: 300px;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 7vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.wc-hero-heading p {
  max-width: 330px;
  margin: 8px 0 0;
  color: #cae1e2;
  font-size: 12px;
  line-height: 1.45;
}

.wc-icon-button {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(78, 244, 233, 0.4);
  border-radius: 12px;
  color: var(--wc-cyan-soft);
  background: rgba(1, 31, 36, 0.78);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.wc-icon-button:disabled {
  opacity: 0.5;
  cursor: wait;
}

.wc-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-top: 12px;
  color: #b8d2d3;
  font-size: 10px;
}

.wc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid var(--wc-border);
  border-radius: 999px;
  color: var(--wc-cyan-soft);
  background: rgba(2, 36, 41, 0.88);
  font-weight: 900;
  text-transform: uppercase;
}

.wc-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.wc-status-active i {
  animation: wc-status-pulse 1.7s ease-in-out infinite;
}

.wc-status-settling {
  color: var(--wc-gold-soft);
  border-color: rgba(243, 203, 98, 0.4);
}

.wc-status-closed {
  color: #bdc7c8;
}

@keyframes wc-status-pulse {
  50% { opacity: 0.38; }
}

.wc-progress-panel {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  grid-template-areas:
    "ring summary"
    "groups groups";
  align-items: center;
  column-gap: 14px;
  row-gap: 10px;
  margin-top: auto;
  padding: 14px;
  border: 1px solid rgba(54, 239, 226, 0.23);
  border-radius: 18px;
  background: rgba(0, 26, 31, 0.75);
  backdrop-filter: blur(8px);
}

.wc-progress-ring {
  --wc-progress: 0;
  grid-area: ring;
  position: relative;
  flex: 0 0 82px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: conic-gradient(
    var(--wc-cyan) calc(var(--wc-progress) * 1%),
    rgba(93, 160, 160, 0.2) 0
  );
  box-shadow: 0 0 22px rgba(31, 242, 229, 0.14);
}

.wc-progress-ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(54, 240, 229, 0.24);
  border-radius: 50%;
  background: #052b30;
}

.wc-progress-ring span {
  position: relative;
  display: flex;
  align-items: baseline;
}

.wc-progress-ring strong {
  font-size: 28px;
  line-height: 1;
}

.wc-progress-ring small {
  margin-left: 2px;
  color: var(--wc-muted);
  font-size: 11px;
}

.wc-progress-copy {
  display: contents;
}

.wc-progress-summary {
  grid-area: summary;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.wc-progress-summary strong {
  font-size: 15px;
}

.wc-progress-summary span {
  color: var(--wc-muted);
  font-size: 10px;
  font-weight: 800;
}

.wc-progress-groups {
  grid-area: groups;
  display: grid;
  gap: 0;
  margin-top: 0;
  padding: 5px 6px;
  border: 1px solid rgba(77, 221, 213, 0.16);
  border-radius: 11px;
  background: rgba(0, 20, 24, 0.5);
}

.wc-progress-group {
  --wc-group-accent: var(--wc-cyan);
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto minmax(52px, auto);
  align-items: center;
  gap: 6px;
  min-height: 28px;
}

.wc-progress-group + .wc-progress-group {
  border-top: 1px solid rgba(94, 169, 168, 0.09);
}

.wc-progress-group[data-wc-progress-group="battery"] {
  --wc-group-accent: #74e9a7;
}

.wc-progress-group[data-wc-progress-group="power_bank"] {
  --wc-group-accent: #7bbcff;
}

.wc-progress-group[data-wc-progress-group="gold"] {
  --wc-group-accent: var(--wc-gold-soft);
}

.wc-progress-group-name {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #bdd1d2;
  font-size: 10px;
  font-weight: 800;
}

.wc-progress-group-name > b {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  padding: 3px;
  border: 1px solid color-mix(in srgb, var(--wc-group-accent) 46%, transparent);
  border-radius: 4px;
  color: var(--wc-group-accent);
  font-size: 10px;
  line-height: 1;
}

.wc-progress-group-name > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-progress-group-slots {
  display: grid;
  grid-template-columns: repeat(6, minmax(20px, 24px));
  align-items: center;
  justify-content: end;
  gap: 3px;
  min-width: 0;
}

.wc-progress-group-slots i {
  display: grid;
  place-items: center;
  width: auto;
  min-width: 0;
  height: 22px;
  border: 1px solid rgba(125, 189, 189, 0.21);
  border-radius: 4px;
  color: rgba(179, 211, 211, 0.52);
  background: rgba(72, 112, 115, 0.33);
  font-style: normal;
  font-size: 9px;
  line-height: 1;
}

.wc-progress-group-slots i.is-lit {
  border-color: var(--wc-group-accent);
  color: #012326;
  background: var(--wc-group-accent);
  box-shadow: 0 0 7px color-mix(in srgb, var(--wc-group-accent) 66%, transparent);
}

.wc-progress-group-slots b {
  font: inherit;
  font-weight: 900;
}

.wc-progress-group-count,
.wc-progress-claim {
  justify-self: end;
  color: var(--wc-muted);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.wc-progress-group-count.is-complete {
  color: var(--wc-group-accent);
}

.wc-page .wc-progress-reward-button {
  justify-self: end;
  min-width: 52px;
  height: 30px;
  min-height: 0;
  padding: 5px 7px;
  border: 1px solid rgba(243, 203, 98, 0.72);
  border-radius: 8px;
  color: #2c2104;
  background: linear-gradient(135deg, #ffe494, #e4b63b);
  box-shadow: 0 0 8px rgba(243, 203, 98, 0.2);
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.wc-page .wc-progress-reward-button.is-overall {
  min-width: 78px;
  height: 34px;
  font-size: 11px;
}

.wc-progress-group-count.is-overall,
.wc-progress-claim.is-overall {
  font-size: 11px;
}

.wc-page .wc-progress-reward-button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.wc-progress-claim.is-pending {
  color: var(--wc-gold-soft);
}

.wc-progress-claim.is-paid {
  color: #82f5bd;
}

.wc-progress-claim.is-rejected {
  color: #ff9b9b;
}

.wc-previous-claims {
  margin-top: 8px;
  border: 1px solid rgba(65, 213, 207, 0.2);
  border-radius: 11px;
  background: rgba(0, 25, 30, 0.72);
}

.wc-previous-claims > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 9px 11px;
  color: #d8f2f1;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.wc-previous-claims > summary strong {
  color: var(--wc-gold-soft);
}

.wc-previous-claims > .wc-claim-history-list {
  padding: 0 8px 8px;
}

.wc-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 8px;
}

.wc-hero-stats > div {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid rgba(65, 213, 207, 0.19);
  border-radius: 11px;
  background: rgba(0, 25, 30, 0.72);
}

.wc-hero-stats span {
  display: block;
  overflow: hidden;
  color: var(--wc-muted);
  font-size: 9px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-hero-stats strong {
  display: block;
  margin-top: 2px;
  color: var(--wc-cyan-soft);
  font-size: 17px;
}

.wc-hero-stats small {
  color: var(--wc-muted);
  font-size: 10px;
}

.wc-energy-source {
  margin-top: 9px;
  padding: 10px;
  border: 1px solid rgba(243, 203, 98, 0.3);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(67, 50, 13, 0.32), rgba(2, 32, 37, 0.78)),
    rgba(0, 22, 27, 0.74);
}

.wc-energy-source-heading {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.wc-energy-source-heading > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 220, 118, 0.43);
  border-radius: 9px;
  color: var(--wc-gold-soft);
  background: rgba(108, 77, 13, 0.38);
  box-shadow: 0 0 14px rgba(243, 203, 98, 0.16);
  font-size: 16px;
}

.wc-energy-source-heading div {
  min-width: 0;
}

.wc-energy-source-heading small {
  display: block;
  color: var(--wc-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.wc-energy-source-heading strong {
  display: block;
  margin-top: 1px;
  color: #fff7d6;
  font-size: 14px;
}

.wc-energy-source-heading p,
.wc-energy-source-note {
  margin: 3px 0 0;
  color: var(--wc-muted);
  font-size: 13px;
  line-height: 1.6;
}

.wc-energy-source-counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin-top: 8px;
}

.wc-energy-source-item {
  min-width: 0;
  display: grid;
  gap: 1px;
  padding: 6px 7px;
  border: 1px solid rgba(54, 220, 208, 0.18);
  border-radius: 8px;
  background: rgba(0, 26, 31, 0.64);
}

.wc-energy-source-item b {
  color: #d9f9f6;
  font-size: 12px;
}

.wc-energy-source-item > small {
  overflow: hidden;
  color: var(--wc-muted);
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-energy-source-item strong {
  color: var(--wc-gold-soft);
  font-size: 12px;
  white-space: nowrap;
}

.wc-energy-source-item em {
  color: #ffe58c;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.wc-energy-source-note {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid rgba(255, 227, 142, 0.13);
}

.wc-settlement-notice,
.wc-participation-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 9px;
  padding: 11px 12px;
  border: 1px solid rgba(243, 203, 98, 0.38);
  border-radius: 13px;
  color: #ffe9af;
  background: linear-gradient(135deg, rgba(78, 57, 14, 0.75), rgba(28, 40, 31, 0.77));
}

.wc-settlement-icon,
.wc-participation-notice > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 224, 143, 0.42);
  border-radius: 50%;
  color: #14200f;
  background: var(--wc-gold);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.wc-settlement-notice strong,
.wc-participation-notice strong {
  display: block;
  font-size: 12px;
}

.wc-settlement-notice p,
.wc-participation-notice p {
  margin: 2px 0 0;
  font-size: 10px;
  line-height: 1.45;
}

.wc-participation-notice {
  border-color: rgba(255, 122, 132, 0.35);
  color: #ffd9dc;
  background: rgba(79, 25, 33, 0.7);
}

.wc-participation-notice > span {
  border-color: rgba(255, 170, 177, 0.42);
  background: #ff9da5;
}

.wc-section {
  margin-top: 13px;
  padding: 14px 12px;
  border: 1px solid var(--wc-border);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(7, 48, 54, 0.95), rgba(3, 31, 36, 0.96));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.19);
}

.wc-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.wc-section-heading h2 {
  margin: 0;
  color: #f7ffff;
  font-size: 19px;
  line-height: 1.12;
}

.wc-section-heading > p {
  max-width: 48%;
  margin: 0;
  color: var(--wc-muted);
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
}

.wc-groups {
  display: grid;
  gap: 11px;
}

.wc-group {
  position: relative;
  overflow: hidden;
  padding: 11px;
  border: 1px solid rgba(47, 213, 205, 0.2);
  border-radius: 14px;
  background: rgba(3, 31, 36, 0.74);
}

.wc-group::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -35px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(23, 224, 211, 0.1), transparent 67%);
}

.wc-group[data-wc-group-code="power_bank"]::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -16px;
  width: 130px;
  height: 90px;
  opacity: 0.07;
  pointer-events: none;
  background: url("/assets/ui/quick-powerbank-tile.png?v=1") center / contain no-repeat;
}

.wc-group[data-wc-group-code="gold"] {
  border-color: rgba(243, 203, 98, 0.32);
  background:
    radial-gradient(circle at 90% 10%, rgba(243, 203, 98, 0.11), transparent 32%),
    rgba(35, 31, 20, 0.77);
}

.wc-group.is-complete {
  border-color: rgba(99, 229, 164, 0.58);
  box-shadow: inset 0 0 24px rgba(48, 215, 145, 0.07);
}

.wc-group-header,
.wc-group-title,
.wc-group-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.wc-group-header {
  justify-content: space-between;
  gap: 9px;
}

.wc-group-title {
  min-width: 0;
  gap: 8px;
}

.wc-group-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(53, 247, 231, 0.43);
  border-radius: 11px;
  color: var(--wc-cyan);
  background: rgba(9, 88, 91, 0.42);
  font-size: 18px;
  font-weight: 900;
  box-shadow: inset 0 0 13px rgba(25, 242, 229, 0.1);
}

.wc-group[data-wc-group-code="gold"] .wc-group-icon {
  border-color: rgba(243, 203, 98, 0.53);
  color: var(--wc-gold);
  background: rgba(116, 81, 17, 0.3);
}

.wc-group-title h2 {
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-group-title p {
  margin: 2px 0 0;
  color: var(--wc-muted);
  font-size: 9px;
}

.wc-group-reward {
  flex: 0 0 auto;
  text-align: right;
}

.wc-group-reward span {
  display: block;
  color: var(--wc-muted);
  font-size: 8px;
  text-transform: uppercase;
}

.wc-group-reward strong {
  display: block;
  margin-top: 2px;
  color: var(--wc-gold-soft);
  font-size: 13px;
}

.wc-group-meter {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 3px;
  margin: 9px 0 11px;
  border-radius: 999px;
  background: rgba(114, 170, 172, 0.17);
}

.wc-group-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--wc-teal), var(--wc-cyan));
  box-shadow: 0 0 8px var(--wc-cyan);
}

.wc-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.wc-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(97, 162, 164, 0.2);
  border-radius: 11px;
  background: rgba(3, 25, 30, 0.82);
}

.wc-card.is-available {
  border-color: rgba(31, 242, 229, 0.42);
  background: linear-gradient(145deg, rgba(7, 61, 66, 0.92), rgba(3, 29, 34, 0.9));
}

.wc-card.is-activated {
  border-color: rgba(99, 229, 164, 0.48);
  background: linear-gradient(145deg, rgba(16, 67, 58, 0.9), rgba(3, 33, 35, 0.91));
}

.wc-card.is-golden.is-available,
.wc-card.is-golden.is-activated {
  border-color: rgba(243, 203, 98, 0.54);
  background: linear-gradient(145deg, rgba(85, 65, 25, 0.85), rgba(31, 34, 29, 0.92));
}

.wc-card-glow {
  position: absolute;
  top: -35px;
  left: -25px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(44, 255, 237, 0.2), transparent 68%);
}

.wc-card.is-available .wc-card-glow,
.wc-card.is-activated .wc-card-glow {
  opacity: 1;
}

.wc-card-face {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wc-card-group-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(31, 242, 229, 0.34);
  border-radius: 9px;
  color: var(--wc-cyan-soft);
  background: rgba(6, 68, 72, 0.42);
  font-size: 15px;
  font-weight: 900;
}

.wc-card.is-golden .wc-card-group-icon {
  border-color: rgba(243, 203, 98, 0.54);
  color: var(--wc-gold-soft);
  background: rgba(103, 76, 21, 0.36);
  text-shadow: 0 0 9px rgba(255, 215, 100, 0.46);
}

.wc-card-face > b {
  color: #bbd0d1;
  font-size: 9px;
}

.wc-card-check {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #072d23;
  background: var(--wc-success);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.wc-card-copy {
  position: relative;
  min-width: 0;
  margin-top: 7px;
}

.wc-card-copy > strong {
  display: block;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-card-quantities {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.wc-card-quantities span {
  padding: 3px 5px;
  border-radius: 5px;
  color: var(--wc-muted);
  background: rgba(102, 150, 151, 0.1);
  font-size: 8px;
}

.wc-card-quantities b {
  color: #e9ffff;
}

.wc-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 7px;
}

.wc-card-button {
  min-width: 0;
  min-height: 27px;
  padding: 5px 4px;
  border: 1px solid rgba(44, 224, 216, 0.32);
  border-radius: 7px;
  color: var(--wc-cyan-soft);
  background: rgba(7, 66, 69, 0.43);
  font-size: 8px;
  font-weight: 900;
  cursor: pointer;
}

.wc-card-button-activate {
  color: #002526;
  background: linear-gradient(135deg, #53f4e8, #0ebcb9);
}

.wc-card-button:disabled {
  border-color: rgba(112, 144, 145, 0.14);
  color: #718d8f;
  background: rgba(44, 65, 68, 0.25);
  cursor: not-allowed;
}

.wc-activated-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  color: var(--wc-success);
  font-size: 8px;
  font-weight: 900;
}

.wc-group-footer {
  gap: 6px;
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid rgba(66, 167, 166, 0.14);
  color: var(--wc-muted);
  font-size: 8px;
}

.wc-group-footer strong {
  color: #d7ecec;
  font-size: 9px;
}

.wc-group-footer em {
  margin-left: auto;
  color: var(--wc-success);
  font-style: normal;
  font-weight: 900;
}

.wc-backpack-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.wc-backpack-heading > div > span {
  display: block;
  margin-bottom: 4px;
  color: var(--wc-cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.wc-backpack-heading h2 {
  margin: 0;
  color: #f7ffff;
  font-size: 19px;
  line-height: 1.12;
}

.wc-backpack-heading > strong {
  flex: 0 0 auto;
  color: var(--wc-cyan-soft);
  font-size: 20px;
  line-height: 1;
}

.wc-backpack-heading > strong small {
  color: var(--wc-muted);
  font-size: 10px;
}

.wc-backpack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wc-energy-card {
  --wc-energy-accent: var(--wc-cyan);
  --wc-energy-accent-soft: #9dfff8;
  position: relative;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(97, 162, 164, 0.2);
  border-radius: 15px;
  background: rgba(3, 25, 30, 0.86);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.wc-energy-card[data-wc-group-code="battery"] {
  --wc-energy-accent: #74e9a7;
  --wc-energy-accent-soft: #c2ffdc;
}

.wc-energy-card[data-wc-group-code="power_bank"] {
  --wc-energy-accent: #7bbcff;
  --wc-energy-accent-soft: #c9e2ff;
}

.wc-energy-card[data-wc-group-code="gold"] {
  --wc-energy-accent: var(--wc-gold);
  --wc-energy-accent-soft: var(--wc-gold-soft);
}

.wc-energy-card.is-available {
  border-color: color-mix(in srgb, var(--wc-energy-accent) 58%, transparent);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--wc-energy-accent) 9%, #062d33), #031d22);
}

.wc-energy-card.is-activated {
  border-color: color-mix(in srgb, var(--wc-energy-accent) 76%, transparent);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--wc-energy-accent) 14%, #07372f), #031f22);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.14),
    0 0 14px color-mix(in srgb, var(--wc-energy-accent) 16%, transparent);
}

.wc-energy-card-art {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--wc-energy-accent) 42%, transparent);
  border-radius: 13px;
  color: var(--wc-energy-accent);
  background:
    radial-gradient(circle at 50% 43%, color-mix(in srgb, var(--wc-energy-accent) 16%, transparent), transparent 46%),
    linear-gradient(150deg, rgba(10, 69, 75, 0.9), rgba(2, 24, 29, 0.96));
}

.wc-energy-card[data-wc-group-code="gold"] .wc-energy-card-art {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 215, 91, 0.2), transparent 45%),
    linear-gradient(150deg, rgba(85, 62, 15, 0.92), rgba(27, 25, 18, 0.97));
}

.wc-energy-card-art::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--wc-energy-accent) 18%, transparent);
  border-radius: 8px;
  pointer-events: none;
}

.wc-energy-card-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49%, color-mix(in srgb, var(--wc-energy-accent) 22%, transparent) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, color-mix(in srgb, var(--wc-energy-accent) 16%, transparent) 50%, transparent 51%);
  background-size: 18px 18px;
}

.wc-energy-card.is-locked .wc-energy-card-art {
  opacity: 0.5;
  filter: grayscale(0.58);
}

.wc-energy-card-type,
.wc-energy-card-owned,
.wc-energy-card-index {
  position: absolute;
  z-index: 2;
  font-weight: 900;
  line-height: 1;
}

.wc-energy-card-type {
  top: 10px;
  left: 10px;
  overflow: hidden;
  max-width: 58%;
  color: var(--wc-energy-accent-soft);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-energy-card-owned {
  top: 8px;
  right: 8px;
  padding: 4px 6px;
  border-radius: 999px;
  color: #dff9f8;
  background: rgba(0, 18, 22, 0.7);
  font-size: 9px;
}

.wc-energy-card-index {
  right: 10px;
  bottom: 9px;
  color: color-mix(in srgb, var(--wc-energy-accent-soft) 72%, transparent);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.wc-energy-symbols {
  z-index: 1;
  display: grid;
  align-items: center;
  justify-items: center;
  justify-content: center;
  width: 80%;
  min-height: 52%;
  gap: 5px;
}

.wc-energy-symbols-1 {
  grid-template-columns: 1fr;
}

.wc-energy-symbols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.wc-energy-symbols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.wc-energy-symbols-4 {
  grid-template-columns: repeat(2, 1fr);
}

.wc-energy-symbols-5,
.wc-energy-symbols-6 {
  grid-template-columns: repeat(3, 1fr);
}

.wc-energy-glyph {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--wc-energy-accent);
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--wc-energy-accent) 52%, transparent));
}

.wc-energy-symbols-1 .wc-energy-glyph {
  width: 64px;
  height: 64px;
}

.wc-energy-symbols-2 .wc-energy-glyph {
  width: 45px;
  height: 45px;
}

.wc-energy-symbols-3 .wc-energy-glyph,
.wc-energy-symbols-4 .wc-energy-glyph {
  width: 36px;
  height: 36px;
}

.wc-energy-glyph svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wc-energy-card[data-wc-group-code="lightning"] .wc-energy-glyph svg {
  fill: currentColor;
  stroke: none;
}

.wc-energy-glyph .wc-energy-glyph-fill {
  fill: currentColor;
  stroke: none;
  opacity: 0.72;
}

.wc-energy-letter {
  z-index: 1;
  color: var(--wc-energy-accent-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 17vw, 76px);
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 0 12px rgba(255, 215, 87, 0.5),
    0 4px 0 rgba(104, 66, 5, 0.7);
}

.wc-energy-card-check {
  position: absolute;
  right: 9px;
  bottom: 31px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #04291f;
  background: var(--wc-success);
  box-shadow: 0 0 9px rgba(99, 229, 164, 0.62);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.wc-energy-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 7px;
}

.wc-energy-card-stats span {
  overflow: hidden;
  padding: 7px 4px;
  border-radius: 7px;
  color: var(--wc-muted);
  background: rgba(102, 150, 151, 0.1);
  font-size: 10px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-energy-card-stats b {
  color: #e9ffff;
}

.wc-energy-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 7px;
}

.wc-page .wc-energy-card-button,
.wc-energy-card-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 10px 8px;
  border: 1px solid color-mix(in srgb, var(--wc-energy-accent) 32%, transparent);
  border-radius: 9px;
  color: var(--wc-energy-accent-soft);
  background: color-mix(in srgb, var(--wc-energy-accent) 10%, rgba(3, 39, 44, 0.82));
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.wc-page .wc-energy-card-button {
  cursor: pointer;
}

.wc-page .wc-energy-card-button-activate {
  color: #002526;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--wc-energy-accent) 70%, #fff),
    var(--wc-energy-accent)
  );
}

.wc-page .wc-energy-card-button:disabled {
  border-color: rgba(112, 144, 145, 0.12);
  color: #668184;
  background: rgba(44, 65, 68, 0.22);
  cursor: not-allowed;
}

.wc-energy-card-state {
  border-color: rgba(99, 229, 164, 0.28);
  color: var(--wc-success);
  background: rgba(31, 103, 77, 0.16);
}

.wc-reward-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(243, 203, 98, 0.35);
  border-radius: 12px;
  color: #ffe9b0;
  background: rgba(90, 67, 21, 0.23);
}

.wc-reward-summary span {
  font-size: 10px;
}

.wc-reward-summary strong {
  font-size: 18px;
}

.wc-reward-grid {
  display: grid;
  gap: 7px;
}

.wc-reward-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  grid-template-areas:
    "icon copy amount"
    "icon copy action";
  align-items: center;
  gap: 3px 9px;
  padding: 9px;
  border: 1px solid rgba(65, 172, 171, 0.18);
  border-radius: 11px;
  background: rgba(2, 29, 34, 0.73);
}

.wc-reward-card.is-complete {
  border-color: rgba(99, 229, 164, 0.39);
}

.wc-reward-card.is-paid {
  background: rgba(13, 64, 51, 0.55);
}

.wc-reward-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(50, 229, 218, 0.35);
  border-radius: 10px;
  color: var(--wc-cyan);
  background: rgba(10, 75, 78, 0.4);
  font-size: 16px;
  font-weight: 900;
}

.wc-reward-copy {
  grid-area: copy;
  min-width: 0;
}

.wc-reward-copy strong,
.wc-reward-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-reward-copy strong {
  font-size: 11px;
}

.wc-reward-copy span {
  margin-top: 3px;
  color: var(--wc-muted);
  font-size: 8px;
}

.wc-reward-amount {
  grid-area: amount;
  text-align: right;
}

.wc-reward-amount span {
  display: block;
  color: var(--wc-muted);
  font-size: 8px;
}

.wc-reward-amount strong {
  display: block;
  margin-top: 2px;
  color: var(--wc-gold-soft);
  font-size: 12px;
}

.wc-reward-action {
  grid-area: action;
  text-align: right;
}

.wc-reward-action .wc-button {
  min-height: 27px;
  padding: 5px 9px;
  font-size: 8px;
}

.wc-claim-pill {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--wc-muted);
  background: rgba(112, 151, 152, 0.14);
  font-size: 8px;
  font-weight: 800;
}

.wc-claim-pill.is-pending {
  color: #ffdd92;
  background: rgba(178, 118, 14, 0.2);
}

.wc-claim-pill.is-paid {
  color: var(--wc-success);
  background: rgba(38, 180, 119, 0.15);
}

.wc-claim-pill.is-rejected {
  color: #ffabb1;
  background: rgba(198, 58, 72, 0.16);
}

.wc-claim-history {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 12px;
}

.wc-history-column {
  padding: 9px;
  border: 1px solid rgba(62, 170, 168, 0.15);
  border-radius: 11px;
  background: rgba(1, 25, 29, 0.45);
}

.wc-history-column h3 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 7px;
  font-size: 11px;
}

.wc-history-column h3 span {
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--wc-cyan-soft);
  background: rgba(24, 184, 178, 0.18);
  font-size: 8px;
}

.wc-claim-history-list {
  display: grid;
  gap: 5px;
}

.wc-claim-history-list article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  grid-template-areas:
    "icon copy amount"
    "icon copy status";
  align-items: center;
  gap: 2px 7px;
  padding: 7px;
  border-radius: 8px;
  background: rgba(75, 122, 124, 0.08);
}

.wc-claim-history-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffdc94;
  background: rgba(175, 118, 23, 0.21);
  font-size: 10px;
  font-style: normal;
}

.wc-claim-history-icon.is-paid {
  color: var(--wc-success);
  background: rgba(34, 169, 109, 0.17);
}

.wc-claim-history-icon.is-rejected {
  color: var(--wc-danger);
  background: rgba(194, 56, 67, 0.17);
}

.wc-claim-history-list article > div {
  grid-area: copy;
  min-width: 0;
}

.wc-claim-history-list article > div strong,
.wc-claim-history-list article > div span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-claim-history-list article > div strong {
  font-size: 9px;
}

.wc-claim-history-list article > div span {
  margin-top: 2px;
  color: var(--wc-muted);
  font-size: 7px;
}

.wc-claim-history-list article > b {
  grid-area: amount;
  color: #f5e0ac;
  font-size: 9px;
}

.wc-claim-history-list article > em {
  grid-area: status;
  justify-self: end;
  color: #ffdc94;
  font-size: 7px;
  font-style: normal;
}

.wc-claim-history-list article > em.is-paid {
  color: var(--wc-success);
}

.wc-claim-history-list article > em.is-rejected {
  color: var(--wc-danger);
}

.wc-empty-compact {
  padding: 10px;
  border: 1px dashed rgba(104, 168, 168, 0.19);
  border-radius: 8px;
  color: var(--wc-muted);
  font-size: 9px;
  text-align: center;
}

.wc-scope-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  line-height: 1;
}

.wc-scope-icon > svg,
.wc-scope-icon-all > i svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wc-scope-icon-lightning > svg,
.wc-scope-icon-all > i:first-child svg {
  fill: currentColor;
  stroke: none;
}

.wc-scope-icon .wc-energy-glyph-fill {
  fill: currentColor;
  stroke: none;
  opacity: 0.72;
}

.wc-scope-icon-gold {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15em;
  font-weight: 900;
  text-shadow: 0 0 8px currentColor;
}

.wc-scope-icon-all {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 1px;
}

.wc-scope-icon-all > i,
.wc-scope-icon-all > b {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  margin: 0;
  font-size: 8px;
  font-style: normal;
  line-height: 1;
}

.wc-ranking-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  margin-bottom: 9px;
}

.wc-rankings-section .wc-section-heading > div > span {
  font-size: 10px;
}

.wc-rankings-section .wc-section-heading h2 {
  font-size: 22px;
}

.wc-rankings-section .wc-section-heading > p {
  font-size: 12px;
  line-height: 1.55;
}

.wc-ranking-tabs button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 76px;
  padding: 7px 4px;
  border: 1px solid rgba(66, 176, 174, 0.22);
  border-radius: 10px;
  color: #abcaca;
  background: rgba(3, 32, 37, 0.72);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.wc-ranking-tabs button > .wc-ranking-tab-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  color: var(--wc-cyan);
}

.wc-ranking-tabs button.is-active {
  border-color: rgba(76, 255, 242, 0.66);
  color: #00282a;
  background: linear-gradient(145deg, #4af1e6, #11bbb8);
  box-shadow: 0 7px 18px rgba(12, 201, 194, 0.16);
}

.wc-ranking-tabs button.is-active > .wc-ranking-tab-icon {
  color: #003437;
}

.wc-ranking-board {
  overflow: hidden;
  border: 1px solid rgba(49, 217, 207, 0.26);
  border-radius: 13px;
  background: rgba(2, 27, 32, 0.8);
}

.wc-ranking-board > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid rgba(68, 184, 181, 0.14);
  background: linear-gradient(90deg, rgba(14, 82, 83, 0.38), transparent);
}

.wc-ranking-board > header > div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.wc-ranking-scope-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(243, 203, 98, 0.42);
  border-radius: 10px;
  color: var(--wc-gold);
  background: rgba(101, 74, 17, 0.25);
  padding: 7px;
  font-size: 18px;
  font-weight: 900;
}

.wc-ranking-board h3 {
  margin: 0;
  font-size: 16px;
}

.wc-ranking-board header p {
  overflow: hidden;
  margin: 3px 0 0;
  color: var(--wc-muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-finalized {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--wc-cyan-soft);
  background: rgba(20, 177, 171, 0.16);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.wc-finalized.is-finalized {
  color: var(--wc-gold-soft);
  background: rgba(178, 126, 21, 0.18);
}

.wc-ranking-board ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wc-ranking-board li {
  display: grid;
  grid-template-columns: 28px 22px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 54px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(71, 148, 148, 0.1);
}

.wc-ranking-board li:nth-child(1) {
  background: linear-gradient(90deg, rgba(243, 203, 98, 0.13), transparent 75%);
}

.wc-ranking-board li:nth-child(2) {
  background: linear-gradient(90deg, rgba(205, 224, 229, 0.08), transparent 70%);
}

.wc-ranking-board li:nth-child(3) {
  background: linear-gradient(90deg, rgba(209, 135, 72, 0.08), transparent 70%);
}

.wc-ranking-board li.is-me {
  box-shadow: inset 3px 0 var(--wc-cyan);
}

.wc-ranking-board li.is-empty {
  opacity: 0.48;
}

.wc-rank-number {
  color: #e6ffff;
  font-size: 14px;
  font-weight: 900;
}

.wc-rank-medal {
  color: var(--wc-gold);
  font-size: 14px;
}

.wc-rank-account {
  min-width: 0;
}

.wc-rank-account strong,
.wc-rank-account span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-rank-account strong {
  font-size: 12px;
}

.wc-rank-account span {
  margin-top: 2px;
  color: var(--wc-muted);
  font-size: 10px;
}

.wc-rank-prize {
  color: var(--wc-gold-soft);
  font-size: 12px;
}

.wc-ranking-board > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  color: var(--wc-muted);
  background: rgba(9, 55, 60, 0.36);
  font-size: 11px;
}

.wc-ranking-board > footer strong {
  color: var(--wc-cyan-soft);
  font-size: 12px;
}

.wc-dialog-backdrop {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
  background: rgba(0, 10, 13, 0.78);
  backdrop-filter: blur(5px);
  animation: wc-fade-in 0.17s ease-out;
}

.wc-dialog {
  position: relative;
  width: min(100%, 430px);
  max-height: calc(100dvh - 28px);
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(52, 245, 231, 0.5);
  border-radius: 19px 19px 14px 14px;
  color: var(--wc-text);
  background:
    radial-gradient(circle at 90% 0%, rgba(35, 224, 210, 0.15), transparent 32%),
    #052a30;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
  animation: wc-dialog-up 0.21s ease-out;
}

@keyframes wc-fade-in {
  from { opacity: 0; }
}

@keyframes wc-dialog-up {
  from { transform: translateY(20px); opacity: 0; }
}

.wc-dialog-close {
  position: absolute;
  top: 11px;
  right: 11px;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(71, 207, 202, 0.3);
  border-radius: 10px;
  color: #d7eeee;
  background: rgba(2, 31, 36, 0.72);
  font-size: 20px;
  cursor: pointer;
}

.wc-dialog h2 {
  max-width: calc(100% - 40px);
  margin: 0;
  font-size: 20px;
}

.wc-dialog > p {
  margin: 7px 0 12px;
  color: var(--wc-muted);
  font-size: 11px;
  line-height: 1.5;
}

.wc-dialog-card-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 9px;
  border: 1px solid rgba(243, 203, 98, 0.28);
  border-radius: 11px;
  background: rgba(86, 63, 17, 0.19);
}

.wc-dialog-card-summary > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(243, 203, 98, 0.5);
  border-radius: 10px;
  color: var(--wc-gold-soft);
  background: rgba(111, 79, 15, 0.3);
  font-size: 16px;
  font-weight: 900;
}

.wc-dialog-card-summary div {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

.wc-dialog-card-summary strong {
  font-size: 10px;
}

.wc-dialog-card-summary b {
  color: var(--wc-gold-soft);
  font-size: 18px;
}

.wc-dialog form {
  display: grid;
  gap: 10px;
}

.wc-dialog label > span {
  display: block;
  margin: 0 0 5px 2px;
  color: #d5ebeb;
  font-size: 10px;
  font-weight: 800;
}

.wc-dialog input,
.wc-dialog select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid rgba(65, 202, 197, 0.31);
  border-radius: 10px;
  color: #f1ffff;
  background: rgba(1, 26, 31, 0.8);
  font-size: 12px;
}

.wc-dialog select option {
  color: #f1ffff;
  background: #052a30;
}

.wc-dialog input::placeholder {
  color: #739294;
}

.wc-dialog-usage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--wc-muted);
  background: rgba(88, 133, 135, 0.09);
  font-size: 10px;
}

.wc-dialog-usage strong {
  color: var(--wc-cyan-soft);
  font-size: 14px;
}

.wc-dialog-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 44px;
}

/* Home shortcut tone. The host adds this class from QUICK_LINK_META. */
.quick-link-collection {
  --quick-a: #63fff1;
  --quick-b: #0a9393;
  --quick-c: #ffe172;
  --quick-glow: rgba(64, 245, 229, 0.46);
}

/* Daily Chest: compact card-drop result and the route action shown by the host. */
.daily-chest-collection-drop {
  --wc-cyan: #1ff2e5;
  --wc-cyan-soft: #8ffbf4;
  --wc-gold: #f3cb62;
  --wc-gold-soft: #ffe7a0;
  --wc-muted: #9ebfc1;
  --wc-success: #63e5a4;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(44, 235, 222, 0.42);
  border-radius: 13px;
  color: #efffff;
  background:
    radial-gradient(circle at 5% 20%, rgba(36, 242, 226, 0.18), transparent 38%),
    rgba(3, 45, 51, 0.93);
  box-shadow: inset 0 0 22px rgba(19, 214, 202, 0.07);
}

.daily-chest-collection-drop::before {
  content: "NEW ENERGY CARD";
  position: absolute;
  top: 5px;
  right: 7px;
  color: rgba(116, 255, 245, 0.42);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.daily-chest-collection-drop > .daily-chest-collection-fallback {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(70, 255, 241, 0.42);
  border-radius: 14px;
  color: #8ffff6;
  background: rgba(4, 80, 82, 0.42);
}

.daily-chest-collection-drop > .daily-chest-collection-fallback svg {
  width: 42px;
  height: 42px;
}

.daily-chest-collection-drop > .wc-energy-card-preview {
  box-sizing: border-box;
  width: 94px;
  padding: 5px;
  border-radius: 14px;
  box-shadow:
    0 9px 20px rgba(0, 0, 0, 0.24),
    0 0 15px color-mix(in srgb, var(--wc-energy-accent) 15%, transparent);
}

.daily-chest-collection-drop > .wc-energy-card-preview .wc-energy-card-art {
  border-radius: 10px;
}

.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-card-type,
.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-card-owned,
.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-card-index {
  display: block;
  margin: 0;
  line-height: 1;
}

.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-card-type {
  top: 7px;
  left: 7px;
  max-width: 54%;
  color: var(--wc-energy-accent-soft);
  font-size: 7px;
  text-transform: none;
}

.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-card-owned {
  top: 5px;
  right: 5px;
  padding: 3px 4px;
  color: #efffff;
  font-size: 7px;
}

.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-card-index {
  right: 7px;
  bottom: 6px;
  color: color-mix(in srgb, var(--wc-energy-accent-soft) 76%, transparent);
  font-size: 9px;
}

.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-symbols {
  display: grid;
  width: 74%;
  min-height: 50%;
  gap: 2px;
  color: var(--wc-energy-accent);
}

.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-glyph {
  width: 16px;
  height: 16px;
}

.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-symbols-1 .wc-energy-glyph {
  width: 42px;
  height: 42px;
}

.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-symbols-2 .wc-energy-glyph {
  width: 27px;
  height: 27px;
}

.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-symbols-3 .wc-energy-glyph,
.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-symbols-4 .wc-energy-glyph {
  width: 20px;
  height: 20px;
}

.daily-chest-collection-drop .wc-energy-card-preview .wc-energy-letter {
  display: block;
  margin: 0;
  color: var(--wc-energy-accent-soft);
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
}

.daily-chest-collection-drop strong,
.daily-chest-collection-drop small,
.daily-chest-collection-drop em {
  display: block;
}

.daily-chest-collection-drop strong {
  color: #8ffff6;
  font-size: 12px;
}

.daily-chest-collection-drop small,
.daily-chest-collection-drop em {
  margin-top: 2px;
  color: #a9c9ca;
  font-size: 10px;
  font-style: normal;
  line-height: 1.35;
}

.daily-chest-collection-copy {
  min-width: 0;
  padding-right: 3px;
  text-align: left;
}

.daily-chest-collection-copy .daily-chest-ranking-copy {
  margin-top: 5px;
  color: #ffe38a;
  font-weight: 850;
}

.daily-chest-upgrade-copy {
  display: block;
  margin-top: 10px;
  color: rgba(255, 240, 172, 0.92);
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
  text-align: center;
}

.daily-chest-result-actions {
  display: flex;
  align-items: stretch;
  gap: 7px;
  width: 100%;
  margin-top: 10px;
}

.daily-chest-result-actions > button,
.daily-chest-result-actions > a {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(47, 224, 214, 0.4);
  border-radius: 10px;
  color: #c9ffff;
  background: rgba(6, 70, 74, 0.7);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.daily-chest-result-actions > button:first-child,
.daily-chest-result-actions > a:first-child {
  border-color: rgba(84, 255, 242, 0.68);
  color: #002729;
  background: linear-gradient(135deg, #55fff2, #0fcac4);
}

@media (max-width: 340px) {
  .daily-chest-collection-drop {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 9px;
    padding: 8px;
  }

  .daily-chest-collection-drop > .daily-chest-collection-fallback,
  .daily-chest-collection-drop > .wc-energy-card-preview {
    width: 84px;
  }

  .daily-chest-collection-drop > .daily-chest-collection-fallback {
    height: 84px;
  }

  .daily-chest-collection-drop .wc-energy-card-preview .wc-energy-letter {
    font-size: 40px;
  }
}

@media (min-width: 520px) {
  .wc-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  .wc-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wc-claim-history {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 370px) {
  .wc-page {
    padding-right: 7px;
    padding-left: 7px;
  }

  .wc-hero-content {
    padding: 13px;
  }

  .wc-progress-ring {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .wc-progress-ring strong {
    font-size: 24px;
  }

  .wc-progress-panel {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .wc-progress-groups {
    padding-right: 4px;
    padding-left: 4px;
  }

  .wc-progress-group {
    grid-template-columns: minmax(68px, 1fr) auto minmax(46px, auto);
    gap: 3px;
    min-height: 26px;
  }

  .wc-progress-group-name {
    gap: 3px;
    font-size: 9px;
  }

  .wc-progress-group-name > b {
    width: 18px;
    height: 18px;
    padding: 3px;
    font-size: 9px;
  }

  .wc-progress-group-slots {
    grid-template-columns: repeat(6, 20px);
    gap: 2px;
  }

  .wc-progress-group-slots i {
    width: auto;
    height: 18px;
    font-size: 8px;
  }

  .wc-page .wc-progress-reward-button {
    min-width: 46px;
    height: 28px;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 9px;
  }

  .wc-section-heading {
    display: block;
  }

  .wc-section-heading > p {
    max-width: none;
    margin-top: 6px;
    text-align: left;
  }

  .wc-card-grid {
    grid-template-columns: 1fr;
  }

  .wc-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-areas:
      "face copy"
      "face actions";
    gap: 3px 7px;
  }

  .wc-card-face {
    grid-area: face;
    display: block;
  }

  .wc-card-face > b {
    display: none;
  }

  .wc-card-check {
    position: absolute;
    right: -2px;
    bottom: -3px;
  }

  .wc-card-copy {
    grid-area: copy;
    margin-top: 0;
  }

  .wc-card-actions {
    grid-area: actions;
    margin-top: 3px;
  }

  .wc-ranking-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Compact Energy Collection redesign: option 1 */
.wc-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.wc-page {
  padding: 8px 9px 112px;
}

.wc-hero.wc-compact-hero {
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.wc-hero.wc-compact-hero::before {
  content: none;
}

.wc-overview-card,
.wc-energy-plan,
.wc-collection-section {
  border: 1px solid rgba(36, 225, 216, 0.42);
  background:
    radial-gradient(circle at 8% 0%, rgba(31, 242, 229, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(5, 42, 48, 0.98), rgba(2, 25, 30, 0.98));
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wc-overview-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 16px;
}

.wc-overview-card .wc-progress-ring {
  grid-area: auto;
  width: 70px;
  height: 70px;
  flex-basis: 70px;
}

.wc-overview-card .wc-progress-ring::before {
  inset: 6px;
}

.wc-overview-card .wc-progress-ring strong {
  font-size: 24px;
}

.wc-overview-card .wc-progress-ring small {
  font-size: 10px;
}

.wc-overview-tiles {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(37px, 1fr)) minmax(68px, 1.45fr);
  gap: 5px;
}

.wc-overview-tile,
.wc-overview-end {
  min-width: 0;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 3px;
  border: 1px solid rgba(65, 213, 207, 0.24);
  border-radius: 10px;
  color: #eaffff;
  background: rgba(1, 25, 30, 0.72);
}

.wc-overview-tile > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--wc-cyan);
}

.wc-overview-tile[data-wc-group-code="battery"] > span {
  color: #75eda9;
}

.wc-overview-tile[data-wc-group-code="power_bank"] > span {
  color: #7abaff;
}

.wc-overview-tile[data-wc-group-code="gold"] > span {
  color: var(--wc-gold-soft);
}

.wc-overview-tile .wc-scope-icon {
  width: 23px;
  height: 23px;
}

.wc-overview-tile strong {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1;
}

.wc-overview-tile small {
  display: none;
}

.wc-overview-end {
  align-items: flex-start;
  padding: 8px;
}

.wc-overview-end > small {
  color: var(--wc-cyan);
  font-size: 9px;
  font-weight: 950;
}

.wc-overview-end > strong {
  display: block;
  margin-top: 4px;
  color: #eaffff;
  font-size: 9px;
  line-height: 1.35;
}

.wc-completion-rewards {
  grid-column: 1 / -1;
  padding-top: 8px;
  border-top: 1px solid rgba(77, 221, 213, 0.14);
}

.wc-completion-rewards-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.wc-completion-rewards-heading > span {
  flex: 0 0 auto;
  color: var(--wc-cyan);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.wc-completion-rewards-heading > small {
  overflow: hidden;
  color: var(--wc-muted);
  font-size: 7px;
  line-height: 1.25;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-completion-chest-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}

.wc-page .wc-progress-reward-chest {
  min-width: 0;
  min-height: 70px;
  display: grid;
  grid-template-rows: 38px auto auto;
  place-items: center;
  gap: 0;
  padding: 2px 2px 4px;
  border: 1px solid rgba(111, 183, 183, 0.18);
  border-radius: 10px;
  color: #d9f4f2;
  background: rgba(1, 23, 28, 0.74);
  cursor: pointer;
}

.wc-page .wc-progress-reward-chest:disabled {
  opacity: 1;
  cursor: default;
}

.wc-progress-reward-chest > span {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 38px;
}

.wc-progress-reward-chest img {
  width: 41px;
  height: 41px;
  object-fit: contain;
  transform: translateY(-1px);
}

.wc-progress-reward-chest > em,
.wc-progress-reward-chest > small {
  display: block;
  overflow: hidden;
  width: 100%;
  font-style: normal;
  line-height: 1.15;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-progress-reward-chest > em {
  color: #d7ecec;
  font-size: 7px;
  font-weight: 950;
}

.wc-progress-reward-chest > small {
  color: var(--wc-muted);
  font-size: 7px;
  font-weight: 850;
}

.wc-progress-reward-chest.is-locked img {
  opacity: 0.28;
  filter: grayscale(1) brightness(0.52);
}

.wc-progress-reward-chest.is-locked > em,
.wc-progress-reward-chest.is-locked > small {
  color: rgba(174, 199, 198, 0.48);
}

.wc-progress-reward-chest.is-ready,
.wc-progress-reward-chest.is-complete,
.wc-progress-reward-chest.is-submitting {
  border-color: rgba(255, 217, 102, 0.76);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 217, 102, 0.2), transparent 58%),
    rgba(54, 42, 9, 0.54);
  box-shadow:
    0 0 17px rgba(255, 208, 73, 0.28),
    inset 0 0 12px rgba(255, 221, 111, 0.08);
}

.wc-progress-reward-chest.is-ready img {
  filter: saturate(1.2) brightness(1.2) drop-shadow(0 0 7px rgba(255, 211, 76, 0.8));
  animation: wc-reward-chest-ready 1.55s ease-in-out infinite;
}

.wc-progress-reward-chest.is-ready > em,
.wc-progress-reward-chest.is-ready > small,
.wc-progress-reward-chest.is-complete > em,
.wc-progress-reward-chest.is-complete > small {
  color: #ffe59a;
}

.wc-progress-reward-chest.is-pending {
  border-color: rgba(255, 194, 91, 0.52);
}

.wc-progress-reward-chest.is-paid {
  border-color: rgba(99, 229, 164, 0.7);
  box-shadow: 0 0 14px rgba(99, 229, 164, 0.2);
}

.wc-progress-reward-chest.is-rejected {
  border-color: rgba(255, 122, 132, 0.58);
}

.wc-progress-reward-chest > span > i {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(214, 255, 235, 0.74);
  border-radius: 50%;
  color: #05251c;
  background: var(--wc-success);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
}

@keyframes wc-reward-chest-ready {
  50% {
    transform: translateY(-2px) scale(1.06);
  }
}

.wc-energy-plan {
  margin-top: 10px;
  padding: 12px 12px 0;
  border-radius: 16px;
}

.wc-energy-plan-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.wc-energy-plan-heading span {
  display: block;
  margin-bottom: 2px;
  color: var(--wc-cyan);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.wc-energy-plan-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

.wc-energy-plan-heading p {
  margin: 0;
  color: #c6e5e4;
  font-size: 12px;
}

.wc-energy-plan-heading p strong {
  color: var(--wc-cyan);
  font-size: 22px;
}

.wc-energy-plan-next {
  margin-top: 5px;
  color: var(--wc-cyan-soft);
  font-size: 10px;
  font-weight: 850;
}

.wc-energy-chest-track {
  position: relative;
  display: flex;
  gap: 7px;
  margin-top: 9px;
  padding: 5px 1px 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.wc-energy-chest-track::-webkit-scrollbar {
  display: none;
}

.wc-energy-chest-track::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: rgba(35, 225, 217, 0.22);
}

.wc-energy-chest-node {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  min-height: 59px;
  display: grid;
  grid-template-rows: 38px 12px;
  place-items: center;
  padding: 2px 2px 4px;
  border: 1px solid rgba(66, 183, 180, 0.32);
  border-radius: 11px;
  appearance: none;
  color: inherit;
  background: rgba(1, 25, 30, 0.94);
  font: inherit;
  cursor: pointer;
}

.wc-energy-chest-node:disabled {
  opacity: 1;
  cursor: default;
}

.wc-energy-chest-image {
  position: relative;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
}

.wc-energy-chest-node img {
  width: 39px;
  height: 39px;
  object-fit: contain;
  opacity: 0.68;
  filter: grayscale(0.7) hue-rotate(120deg) brightness(0.72);
}

.wc-energy-chest-node > b {
  color: #b6d1d1;
  font-size: 9px;
}

.wc-energy-chest-node > small {
  position: absolute;
  right: 2px;
  bottom: 2px;
  padding: 1px 3px;
  border: 1px solid rgba(255, 221, 117, 0.42);
  border-radius: 4px;
  color: #251a02;
  background: #f3cb62;
  font-size: 6px;
  font-weight: 950;
}

.wc-energy-chest-node.is-locked > small {
  border-color: rgba(151, 184, 184, 0.24);
  color: #9db5b5;
  background: #183439;
}

.wc-energy-chest-node:not(.is-locked) img {
  opacity: 1;
  filter: saturate(1.15) brightness(1.06);
}

.wc-energy-chest-node.is-ready {
  border-color: rgba(255, 222, 117, 0.88);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 211, 76, 0.2), transparent 58%),
    rgba(59, 43, 7, 0.8);
  box-shadow:
    0 0 16px rgba(255, 211, 76, 0.32),
    inset 0 0 11px rgba(255, 225, 127, 0.09);
}

.wc-energy-chest-node.is-ready img {
  filter: saturate(1.22) brightness(1.18) drop-shadow(0 0 7px rgba(255, 211, 76, 0.75));
  animation: wc-reward-chest-ready 1.55s ease-in-out infinite;
}

.wc-energy-chest-node.is-ready > b {
  color: #ffe58b;
}

.wc-energy-chest-node.is-ready > small {
  border-color: rgba(255, 229, 139, 0.82);
  color: #352300;
  background: #ffe08a;
}

.wc-energy-chest-node.is-submitting,
.wc-energy-chest-node.is-pending,
.wc-energy-chest-node.is-paid,
.wc-energy-chest-node.is-rejected,
.wc-energy-chest-node.is-complete {
  background: rgba(1, 25, 30, 0.94);
  box-shadow: none;
}

.wc-energy-chest-node.is-submitting,
.wc-energy-chest-node.is-pending,
.wc-energy-chest-node.is-complete {
  border-color: rgba(218, 183, 93, 0.48);
}

.wc-energy-chest-node.is-submitting > small,
.wc-energy-chest-node.is-pending > small,
.wc-energy-chest-node.is-complete > small {
  border-color: rgba(218, 183, 93, 0.38);
  color: #e7ce8b;
  background: #253235;
}

.wc-energy-chest-node.is-paid {
  border-color: rgba(99, 229, 164, 0.7);
}

.wc-energy-chest-node.is-paid > small {
  border-color: rgba(99, 229, 164, 0.56);
  color: #bdf5da;
  background: #173831;
}

.wc-energy-chest-node.is-rejected {
  border-color: rgba(255, 122, 132, 0.64);
}

.wc-energy-chest-node.is-rejected > small {
  border-color: rgba(255, 122, 132, 0.52);
  color: #ffd1d5;
  background: #43242a;
}

.wc-energy-chest-image > i {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(214, 255, 235, 0.78);
  border-radius: 50%;
  color: #05251c;
  background: var(--wc-success);
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
}

.wc-energy-plan-actions {
  display: block;
  margin: 0 -12px;
  border-top: 1px solid rgba(65, 213, 207, 0.18);
}

.wc-vip-rules > summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  color: var(--wc-cyan);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.wc-vip-rules {
  min-width: 0;
}

.wc-vip-rules > summary {
  list-style: none;
}

.wc-vip-rules > summary::-webkit-details-marker {
  display: none;
}

.wc-vip-rules-grid,
.wc-vip-rules > p {
  grid-column: 1 / -1;
}

.wc-vip-rules[open] {
  grid-column: 1 / -1;
  padding: 0 10px 10px;
}

.wc-vip-rules[open] > summary {
  border-bottom: 1px solid rgba(65, 213, 207, 0.14);
}

.wc-vip-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin-top: 8px;
}

.wc-vip-rules-grid > span {
  min-width: 0;
  padding: 5px;
  border: 1px solid rgba(65, 213, 207, 0.18);
  border-radius: 7px;
  background: rgba(1, 23, 28, 0.64);
  text-align: center;
}

.wc-vip-rules-grid b,
.wc-vip-rules-grid strong,
.wc-vip-rules-grid em {
  display: block;
  font-style: normal;
  line-height: 1.25;
}

.wc-vip-rules-grid b {
  color: var(--wc-cyan);
  font-size: 8px;
}

.wc-vip-rules-grid strong,
.wc-vip-rules-grid em {
  color: #d7ecec;
  font-size: 7px;
}

.wc-vip-rules-grid em {
  color: var(--wc-gold-soft);
}

.wc-vip-rules > p {
  margin: 7px 0 0;
  color: var(--wc-muted);
  font-size: 8px;
  line-height: 1.45;
}

.wc-section.wc-collection-section {
  overflow: visible;
  margin-top: 10px;
  padding: 12px 10px;
  border-radius: 16px;
}

.wc-backpack-disclosure > summary {
  list-style: none;
  cursor: pointer;
}

.wc-backpack-disclosure > summary::-webkit-details-marker {
  display: none;
}

.wc-backpack-heading {
  align-items: center;
  margin-bottom: 8px;
}

.wc-backpack-disclosure:not([open]) .wc-backpack-heading {
  margin-bottom: 0;
}

.wc-backpack-heading > div > span {
  margin-bottom: 0;
  font-size: 13px;
}

.wc-backpack-heading h2 {
  font-size: 17px;
}

.wc-backpack-summary-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.wc-backpack-summary-meta > strong {
  color: #efffff;
  font-size: 17px;
  white-space: nowrap;
}

.wc-backpack-summary-meta > strong small {
  margin-left: 3px;
  color: var(--wc-muted);
  font-size: 8px;
  letter-spacing: 0.06em;
}

.wc-backpack-toggle {
  min-width: 34px;
  padding: 4px 6px;
  border: 1px solid rgba(65, 213, 207, 0.24);
  border-radius: 7px;
  color: var(--wc-cyan);
  background: rgba(1, 25, 30, 0.7);
  font-size: 8px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.wc-backpack-toggle-closed,
.wc-backpack-disclosure:not([open]) .wc-backpack-toggle-open {
  display: none;
}

.wc-backpack-disclosure:not([open]) .wc-backpack-toggle-closed {
  display: inline;
}

.wc-backpack-body {
  padding-top: 1px;
}

.wc-backpack-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 9px;
}

.wc-backpack-filters > button {
  min-width: 0;
  min-height: 34px;
  padding: 6px 4px;
  border: 1px solid rgba(65, 213, 207, 0.25);
  border-radius: 9px;
  color: #9ebfc1;
  background: rgba(1, 25, 30, 0.76);
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}

.wc-backpack-filters > button.is-active {
  border-color: var(--wc-cyan);
  color: #dffffc;
  background: rgba(10, 91, 94, 0.58);
  box-shadow: 0 0 13px rgba(31, 242, 229, 0.2);
}

.wc-backpack-matrix {
  display: grid;
  gap: 7px;
}

.wc-backpack-row {
  --wc-row-accent: var(--wc-cyan);
  display: grid;
  grid-template-columns: 67px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.wc-backpack-row[data-wc-group-code="battery"] {
  --wc-row-accent: #75eda9;
}

.wc-backpack-row[data-wc-group-code="power_bank"] {
  --wc-row-accent: #7abaff;
}

.wc-backpack-row[data-wc-group-code="gold"] {
  --wc-row-accent: var(--wc-gold);
}

.wc-backpack-row-label {
  min-width: 0;
  display: grid;
  justify-items: center;
  color: var(--wc-row-accent);
  text-align: center;
}

.wc-backpack-row-label > span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
}

.wc-backpack-row-label .wc-scope-icon {
  width: 29px;
  height: 29px;
}

.wc-backpack-row-label > strong {
  overflow: hidden;
  max-width: 100%;
  margin-top: 1px;
  font-size: 8px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-backpack-row-label > small {
  color: #a9c9ca;
  font-size: 10px;
  font-weight: 900;
}

.wc-backpack-slots {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}

.wc-backpack-card {
  position: relative;
  min-width: 0;
  height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1px;
  padding: 4px 2px 12px;
  border: 1px solid color-mix(in srgb, var(--wc-row-accent) 42%, transparent);
  border-radius: 9px;
  color: var(--wc-row-accent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--wc-row-accent) 7%, rgba(2, 30, 35, 0.94)), rgba(1, 22, 27, 0.96));
  cursor: pointer;
}

.wc-backpack-card-art {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
}

.wc-backpack-card-art > .wc-scope-icon {
  width: 24px;
  height: 24px;
}

.wc-backpack-card-art > b {
  color: var(--wc-gold-soft);
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1;
  text-shadow: 0 0 8px rgba(243, 203, 98, 0.45);
}

.wc-backpack-card-label {
  color: currentColor;
  font-size: 8px;
  font-weight: 950;
  line-height: 1;
}

.wc-backpack-card > small {
  position: absolute;
  right: 3px;
  bottom: 3px;
  left: 3px;
  display: block;
  height: 12px;
  border: 1px solid rgba(162, 224, 220, 0.22);
  border-radius: 999px;
  color: #d9f4f2;
  background: rgba(0, 14, 18, 0.72);
  font-size: 7px;
  line-height: 10px;
  text-align: center;
}

.wc-backpack-card > i {
  position: absolute;
  top: 2px;
  left: 2px;
  padding: 1px 2px;
  border-radius: 3px;
  color: #012326;
  background: var(--wc-row-accent);
  font-size: 5px;
  font-style: normal;
  font-weight: 950;
}

.wc-backpack-card.is-locked {
  border-color: rgba(122, 155, 156, 0.22);
  color: rgba(143, 173, 174, 0.42);
  background: rgba(16, 38, 42, 0.54);
  filter: grayscale(0.8);
}

.wc-backpack-card.is-available {
  box-shadow: inset 0 0 12px color-mix(in srgb, var(--wc-row-accent) 9%, transparent);
}

.wc-backpack-card.is-activated {
  border-color: var(--wc-row-accent);
  background:
    radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--wc-row-accent) 20%, transparent), transparent 64%),
    rgba(2, 35, 39, 0.96);
  box-shadow: 0 0 12px color-mix(in srgb, var(--wc-row-accent) 20%, transparent);
}

.wc-backpack-empty {
  grid-column: 1 / -1;
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--wc-muted);
  font-size: 8px;
  text-align: center;
}

.wc-card-actions-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px 12px calc(86px + env(safe-area-inset-bottom));
  background: rgba(0, 12, 16, 0.72);
  backdrop-filter: blur(7px);
}

.wc-card-actions-dialog {
  position: relative;
  width: min(380px, 100%);
  padding: 15px;
  border: 1px solid rgba(47, 224, 214, 0.5);
  border-radius: 17px;
  color: #efffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(31, 242, 229, 0.13), transparent 42%),
    #052c32;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

.wc-card-actions-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(47, 224, 214, 0.25);
  border-radius: 9px;
  color: #dffffc;
  background: rgba(1, 25, 30, 0.72);
  font-size: 20px;
  cursor: pointer;
}

.wc-card-actions-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--wc-cyan);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.wc-card-action-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 36px;
}

.wc-card-action-copy > span:last-child {
  min-width: 0;
}

.wc-card-action-copy strong,
.wc-card-action-copy small {
  display: block;
}

.wc-card-action-copy strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-card-action-copy small {
  margin-top: 3px;
  color: var(--wc-muted);
  font-size: 10px;
}

.wc-card-action-thumb {
  flex: 0 0 52px;
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 58px;
  border: 1px solid rgba(47, 224, 214, 0.36);
  border-radius: 11px;
  color: var(--wc-cyan);
  background: rgba(1, 25, 30, 0.72);
}

.wc-card-action-thumb > .wc-scope-icon {
  width: 31px;
  height: 31px;
}

.wc-card-action-thumb > b {
  color: var(--wc-gold-soft);
  font-family: Georgia, serif;
  font-size: 33px;
}

.wc-card-action-thumb > small {
  position: absolute;
  right: 4px;
  bottom: 3px;
  color: #d9f4f2;
  font-size: 8px;
  font-weight: 950;
}

.wc-card-action-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 11px;
}

.wc-card-action-stats > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(47, 224, 214, 0.18);
  border-radius: 9px;
  color: var(--wc-muted);
  background: rgba(1, 25, 30, 0.64);
  font-size: 9px;
}

.wc-card-action-stats strong {
  color: #ffffff;
  font-size: 13px;
}

.wc-card-action-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 9px;
}

.wc-card-action-button {
  min-height: 42px;
  border: 1px solid rgba(47, 224, 214, 0.55);
  border-radius: 10px;
  color: #002729;
  background: linear-gradient(135deg, #55fff2, #0fcac4);
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
}

.wc-card-action-button.is-gift {
  color: #dffffc;
  background: rgba(5, 66, 71, 0.82);
}

.wc-card-action-button:disabled {
  opacity: 0.42;
  cursor: default;
  filter: grayscale(0.6);
}

.wc-card-actions-dialog > p {
  margin: 8px 0 0;
  color: var(--wc-muted);
  font-size: 8px;
  line-height: 1.45;
  text-align: center;
}

.wc-rankings-section {
  padding: 0;
  overflow: hidden;
}

.wc-rankings-disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  list-style: none;
  cursor: pointer;
}

.wc-rankings-disclosure > summary::-webkit-details-marker {
  display: none;
}

.wc-rankings-disclosure > summary span {
  min-width: 0;
}

.wc-rankings-disclosure > summary small,
.wc-rankings-disclosure > summary strong {
  display: block;
}

.wc-rankings-disclosure > summary small {
  color: var(--wc-cyan);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.wc-rankings-disclosure > summary strong {
  margin-top: 2px;
  color: #efffff;
  font-size: 13px;
}

.wc-rankings-disclosure > summary > b {
  color: var(--wc-cyan);
  font-size: 10px;
}

.wc-rankings-body {
  padding: 0 10px 10px;
}

.wc-rankings-intro {
  margin: 0 0 8px;
  color: var(--wc-muted);
  font-size: 9px;
  line-height: 1.45;
}

.wc-point-draw {
  display: grid;
  gap: 9px;
  margin-top: 10px;
  padding: 11px;
  overflow: hidden;
  border-color: rgba(46, 239, 225, 0.36);
  background:
    radial-gradient(circle at 94% 0%, rgba(246, 202, 91, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(5, 49, 55, 0.96), rgba(3, 27, 34, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 24px rgba(0, 8, 12, 0.2);
}

.wc-point-draw-main {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wc-point-draw-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wc-point-draw-heading > span:last-child,
.wc-point-draw-balance {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.wc-point-draw-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  color: #062b2e;
  background: linear-gradient(135deg, #5df4e5, #f4cd68);
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(55, 235, 220, 0.22);
  font-size: 18px;
}

.wc-point-draw-heading small,
.wc-point-draw-balance small {
  color: var(--wc-cyan);
  font-size: 7px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.wc-point-draw-heading strong {
  overflow: hidden;
  color: #f3ffff;
  font-size: 12px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-point-draw-balance {
  flex: 0 0 auto;
  justify-items: end;
  text-align: right;
}

.wc-point-draw-balance strong {
  max-width: 150px;
  overflow: hidden;
  color: var(--wc-gold-soft);
  font-size: 19px;
  font-weight: 1000;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-point-draw-balance > span {
  color: rgba(192, 230, 228, 0.68);
  font-size: 8px;
  font-weight: 800;
}

.wc-point-draw-guide {
  margin: 0;
  padding: 9px 10px;
  color: rgba(218, 242, 240, 0.84);
  background: rgba(3, 25, 31, 0.64);
  border: 1px solid rgba(68, 226, 215, 0.17);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.45;
}

.wc-point-draw-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.wc-point-draw-action > span {
  color: rgba(201, 232, 230, 0.76);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
}

.wc-point-draw-action .wc-button {
  min-width: 124px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 10px;
}

.wc-point-draw-action .wc-button b {
  padding-left: 6px;
  border-left: 1px solid rgba(3, 49, 49, 0.22);
  font-size: 9px;
}

.wc-point-draw-result {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  color: #dbfffa;
  background: rgba(38, 205, 178, 0.1);
  border: 1px solid rgba(76, 236, 209, 0.2);
  border-radius: 9px;
}

.wc-point-draw-result.is-empty {
  color: rgba(218, 239, 237, 0.8);
  background: rgba(142, 174, 176, 0.08);
  border-color: rgba(184, 211, 212, 0.14);
}

.wc-point-draw-result.is-error {
  display: grid;
  gap: 2px;
  color: #ffd4d8;
  background: rgba(255, 111, 123, 0.09);
  border-color: rgba(255, 122, 132, 0.24);
}

.wc-point-draw-result.is-golden {
  color: #fff1b0;
  background: rgba(231, 182, 53, 0.12);
  border-color: rgba(255, 211, 102, 0.32);
}

.wc-point-draw-result-mark {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  color: #073033;
  background: #65ebdc;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 1000;
}

.wc-point-draw-result.is-golden .wc-point-draw-result-mark {
  background: linear-gradient(135deg, #fff0a4, #d8a838);
}

.wc-point-draw-result > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.wc-point-draw-result strong,
.wc-point-draw-result small,
.wc-point-draw-result > span {
  font-size: 9px;
}

.wc-point-draw-result strong {
  font-weight: 950;
}

.wc-point-draw-result small,
.wc-point-draw-result > span {
  color: inherit;
  opacity: 0.8;
}

.wc-point-draw-note {
  margin: 0;
  color: rgba(166, 207, 207, 0.66);
  font-size: 8px;
  line-height: 1.45;
}

@media (max-width: 350px) {
  .wc-point-draw {
    padding: 9px;
  }

  .wc-point-draw-main {
    gap: 6px;
  }

  .wc-point-draw-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .wc-point-draw-heading strong {
    font-size: 10px;
  }

  .wc-point-draw-balance strong {
    max-width: 105px;
    font-size: 16px;
  }

  .wc-point-draw-action {
    grid-template-columns: 1fr;
  }

  .wc-point-draw-action .wc-button {
    width: 100%;
  }
}

@media (max-width: 350px) {
  .wc-overview-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 6px;
    padding: 8px;
  }

  .wc-overview-card .wc-progress-ring {
    width: 62px;
    height: 62px;
  }

  .wc-overview-tiles {
    grid-template-columns: repeat(4, minmax(32px, 1fr)) minmax(59px, 1.4fr);
    gap: 3px;
  }

  .wc-overview-tile,
  .wc-overview-end {
    min-height: 62px;
    border-radius: 8px;
  }

  .wc-completion-chest-rail {
    gap: 3px;
  }

  .wc-page .wc-progress-reward-chest {
    min-height: 66px;
  }

  .wc-progress-reward-chest > span,
  .wc-progress-reward-chest img {
    width: 35px;
    height: 35px;
  }

  .wc-backpack-row {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 4px;
  }

  .wc-backpack-slots {
    gap: 3px;
  }

  .wc-backpack-card {
    height: 54px;
    border-radius: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wc-page *,
  .wc-page *::before,
  .wc-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
