:root {
  color-scheme: light;
  --bg: #f5f7f8;
  --panel: #ffffff;
  --line: #d9e0e3;
  --text: #1f2a2e;
  --muted: #637277;
  --accent: #1f7a5c;
  --danger: #b73535;
  --warn: #9a6a08;
  --radius: 8px;
  --stat-spr: #d8ff76;
  --stat-sur: #8ef0ad;
  --stat-utl: #6eb6ff;
  --stat-atk: #ff7f6e;
  --stat-tm: #63d4c7;
  --stat-tf: #63d4c7;
  --stat-stl: #b18cff;
  --stat-late: #b18cff;
  --stat-fin: #f4b73f;
  --stat-conv: #f4b73f;
  --stat-dmg: #f0f4ff;
  --stat-mp: #9fb1ff;
  --stat-pts: #ffce7b;
  --stat-plc: #f08bd3;
}

.lobby-snapshot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.lobby-snapshot > div,
.admin-debug-section,
.premium-locked-section,
.create-lobby-result article {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}

.lobby-snapshot > div {
  padding: 12px;
  min-width: 0;
}

.lobby-snapshot span,
.create-lobby-result span,
.premium-locked-section .public-kicker {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.lobby-snapshot strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.lobby-snapshot small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-debug-section {
  margin-top: 14px;
  padding: 12px;
}

.admin-debug-section summary {
  cursor: pointer;
  font-weight: 800;
}

.create-lobby-draft--minimal .create-lobby-draft__grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.create-lobby-draft__wide,
.create-lobby-map-picker {
  grid-column: 1 / -1;
}

.create-lobby-map-picker select {
  min-height: 150px;
}

.create-lobby-result {
  margin-top: 16px;
}

.create-lobby-result article {
  padding: 14px;
}

.create-lobby-steps--compact {
  margin-top: 18px;
}

.premium-locked-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 22px 0;
  padding: 18px;
}

.premium-locked-section h2 {
  margin: 4px 0;
}

.premium-locked-section ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--bg);
  color: var(--text);
  font: 14px/1.45 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.public {
  display: block;
}

body.public main {
  max-width: 1120px;
  margin: 0 auto;
}

.sidebar {
  background: #10231d;
  color: white;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-weight: 700;
  font-size: 18px;
  padding: 0 8px 14px;
}

.sidebar button {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  text-align: left;
  color: #dce7e3;
  background: transparent;
  cursor: pointer;
}

.sidebar button.active,
.sidebar button:hover {
  color: white;
  background: #1e4b3b;
}

main {
  min-width: 0;
  padding: 22px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

p {
  margin: 4px 0 0;
  color: var(--muted);
}

.auth,
.filters,
.form-grid,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--text);
  padding: 8px 10px;
}

textarea {
  min-height: 78px;
  resize: vertical;
}

button {
  min-height: 36px;
  border: 1px solid #b8c8c2;
  border-radius: 6px;
  padding: 8px 12px;
  background: white;
  color: var(--text);
  cursor: pointer;
}

button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

button.danger {
  background: var(--danger);
  border-color: var(--danger);
  color: white;
}

button:disabled,
button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.52;
  filter: saturate(0.75);
}

.notice {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: white;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.hidden {
  display: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
  gap: 12px;
  align-items: start;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 12px;
}

.lobby-wizard {
  padding: 18px;
}

.lobby-wizard__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 16px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  gap: 8px;
}

.wizard-steps span {
  display: grid;
  gap: 4px;
  min-height: 56px;
  border: 1px solid #cfe0da;
  border-radius: 8px;
  padding: 8px;
  background: #f7fbf9;
  color: var(--muted);
  font-size: 12px;
}

.wizard-steps b {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: #dff2eb;
  color: var(--accent);
  font-size: 12px;
}

.lobby-wizard__form {
  display: grid;
  gap: 14px;
}

.wizard-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 12px;
}

.wizard-card {
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid #d6e3df;
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

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

.wizard-field {
  display: grid;
  gap: 6px;
}

.wizard-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wizard-field input,
.wizard-field select,
.wizard-field textarea {
  width: 100%;
}

.wizard-help {
  font-size: 12px;
}

.map-template-row,
.automation-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-template-row button {
  min-height: 32px;
  padding: 6px 10px;
  color: var(--accent);
  border-color: #b9d9cf;
  background: #f1faf6;
  font-weight: 700;
}

.automation-preview-grid span {
  border: 1px solid #d6e3df;
  border-radius: 999px;
  padding: 6px 10px;
  background: #f1f6f4;
  color: #33564b;
  font-size: 12px;
  font-weight: 700;
}

.wizard-toggle-list {
  display: grid;
  gap: 8px;
}

.wizard-toggle-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border: 1px solid #d6e3df;
  border-radius: 8px;
  padding: 8px 10px;
  background: #fbfdfc;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.wizard-actions p {
  max-width: 640px;
}

.lobby-readiness {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  border: 1px solid #d6e3df;
  border-radius: 10px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(47, 133, 90, 0.08), rgba(255, 255, 255, 0.76)),
    #fbfdfc;
}

.lobby-readiness__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.lobby-readiness__head h3 {
  margin: 0;
  color: #17352b;
  font-size: 22px;
}

.lobby-readiness__head p {
  max-width: 680px;
  margin: 5px 0 0;
  color: var(--muted);
}

.lobby-readiness__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(72px, 1fr));
  gap: 8px;
  margin: 0;
}

.lobby-readiness__summary div {
  display: grid;
  gap: 3px;
  min-height: 62px;
  align-content: center;
  border: 1px solid #d6e3df;
  border-radius: 8px;
  padding: 8px;
  background: #ffffff;
}

.lobby-readiness__summary dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.lobby-readiness__summary dd {
  margin: 0;
  color: #122820;
  font-size: 24px;
  font-weight: 900;
}

.lobby-readiness__next {
  display: grid;
  gap: 3px;
  border: 1px solid #d6e3df;
  border-left-width: 5px;
  border-radius: 8px;
  padding: 10px 12px;
  background: #ffffff;
}

.lobby-readiness__next span,
.lobby-readiness__item span,
.lobby-readiness__item small,
.lobby-readiness__warnings strong {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lobby-readiness__next span {
  color: var(--muted);
}

.lobby-readiness__next strong {
  color: #122820;
  font-size: 15px;
}

.publish-readiness {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  align-items: start;
  border: 1px solid #d6e3df;
  border-left-width: 5px;
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
}

.publish-readiness span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.publish-readiness strong {
  color: #122820;
  font-size: 16px;
}

.publish-readiness p {
  margin-top: 5px;
  color: #426258;
  font-size: 13px;
}

.publish-readiness b {
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.publish-readiness ul {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: #7d2c2c;
  font-size: 13px;
  line-height: 1.35;
}

.publish-readiness.is-ready {
  border-left-color: var(--accent);
}

.publish-readiness.is-ready b {
  color: #1f6f4e;
  background: #dff2eb;
}

.publish-readiness.is-blocked {
  border-left-color: var(--danger);
  background: #fff7f7;
}

.publish-readiness.is-blocked b {
  color: #8f2525;
  background: #f4e8e8;
}

.lobby-readiness__next.ready {
  border-left-color: var(--accent);
}

.lobby-readiness__next.attention {
  border-left-color: var(--warn);
}

.lobby-readiness__next.blocked {
  border-left-color: var(--danger);
}

.lobby-readiness__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
}

.lobby-readiness__item {
  display: grid;
  gap: 7px;
  min-height: 138px;
  align-content: start;
  border: 1px solid #d6e3df;
  border-radius: 8px;
  padding: 11px;
  background: #ffffff;
}

.lobby-readiness__item span {
  width: fit-content;
  border-radius: 999px;
  padding: 3px 7px;
}

.lobby-readiness__item h4 {
  margin: 0;
  color: #163126;
  font-size: 15px;
}

.lobby-readiness__item p {
  margin: 0;
  color: #426258;
  font-size: 13px;
  line-height: 1.35;
}

.lobby-readiness__item small {
  align-self: end;
  color: #244238;
  line-height: 1.25;
}

.lobby-readiness__item.is-ready {
  border-color: #bce2d0;
  background: #f3fbf7;
}

.lobby-readiness__item.is-ready span {
  color: #1f6f4e;
  background: #dff2eb;
}

.lobby-readiness__item.is-attention {
  border-color: #eadfb8;
  background: #fffbef;
}

.lobby-readiness__item.is-attention span {
  color: #8f6a0f;
  background: #f6efd9;
}

.lobby-readiness__item.is-blocked {
  border-color: #e5c2c2;
  background: #fff7f7;
}

.lobby-readiness__item.is-blocked span {
  color: #8f2525;
  background: #f4e8e8;
}

.lobby-readiness__warnings {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  border-top: 1px solid #d6e3df;
  padding-top: 10px;
}

.lobby-readiness__warnings strong {
  color: var(--danger);
}

.lobby-readiness__warnings span {
  border: 1px solid #e5c2c2;
  border-radius: 999px;
  padding: 5px 8px;
  color: #7d2c2c;
  background: #fff7f7;
  font-size: 12px;
  font-weight: 700;
}

.metric {
  font-size: 30px;
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 8px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

th {
  color: var(--muted);
  font-weight: 600;
  background: #f9fbfb;
}

tr:hover td {
  background: #fbfcfc;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 999px;
  padding: 2px 8px;
  background: #edf3f1;
  color: #244238;
  font-size: 12px;
  font-weight: 600;
}

.badge.closed,
.badge.removed,
.badge.rejected,
.badge.unverified {
  background: #f4e8e8;
  color: #8f2525;
}

.badge.open,
.badge.approved,
.badge.verified,
.badge.accepted {
  background: #e4f2ec;
  color: #1f6f4e;
}

.badge.pending,
.badge.waitlisted,
.badge.suspension,
.badge.warning {
  background: #f6efd9;
  color: var(--warn);
}

.stack {
  display: grid;
  gap: 8px;
}

.scroll {
  max-height: 420px;
  overflow: auto;
}

.muted {
  color: var(--muted);
}

.row {
  display: flex;
  gap: 8px;
  align-items: center;
}

@media (max-width: 980px) {
  body {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 1;
    flex-direction: row;
    overflow-x: auto;
  }

  .sidebar button {
    white-space: nowrap;
  }

  .grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .lobby-wizard__header,
  .wizard-card-grid,
  .wizard-two {
    grid-template-columns: 1fr;
  }

  .wizard-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wizard-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lobby-readiness__head,
  .lobby-readiness__summary {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
  }
}

body.public {
  color-scheme: dark;
  display: block;
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  touch-action: pan-y;
  background:
    radial-gradient(circle at 82% 12%, rgba(243, 181, 74, 0.1), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(97, 164, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(39, 85, 58, 0.22), rgba(15, 17, 16, 0.15) 320px),
    #0f1110;
  color: #edf5ef;
}

body.public::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(15, 17, 16, 0.62), transparent 24%, transparent 76%, rgba(15, 17, 16, 0.62)),
    linear-gradient(110deg, transparent 0 38%, rgba(142, 230, 173, 0.08) 48%, transparent 59%),
    url("/pubg-assets/map-miramar.png?v=1") right -90px top 108px / 420px 420px no-repeat,
    url("/pubg-assets/map-erangel.png?v=1") left -92px bottom -96px / 360px 360px no-repeat;
  filter: saturate(1.12) contrast(1.06);
  transform: translate3d(0, 0, 0);
  animation: pubg-bg-drift 28s ease-in-out infinite alternate;
}

body.public::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

body.public.public-loading::before {
  background: linear-gradient(90deg, #45c47e, #f3b54a, #e0695e);
  animation: public-load 900ms ease-in-out infinite;
}

body.public main {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 32px));
  max-width: none;
  margin: 0 auto;
  padding: 24px 0 48px;
}

@media (prefers-reduced-motion: no-preference) {
  body.public .public-hero,
  body.public .public-directory,
  body.public .leaderboard-signal-strip,
  body.public .leaderboard-filter-panel,
  body.public .player-radar-block,
  body.public .team-spotlight,
  body.public .match-analyzer,
  body.public .match-follow-panel,
  body.public .stats-section,
  body.public .stats-table-block,
  body.public .feature-gate-section,
  body.public .premium-locked-section,
  body.public .login-required-section,
  body.public .soft-login-strip,
  body.public .tournament-access-strip,
  body.public .trial-tracker-preview,
  body.public .team-directory-empty-status,
  body.public .my-pubg-focus-hero,
  body.public .my-pubg-sync-board,
  body.public .auth-card,
  body.public .competition-section,
  body.public .competition-join-panel,
  body.public .competition-user-summary,
  body.public .competition-top-five,
  body.public .competition-podium,
  body.public .competition-previous,
  body.public .resource-browser,
  body.public .public-info-updated {
    animation: scrima-panel-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
    transform-origin: center top;
  }

  body.public .stat-card,
  body.public .public-hero__meta > span,
  body.public .public-hero__aside > div,
  body.public .public-directory-card,
  body.public .public-home-list a,
  body.public .match-history-card,
  body.public .leaderboard-signal-card,
  body.public .player-radar-card,
  body.public .team-card,
  body.public .team-spotlight-card,
  body.public .match-follow-card,
  body.public .match-follow-overview__steps b,
  body.public .lootspot-section,
  body.public .public-info-card,
  body.public [data-resource-card],
  body.public .scouting-card,
  body.public .trial-tracker-card,
  body.public .my-pubg-insight-grid article,
  body.public .my-pubg-match-list article,
  body.public .player-weapon-card,
  body.public .highlight-card {
    animation: scrima-card-in 460ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--scrima-stagger-delay, 0ms);
    transform-origin: center top;
  }

  body.public .stats-table tbody tr {
    animation: scrima-row-in 380ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--scrima-stagger-delay, 0ms);
  }

  body.public .public-status,
  body.public .badge,
  body.public .team-tag,
  body.public .public-rank,
  body.public .mini-chip,
  body.public .strong-number,
  body.public .performance-score,
  body.public .score-chip,
  body.public .my-pubg-sync-board__saved-badge,
  body.public .leaderboard-filter-chip,
  body.public .highlight-badge {
    animation: scrima-badge-pop 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: min(var(--scrima-stagger-delay, 0ms), 240ms);
  }

  body.public .player-radar-chart__grid polygon {
    animation: scrima-radar-grid-in 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 80ms;
    stroke-dashoffset: 28;
  }

  body.public .player-radar-chart__axes line {
    --scrima-radar-dash: 64;
    animation: scrima-radar-stroke-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 110ms;
    stroke-dasharray: 64;
    stroke-dashoffset: 64;
  }

  body.public .player-radar-chart__area {
    animation: scrima-radar-area-in 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 230ms;
    transform-box: fill-box;
    transform-origin: center;
  }

  body.public .player-radar-chart__line {
    --scrima-radar-dash: 420;
    animation: scrima-radar-stroke-in 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 260ms;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
  }

  body.public .player-radar-chart__labels text,
  body.public .player-radar-chart__delta {
    animation: scrima-badge-pop 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 520ms;
  }

  body.public .player-weapon-card__bar i {
    animation: scrima-meter-fill 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--scrima-stagger-delay, 0ms);
    transform-origin: left center;
  }
}

.public-duel-fire {
  --duel-y: calc(clamp(210px, 17.5vw, 330px) + 40px);
  --duel-left-x: clamp(150px, 10.2vw, 270px);
  --duel-right-x: clamp(150px, 10.2vw, 270px);
  --duel-tracer-width: min(42vw, 820px);
  --duel-idle-cycle: 6.8s;
  --duel-shot-cycle: 5.6s;
  --duel-shot-delay: 2.65s;
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.public-duel-fire span {
  position: absolute;
  display: block;
  pointer-events: none;
}

.public-duel-fire__fighter {
  position: absolute;
  top: clamp(110px, 8.8vw, 150px);
  width: clamp(260px, 31vw, 520px);
  height: auto;
  opacity: 0.34;
  pointer-events: none;
  user-select: none;
  filter:
    saturate(1.12)
    contrast(1.06)
    drop-shadow(0 24px 42px rgba(0, 0, 0, 0.42));
  will-change: transform;
}

.public-duel-fire__fighter--left {
  top: calc(clamp(110px, 8.8vw, 150px) + 10px);
  left: -118px;
  transform-origin: 47% 92%;
  animation: duel-fighter-left-idle var(--duel-idle-cycle) ease-in-out infinite;
}

.public-duel-fire__fighter--right {
  top: calc(clamp(110px, 8.8vw, 150px) - 5px);
  right: -118px;
  transform-origin: 53% 92%;
  animation: duel-fighter-right-idle var(--duel-idle-cycle) ease-in-out infinite;
  animation-delay: 0.62s;
}

.public-duel-fire__tracer {
  top: calc(var(--duel-y) + 2px);
  width: var(--duel-tracer-width);
  height: 3px;
  opacity: 0;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 8px rgba(255, 204, 88, 0.72))
    drop-shadow(0 0 18px rgba(255, 100, 55, 0.24));
}

.public-duel-fire__tracer--left {
  left: var(--duel-left-x);
  transform-origin: left center;
  transform: rotate(3.4deg) scaleX(0);
  background: linear-gradient(90deg, rgba(255, 239, 170, 0.96), rgba(255, 188, 62, 0.72) 34%, rgba(255, 87, 42, 0.06) 72%, transparent);
  animation: duel-tracer-left var(--duel-shot-cycle) cubic-bezier(0.2, 0.74, 0.28, 1) infinite;
}

.public-duel-fire__tracer--right {
  right: var(--duel-right-x);
  transform-origin: right center;
  transform: rotate(-3.4deg) scaleX(0);
  background: linear-gradient(270deg, rgba(255, 239, 170, 0.96), rgba(255, 188, 62, 0.72) 34%, rgba(255, 87, 42, 0.06) 72%, transparent);
  animation: duel-tracer-right var(--duel-shot-cycle) cubic-bezier(0.2, 0.74, 0.28, 1) infinite;
  animation-delay: var(--duel-shot-delay);
}

.public-duel-fire__muzzle {
  top: calc(var(--duel-y) - 18px);
  width: 58px;
  height: 38px;
  border-radius: 999px;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 230, 0.96), rgba(255, 184, 58, 0.74) 30%, rgba(255, 92, 41, 0.2) 58%, transparent 72%);
  filter:
    blur(0.2px)
    drop-shadow(0 0 14px rgba(255, 184, 58, 0.86))
    drop-shadow(0 0 36px rgba(255, 82, 44, 0.36));
}

.public-duel-fire__muzzle--left {
  left: calc(var(--duel-left-x) - 20px);
  animation: duel-muzzle var(--duel-shot-cycle) ease-out infinite;
}

.public-duel-fire__muzzle--right {
  right: calc(var(--duel-right-x) - 20px);
  animation: duel-muzzle var(--duel-shot-cycle) ease-out infinite;
  animation-delay: var(--duel-shot-delay);
}

.public-duel-fire__spark {
  top: calc(var(--duel-y) + 6px);
  left: 50%;
  width: 76px;
  height: 24px;
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 210, 0.82), rgba(255, 177, 43, 0.42) 28%, transparent 66%);
  filter: drop-shadow(0 0 18px rgba(255, 191, 69, 0.42));
  animation: duel-center-spark var(--duel-shot-cycle) ease-out infinite;
}

.public-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(142, 230, 173, 0.14);
  background:
    linear-gradient(90deg, rgba(69, 196, 126, 0.08), transparent 38%, rgba(243, 181, 74, 0.08)),
    rgba(24, 27, 31, 0.95);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.25);
}

.public-footer__inner {
  display: grid;
  width: min(1320px, calc(100% - 32px));
  grid-template-columns: minmax(220px, 0.55fr) minmax(640px, 1fr);
  gap: 18px 32px;
  align-items: start;
  margin: 0 auto;
  padding: 30px 0 32px;
}

.public-footer__brand {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.public-footer__brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.public-footer__logo {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.public-footer__logo .scrima-brand-logo {
  width: 178px;
  height: 50px;
}

.public-footer__brand p {
  margin: 0;
  color: rgba(220, 234, 223, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.pubg-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  border: 1px solid rgba(243, 181, 74, 0.32);
  border-radius: 6px;
  padding: 4px 9px;
  color: #ffd37b;
  background: rgba(243, 181, 74, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pubg-platform-badge__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  min-width: 24px;
  border: 1px solid rgba(243, 181, 74, 0.34);
  border-radius: 4px;
  padding: 0 5px;
  background: rgba(243, 181, 74, 0.1);
  color: #ffd37b;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0;
}

.public-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 18px 26px;
}

.public-footer__nav section {
  display: grid;
  align-content: start;
  gap: 8px;
}

.public-footer__nav h2 {
  margin: 0 0 2px;
  color: #d8ff76;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.public-footer__nav a {
  color: rgba(242, 255, 246, 0.84);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}

.public-footer__nav a:hover {
  color: #8ee6ad;
}

.public-footer__disclaimer {
  display: grid;
  grid-column: 1 / -1;
  justify-items: end;
  gap: 3px;
  color: rgba(220, 234, 223, 0.62);
  font-size: 11px;
  line-height: 1.45;
}

.public-footer__disclaimer p {
  margin: 0;
}

body.public a {
  color: #8ee6ad;
}

body.public h1,
body.public h2,
body.public h3,
body.public p {
  letter-spacing: 0;
}

body.public p,
body.public .muted {
  color: #9cad9e;
}

body.public [hidden] {
  display: none !important;
}

.public-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px max(18px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid rgba(142, 230, 173, 0.18);
  background:
    linear-gradient(90deg, rgba(69, 196, 126, 0.1), transparent 36%, rgba(216, 255, 118, 0.06)),
    rgba(9, 13, 11, 0.96);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.public-primary-nav,
.public-header-actions,
.public-more-nav nav {
  display: flex;
  align-items: center;
}

.public-primary-nav {
  justify-content: center;
  gap: 3px;
  min-width: 0;
  overflow: visible;
  padding: 4px;
  border: 1px solid rgba(142, 230, 173, 0.09);
  border-radius: 10px;
  background: rgba(4, 8, 6, 0.28);
}

.public-header-actions {
  justify-content: flex-end;
  gap: 7px;
  min-width: 0;
}

.public-shell a {
  color: #dceadf;
  text-decoration: none;
  font-weight: 700;
}

.public-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.public-header-brand .pubg-platform-badge {
  flex: 0 0 auto;
  min-height: 34px;
  gap: 6px;
  padding-inline: 8px;
  border-color: rgba(243, 181, 74, 0.48);
  background:
    linear-gradient(135deg, rgba(243, 181, 74, 0.16), transparent),
    rgba(15, 17, 16, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.public-primary-nav a,
.public-nav-group summary {
  padding: 8px 10px;
  border-radius: 7px;
  color: rgba(220, 234, 223, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  list-style: none;
  white-space: nowrap;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.public-primary-nav a:hover,
.public-nav-group summary:hover,
.public-nav-group[open] summary {
  color: #f5fff7;
  background: rgba(142, 230, 173, 0.12);
  transform: translateY(-1px);
}

.public-nav-group {
  position: relative;
}

.public-nav-group summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.public-nav-group summary::-webkit-details-marker {
  display: none;
}

.public-nav-group summary::after {
  content: "v";
  color: #d8ff76;
  font-size: 9px;
  line-height: 1;
}

.public-nav-group nav {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  z-index: 44;
  display: grid;
  min-width: 176px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  padding: 8px;
  background: rgba(10, 14, 12, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  transform: translateX(-50%);
}

.public-nav-group nav a {
  padding: 9px 10px;
  border-radius: 6px;
}

.public-header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(69, 196, 126, 0.44);
  border-radius: 8px;
  padding: 8px 12px;
  background:
    linear-gradient(135deg, rgba(69, 196, 126, 0.17), rgba(69, 196, 126, 0.06)),
    rgba(5, 10, 7, 0.56);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 18px rgba(69, 196, 126, 0.08);
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease, opacity 140ms ease;
}

.public-header-action:hover {
  border-color: rgba(157, 255, 189, 0.85);
  background: rgba(69, 196, 126, 0.24);
}

.public-header-action--ghost {
  border-color: rgba(243, 181, 74, 0.36);
  background: rgba(243, 181, 74, 0.08);
  color: #ffd37b;
}

.public-header-action--ghost:hover {
  border-color: rgba(255, 211, 123, 0.78);
  background: rgba(243, 181, 74, 0.15);
}

.public-header-logout {
  display: inline-flex;
  margin: 0;
}

.public-header-action--logout {
  min-width: 76px;
  border-color: rgba(255, 137, 137, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 137, 137, 0.1), rgba(255, 137, 137, 0.03)),
    rgba(7, 9, 8, 0.52);
  color: rgba(255, 231, 231, 0.88);
  cursor: pointer;
  font-family: inherit;
}

.public-header-action--logout:hover {
  border-color: rgba(255, 171, 171, 0.78);
  background: rgba(255, 137, 137, 0.15);
}

.public-soft-login-nav {
  position: relative;
  min-width: 126px;
}

.public-soft-login-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(216, 255, 118, 0.42);
  border-radius: 8px;
  padding: 6px 10px;
  color: #efffd2;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 255, 118, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(216, 255, 118, 0.14), rgba(142, 230, 173, 0.05) 64%),
    rgba(8, 13, 10, 0.84);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  list-style: none;
  text-align: left;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 18px rgba(216, 255, 118, 0.08);
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.public-soft-login-nav summary::-webkit-details-marker {
  display: none;
}

.public-soft-login-nav summary:hover,
.public-soft-login-nav[open] summary {
  border-color: rgba(216, 255, 118, 0.78);
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 255, 118, 0.3), transparent 34%),
    rgba(216, 255, 118, 0.12);
  transform: translateY(-1px);
}

.public-soft-login-nav summary::after {
  content: "v";
  margin-left: auto;
  color: #d8ff76;
  font-size: 10px;
}

.public-soft-login-nav summary > span:last-child,
.public-header-action--account > span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.public-soft-login-nav summary span span,
.public-header-action--account span span {
  color: rgba(206, 222, 211, 0.72);
  font-size: 8px;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.public-soft-login-nav summary strong,
.public-header-action--account strong {
  max-width: 96px;
  overflow: hidden;
  color: inherit;
  font-size: 12px;
  line-height: 1.08;
  text-overflow: ellipsis;
}

.public-soft-login-nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 45;
  display: grid;
  gap: 4px;
  min-width: 190px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  padding: 8px;
  background: rgba(10, 14, 12, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.public-soft-login-nav__menu a,
.public-soft-login-nav__menu button {
  display: flex;
  align-items: center;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  padding: 9px 10px;
  color: rgba(242, 255, 246, 0.9);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  text-align: left;
  text-decoration: none;
}

.public-soft-login-nav__menu a:hover,
.public-soft-login-nav__menu button:hover {
  background: rgba(142, 230, 173, 0.12);
  color: #ffffff;
}

.public-soft-login-nav__menu button {
  border-top: 1px solid rgba(255, 137, 137, 0.16);
  color: rgba(255, 213, 213, 0.9);
  cursor: pointer;
}

.public-header-action--account,
.public-header-action--player {
  justify-content: flex-start;
  gap: 8px;
  min-width: 142px;
  padding-block: 6px;
  text-align: left;
}

.public-header-action--account {
  width: 132px;
  border-color: rgba(142, 230, 173, 0.42);
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.15), rgba(216, 255, 118, 0.05) 62%),
    rgba(8, 15, 10, 0.72);
  color: #dfffe9;
}

.public-header-action--account::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #8effad;
  box-shadow: 0 0 12px rgba(142, 255, 173, 0.82);
}

.public-header-action--account.has-avatar::before {
  display: none;
}

.public-header-action--auth-placeholder {
  min-width: 124px;
  border-color: rgba(243, 181, 74, 0.32);
  background:
    linear-gradient(135deg, rgba(243, 181, 74, 0.12), transparent 64%),
    rgba(8, 11, 9, 0.58);
  color: #ffe2a3;
}

.public-shell[data-auth-state="pending"] .public-header-action--auth-placeholder {
  opacity: 0.72;
}

.public-header-action__avatar {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid rgba(216, 255, 118, 0.36);
  border-radius: 999px;
  object-fit: cover;
  background: rgba(7, 11, 9, 0.72);
  box-shadow: 0 0 14px rgba(142, 230, 173, 0.12);
}

.public-header-action__avatar-fallback {
  display: inline-grid;
  place-items: center;
  color: #08100b;
  font-size: 10px;
  font-weight: 1000;
  line-height: 1;
  background:
    radial-gradient(circle at 65% 25%, rgba(246, 255, 244, 0.72), transparent 34%),
    linear-gradient(135deg, #d8ff76, #8ee6ad);
  box-shadow: 0 0 18px rgba(142, 230, 173, 0.22);
}

.public-header-action--player {
  min-width: 126px;
  border-color: rgba(216, 255, 118, 0.44);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.17), transparent 62%),
    rgba(216, 255, 118, 0.07);
  color: #efffd2;
}

.public-header-action--create {
  min-width: 78px;
  border-color: rgba(216, 255, 118, 0.7);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.26), rgba(69, 196, 126, 0.12)),
    rgba(14, 23, 12, 0.72);
  color: #efffd2;
}

.public-header-action--player::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.95), rgba(142, 230, 173, 0.82));
  clip-path: polygon(50% 0, 95% 28%, 82% 100%, 50% 78%, 18% 100%, 5% 28%);
  box-shadow: 0 0 14px rgba(216, 255, 118, 0.3);
}

.public-header-action--account span,
.public-header-action--player span {
  display: block;
  color: rgba(220, 234, 223, 0.72);
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.public-header-action--account strong,
.public-header-action--player strong {
  display: block;
  max-width: 112px;
  overflow: hidden;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-header-action--account .public-header-action__avatar-fallback {
  display: inline-grid;
  color: #08100b;
  line-height: 1;
}

.public-header-action--account:hover,
.public-header-action--player:hover,
.public-header-action--create:hover {
  transform: translateY(-1px);
}

.public-more-nav {
  position: relative;
  justify-self: end;
}

.public-more-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 6px;
  padding: 7px 11px;
  color: rgba(242, 255, 246, 0.9);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  list-style: none;
  white-space: nowrap;
}

.public-more-nav summary::-webkit-details-marker {
  display: none;
}

.public-more-nav summary::after {
  content: "v";
  margin-left: 7px;
  color: #d8ff76;
  font-size: 10px;
}

.public-more-nav[open] summary {
  border-color: rgba(142, 230, 173, 0.5);
  background: rgba(142, 230, 173, 0.12);
}

.public-more-nav nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 190px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  padding: 8px;
  background: rgba(13, 16, 14, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
}

.public-more-nav nav a {
  border-radius: 6px;
  padding: 9px 10px;
  color: rgba(242, 255, 246, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.public-more-nav nav a:hover {
  background: rgba(142, 230, 173, 0.12);
  color: #ffffff;
}

.public-more-nav .public-header-logout {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid rgba(142, 230, 173, 0.12);
}

.public-more-nav .public-header-action--logout {
  width: 100%;
  min-height: 34px;
  justify-content: flex-start;
  border-radius: 6px;
  padding: 9px 10px;
  box-shadow: none;
}

.public-more-nav nav a[href="/teams"] {
  display: none;
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: #ffffff;
  font-size: 16px;
}

.scrima-brand-logo {
  display: inline-flex;
  width: 190px;
  height: 54px;
  align-items: center;
  overflow: hidden;
}

.scrima-brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.scrima-logo {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(69, 196, 126, 0.34), rgba(243, 181, 74, 0.12)),
    #101713;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.scrima-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.public-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.46fr);
  gap: 16px;
  align-items: stretch;
  overflow: hidden;
  margin: 14px 0 14px;
  padding: 20px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(69, 196, 126, 0.18), transparent 54%),
    linear-gradient(90deg, rgba(97, 164, 255, 0.09), transparent 42%, rgba(243, 181, 74, 0.1)),
    #151917;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.public-hero__main {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.public-hero__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.public-hero__scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 74px),
    linear-gradient(180deg, transparent, rgba(15, 17, 16, 0.78));
  mix-blend-mode: screen;
  opacity: 0.3;
}

.public-hero__map {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 8px;
  object-fit: cover;
  opacity: 0.16;
  transform: rotate(-7deg);
  filter: saturate(1.25) contrast(1.1);
}

.public-hero__map--miramar {
  right: 22%;
  bottom: -110px;
}

.public-hero__map--erangel {
  right: -66px;
  top: -74px;
  transform: rotate(10deg);
}

.public-hero__result {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: min(118px, 10vw);
  max-height: 116px;
  object-fit: contain;
  opacity: 0.42;
  filter: drop-shadow(0 0 22px rgba(243, 181, 74, 0.3));
}

.public-hero__result--rank {
  right: 120px;
  bottom: 88px;
  width: min(94px, 8vw);
  opacity: 0.24;
}

.public-hero__result--published {
  right: 42px;
  bottom: 36px;
}

.public-kicker {
  margin: 0 0 8px;
  color: #8ee6ad;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.public-hero h1 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.public-hero__main > p:not(.public-kicker) {
  display: -webkit-box;
  overflow: hidden;
  max-width: 860px;
  margin-top: 10px;
  color: #b7c6ba;
  font-size: 15px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.public-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.public-hero__meta > span,
.sort-links a,
.sort-links span,
.mini-chip,
.roster-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 6px;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.04);
  color: #dceadf;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

a.mini-chip {
  color: #d8ff76;
}

a.mini-chip:hover,
a.mini-chip:focus-visible {
  border-color: rgba(216, 255, 118, 0.44);
  background: rgba(216, 255, 118, 0.1);
  color: #ffffff;
  outline: none;
}

.public-hero__aside {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  align-content: stretch;
}

.public-hero__feature {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.public-hero-feature {
  display: grid;
  height: 100%;
  min-height: 244px;
  overflow: hidden;
  border: 1px solid rgba(216, 255, 118, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 62%),
    rgba(7, 11, 9, 0.68);
  backdrop-filter: blur(10px);
}

.public-hero-feature--media {
  grid-template-columns: minmax(110px, 0.44fr) minmax(0, 0.56fr);
}

.public-hero-feature--radar {
  grid-template-columns: minmax(230px, 0.58fr) minmax(150px, 0.42fr);
  align-items: center;
}

.public-hero-feature--team-empty {
  align-content: stretch;
}

.public-hero-feature > img {
  width: 100%;
  height: 100%;
  min-height: 244px;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
}

.public-hero-feature__body {
  display: grid;
  gap: 10px;
  align-content: center;
  min-width: 0;
  padding: 14px;
}

.public-hero-feature__body > span {
  color: #d8ff76;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.public-hero-feature__body > strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.02;
  overflow-wrap: break-word;
  word-break: normal;
}

.public-hero-feature__body > p {
  margin: 0;
  color: #c7d5cb;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.public-hero-feature .player-radar-chart {
  width: min(100%, 184px);
}

.public-hero-feature dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(72px, 1fr));
  gap: 6px;
  margin: 0;
}

.public-hero-feature dl div {
  border: 1px solid rgba(142, 230, 173, 0.11);
  border-radius: 7px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.045);
}

.public-hero-feature dt {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  white-space: nowrap;
  text-transform: uppercase;
}

.public-hero-feature dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.public-hero-feature .public-inline-link {
  justify-self: start;
}

.public-hero-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.team-empty-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.team-empty-flow div {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 7px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.045);
}

.team-empty-flow span {
  color: #d8ff76;
  font-size: 10px;
  font-weight: 950;
}

.team-empty-flow b {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.1;
}

.team-empty-flow small {
  color: #9eadb1;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.player-directory-hero-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  min-height: 244px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--player-accent, #d8ff76) 28%, transparent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 10%, color-mix(in srgb, var(--player-accent, #d8ff76) 14%, transparent), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 62%),
    rgba(7, 11, 9, 0.74);
  backdrop-filter: blur(10px);
}

.player-directory-hero-card__profile {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 14px 14px 10px;
}

.player-directory-hero-card__profile > span {
  color: var(--player-accent, #d8ff76);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.player-directory-hero-card__profile > strong {
  color: #ffffff;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.player-directory-hero-card__profile > small {
  color: #c7d5cb;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.player-directory-hero-card__profile dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.player-directory-hero-card__profile dl div {
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.045);
}

.player-directory-hero-card__profile dt {
  color: #91a295;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-directory-hero-card__profile dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.player-directory-hero-card__cta {
  justify-self: start;
}

.player-directory-hero-card__radar {
  display: grid;
  gap: 7px;
  align-content: center;
  justify-items: center;
  min-width: 0;
  border-top: 1px solid rgba(142, 230, 173, 0.12);
  padding: 8px 14px 14px;
  background:
    linear-gradient(180deg, rgba(216, 255, 118, 0.045), transparent 48%),
    rgba(255, 255, 255, 0.018);
}

.player-directory-hero-card .player-radar-chart {
  width: min(100%, 146px);
}

.player-directory-hero-card .player-radar-chart__labels text {
  font-size: 5.4px;
}

.player-directory-hero-card__chips {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
  gap: 5px;
}

.player-directory-hero-card__chips span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  min-width: 0;
  min-height: 28px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 6px;
  padding: 5px 6px;
  color: #ffffff;
  background: rgba(2, 7, 5, 0.58);
  font-size: 12px;
  font-weight: 950;
}

.player-directory-hero-card__chips b {
  color: #9fb0a4;
  font-size: 9px;
  font-weight: 950;
}

.public-hero__aside div,
.stat-card,
.team-card,
.match-card,
.empty-state,
.stats-table-block,
.lootspot-section {
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  background: rgba(21, 25, 23, 0.94);
}

.public-hero__aside div {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.stat-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.public-hero__aside span,
.stat-card span,
.stats-table-title span {
  color: #91a295;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.public-hero__aside strong,
.stat-card strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.public-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 12px;
  align-items: stretch;
  min-height: 342px;
  overflow: hidden;
  overflow: clip;
  margin: 10px 0 12px;
  border: 1px solid rgba(216, 255, 118, 0.22);
  border-radius: 8px;
  padding: 14px;
  background: #111512;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.public-home-hero__bg,
.public-home-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.public-home-hero__bg {
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
  filter: saturate(1.16) contrast(1.08);
}

.public-home-hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 14, 12, 0.95), rgba(10, 14, 12, 0.74) 46%, rgba(10, 14, 12, 0.88)),
    linear-gradient(135deg, rgba(216, 255, 118, 0.12), transparent 48%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 64px);
}

.public-home-hero__main,
.public-home-hero__board {
  position: relative;
  z-index: 1;
}

.public-home-hero__main {
  display: grid;
  gap: 9px;
  align-content: center;
  min-width: 0;
}

.public-home-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4.1vw, 52px);
  line-height: 0.96;
}

.public-home-hero__main > p:not(.public-kicker) {
  max-width: 720px;
  margin: 0;
  color: #d8e6dc;
  font-size: 13px;
  line-height: 1.35;
}

.public-home-hero__ign {
  max-width: 800px;
  border-color: rgba(216, 255, 118, 0.28);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.1), transparent 58%),
    rgba(7, 11, 9, 0.82);
}

.public-home-hero__login-paths {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.76fr);
  gap: 8px;
  max-width: 860px;
}

.public-home-login-card,
.public-home-saved-player,
.public-home-player-search {
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.075), transparent 60%),
    rgba(7, 11, 9, 0.76);
  backdrop-filter: blur(10px);
}

.public-home-login-card,
.public-home-saved-player {
  display: grid;
  gap: 5px;
  align-content: start;
  padding: 10px;
  text-decoration: none;
}

.public-home-login-card--account {
  border-color: rgba(142, 230, 173, 0.26);
  background:
    radial-gradient(circle at 90% 15%, rgba(142, 230, 173, 0.18), transparent 30%),
    rgba(7, 11, 9, 0.78);
}

.public-home-login-card span,
.public-home-saved-player span,
.public-home-player-search label span {
  color: #d8ff76;
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
}

.public-home-login-card strong,
.public-home-saved-player strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.public-home-login-card small,
.public-home-saved-player small,
.public-home-player-search p {
  margin: 0;
  color: #b8c7bc;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.28;
}

.public-home-soft-login-card {
  max-width: none;
  align-self: stretch;
  border-color: rgba(216, 255, 118, 0.32);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.12), transparent 58%),
    rgba(8, 12, 10, 0.82);
}

.public-home-saved-player {
  border-color: rgba(216, 255, 118, 0.34);
  background:
    radial-gradient(circle at 86% 20%, rgba(216, 255, 118, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(216, 255, 118, 0.11), transparent 60%),
    rgba(8, 12, 10, 0.84);
}

.public-home-saved-player[hidden],
.public-home-player-search[hidden],
.public-home-soft-login-card[hidden] {
  display: none;
}

.public-home-saved-player > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3px;
}

.public-home-saved-player button,
.public-home-player-search button {
  min-height: 36px;
  border: 1px solid rgba(216, 255, 118, 0.28);
  border-radius: 7px;
  padding: 8px 11px;
  color: #f4fff7;
  background: rgba(216, 255, 118, 0.07);
  font-weight: 950;
}

.public-home-player-search button:disabled {
  border-color: rgba(142, 230, 173, 0.12);
  color: rgba(244, 255, 247, 0.42);
  background: rgba(255, 255, 255, 0.035);
}

.public-home-player-search {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
  padding: 10px;
}

.public-home-player-search label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.public-home-player-search input {
  min-height: 38px;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 7px;
  padding: 8px 10px;
  color: #f4fff7;
  background: rgba(7, 11, 9, 0.78);
  font: inherit;
  font-weight: 850;
}

.public-home-player-search input:focus {
  outline: none;
  border-color: rgba(142, 230, 173, 0.78);
  box-shadow: 0 0 0 3px rgba(142, 230, 173, 0.12);
}

.public-home-player-search p {
  grid-column: 1 / -1;
}

.public-home-hero__board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 0;
}

.public-home-hero__panel {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 62%),
    rgba(9, 13, 11, 0.78);
  backdrop-filter: blur(10px);
}

.public-home-hero__panel--lobby {
  border-color: rgba(216, 255, 118, 0.2);
}

.public-home-hero__panel--player {
  --player-accent: #d8ff76;
  justify-items: center;
}

.public-home-hero__panel--player.is-empty {
  --player-accent: #8ee6ad;
}

.public-home-hero__panel-head {
  display: grid;
  gap: 4px;
  justify-self: stretch;
  min-width: 0;
}

.public-home-hero__panel-head span {
  color: #d8ff76;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.public-home-hero__panel-head strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.public-home-hero__panel-head small,
.public-home-hero__panel p {
  color: #b9c8bd;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.public-home-hero__panel p {
  margin: 0;
}

.public-home-hero__panel .player-radar-chart {
  width: min(100%, 188px);
}

.public-home-hero__panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  width: 100%;
  margin: 0;
}

.public-home-hero__panel dl div {
  border: 1px solid rgba(142, 230, 173, 0.11);
  border-radius: 7px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.04);
}

.public-home-hero__panel dt {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.public-home-hero__panel dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.public-home-hero__panel .public-inline-link {
  justify-self: start;
}

.stat-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.public-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}

.public-info-updated {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 12px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(18, 22, 20, 0.88);
}

.public-info-updated span {
  color: #91a295;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.public-info-updated strong {
  color: #dfffe9;
  font-size: 14px;
}

.public-info-card {
  min-height: 160px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), transparent 56%),
    rgba(21, 25, 23, 0.94);
}

.public-info-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
}

.public-info-card p {
  margin: 10px 0 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.55;
}

.public-info-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.public-info-card li {
  position: relative;
  padding-left: 16px;
  color: #e7f5ea;
  font-size: 14px;
  line-height: 1.45;
}

.public-info-card li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #8ee6ad;
  box-shadow: 0 0 12px rgba(142, 230, 173, 0.44);
  content: "";
}

.public-info-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.public-info-card__links a {
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 6px;
  padding: 8px 10px;
  color: #9cf3b8;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(142, 230, 173, 0.08);
}

.public-info-card__links a:hover {
  border-color: rgba(142, 230, 173, 0.48);
  color: #ffffff;
}

.tournament-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}

.tournament-card {
  position: relative;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.17);
  border-radius: 8px;
  background: rgba(13, 17, 15, 0.96);
}

.tournament-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: saturate(1.05) contrast(1.05);
}

.tournament-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 9, 0.12), rgba(8, 10, 9, 0.9) 72%),
    linear-gradient(90deg, rgba(142, 230, 173, 0.1), transparent 54%);
  content: "";
}

.tournament-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 18px;
}

.tournament-card span,
.tournament-series-panel__head span {
  color: #a6b8aa;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tournament-card h2,
.tournament-series-panel__head h2 {
  margin: 0;
  color: #ffffff;
}

.tournament-card p {
  margin: 0;
  color: #d4e2d7;
  font-size: 14px;
  line-height: 1.5;
}

.tournament-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tournament-card__meta b {
  border: 1px solid rgba(244, 183, 63, 0.24);
  border-radius: 6px;
  padding: 5px 7px;
  color: #f4b73f;
  background: rgba(244, 183, 63, 0.08);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.tournament-path {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 44%),
    radial-gradient(circle at 100% 0%, rgba(244, 183, 63, 0.12), transparent 34%),
    rgba(14, 18, 16, 0.96);
}

.tournament-path__head {
  display: grid;
  align-content: center;
  gap: 10px;
}

.tournament-path__head span {
  color: #f4b73f;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tournament-path__head h2 {
  margin: 0;
  max-width: 520px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.96;
}

.tournament-path__head p {
  margin: 0;
  max-width: 560px;
  color: #cfe0d3;
  line-height: 1.5;
}

.tournament-path__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tournament-path__steps li {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 46%),
    rgba(5, 8, 7, 0.46);
}

.tournament-path__steps li > span {
  width: fit-content;
  border: 1px solid rgba(244, 183, 63, 0.28);
  border-radius: 999px;
  padding: 4px 8px;
  color: #ffd06a;
  background: rgba(244, 183, 63, 0.1);
  font-size: 11px;
  font-weight: 950;
}

.tournament-path__steps h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
}

.tournament-path__steps p {
  margin: 0;
  color: #c6d7ca;
  font-size: 13px;
  line-height: 1.45;
}

.tournament-path__steps small {
  color: #9dffbd;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tournament-path__steps a {
  width: fit-content;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 6px;
  padding: 7px 9px;
  color: #9dffbd;
  background: rgba(142, 230, 173, 0.07);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.tournament-path__steps a:hover {
  border-color: rgba(142, 230, 173, 0.48);
  color: #ffffff;
}

.tournament-series-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(73, 156, 255, 0.06), transparent 48%),
    rgba(17, 21, 19, 0.94);
}

.tournament-series-panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.tournament-lobby-section {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 12% 12%, rgba(243, 181, 74, 0.1), transparent 34%),
    rgba(18, 22, 20, 0.94);
}

.tournament-lobby-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tournament-lobby-card {
  position: relative;
  display: grid;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  color: inherit;
  background: rgba(9, 13, 11, 0.62);
  text-decoration: none;
}

.tournament-lobby-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 13, 12, 0.08), rgba(10, 13, 12, 0.92) 74%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 58px);
  content: "";
}

.tournament-lobby-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
  filter: saturate(1.15) contrast(1.06);
}

.tournament-lobby-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  align-content: end;
  padding: 14px;
}

.tournament-lobby-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.04;
}

.tournament-lobby-card p {
  margin: 0;
  color: #d0dfd4;
  font-size: 13px;
  font-weight: 800;
}

.tournament-lobby-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.tournament-lobby-card dl div {
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 6px;
  padding: 7px;
  background: rgba(0, 0, 0, 0.32);
}

.tournament-lobby-card dt {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.tournament-lobby-card dd {
  margin: 3px 0 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tournament-lobby-card b {
  width: fit-content;
  border: 1px solid rgba(142, 230, 173, 0.26);
  border-radius: 6px;
  padding: 7px 9px;
  color: #9dffbd;
  background: rgba(142, 230, 173, 0.08);
  font-size: 12px;
  text-transform: uppercase;
}

.public-home-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 16px;
}

.public-home-card {
  position: relative;
  display: grid;
  min-height: 142px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  color: inherit;
  background: rgba(9, 13, 11, 0.72);
  text-decoration: none;
}

.public-home-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 11, 10, 0.16), rgba(8, 11, 10, 0.88) 72%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 52px);
  content: "";
}

.public-home-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(1.15) contrast(1.08);
}

.public-home-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  align-content: end;
  padding: 10px;
}

.public-home-card span {
  width: fit-content;
  border: 1px solid rgba(216, 255, 118, 0.24);
  border-radius: 999px;
  padding: 3px 7px;
  color: #d8ff76;
  background: rgba(0, 0, 0, 0.28);
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.public-home-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.02;
}

.public-home-card p {
  margin: 0;
  color: #c7d5cb;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.public-home-card:hover {
  border-color: rgba(142, 230, 173, 0.44);
  transform: translateY(-1px);
}

.home-soft-login-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 14px;
  overflow: hidden;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 8px;
  padding: 18px;
  background:
    radial-gradient(circle at 8% 12%, rgba(142, 230, 173, 0.18), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(216, 255, 118, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(88, 101, 242, 0.1), transparent 50%, rgba(243, 181, 74, 0.09)),
    rgba(13, 18, 16, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.home-soft-login-feature::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 58px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
  content: "";
}

.home-soft-login-feature__main,
.home-soft-login-feature__cards {
  position: relative;
  z-index: 1;
}

.home-soft-login-feature__main {
  display: grid;
  gap: 12px;
  align-content: center;
}

.home-soft-login-feature__main h2 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 0.95;
}

.home-soft-login-feature__main > p:not(.public-kicker) {
  max-width: 750px;
  margin: 0;
  color: #c9d8ce;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.home-soft-login-feature__form {
  max-width: 820px;
  border-color: rgba(142, 230, 173, 0.24);
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.12), transparent 58%),
    rgba(7, 11, 9, 0.72);
}

.home-soft-login-feature__form button[type="submit"] {
  box-shadow: 0 0 26px rgba(142, 230, 173, 0.22);
}

.home-soft-login-feature__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.home-soft-login-feature__cards article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  min-height: 104px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 58%),
    rgba(6, 10, 8, 0.58);
}

.home-soft-login-feature__cards article:nth-child(2) {
  border-color: rgba(216, 255, 118, 0.18);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.075), transparent 58%),
    rgba(6, 10, 8, 0.62);
}

.home-soft-login-feature__cards article:nth-child(3) {
  border-color: rgba(120, 174, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(120, 174, 255, 0.075), transparent 58%),
    rgba(6, 10, 8, 0.62);
}

.home-soft-login-feature__icon {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(142, 230, 173, 0.26));
}

.home-soft-login-feature__cards span {
  color: #9dffbd;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.home-soft-login-feature__cards strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.08;
}

.public-home-lanes {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 92% 8%, rgba(216, 255, 118, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(88, 101, 242, 0.08), transparent 58%),
    rgba(15, 19, 17, 0.94);
}

.public-home-lanes__head {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(280px, 0.44fr);
  gap: 14px;
  align-items: end;
}

.public-home-lanes__head span {
  color: #8ee6ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.public-home-lanes__head h2 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1;
}

.public-home-lanes__head p {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.5;
}

.public-home-lanes__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.public-home-lanes article {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 136px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(9, 13, 11, 0.48);
}

.public-home-lanes h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.05;
}

.public-home-lanes article p {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.45;
}

.public-home-card p,
.public-home-lanes article p,
.tournament-card p,
.tournament-path__steps p,
.match-history-insight p,
.discord-bot-promo__body p,
.discord-bot-flow p,
.discord-bot-command-grid p,
.discord-bot-embed-card p,
.discord-bot-automation-grid p,
.discord-bot-alert-grid p,
.soft-login-strip p:not(.public-kicker),
.soft-login-save-strip p,
.feature-gate-section__body > p:not(.public-kicker),
.premium-access-strip p,
.premium-tier-grid p,
.organization-premium-grid p,
.resource-note p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.public-home-lanes article div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.public-home-lanes article a {
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 999px;
  padding: 6px 8px;
  color: #9dffbd;
  background: rgba(142, 230, 173, 0.07);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.public-home-lanes article a:hover {
  border-color: rgba(142, 230, 173, 0.46);
  color: #ffffff;
}

.public-home-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}

.public-home-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), transparent 48%),
    rgba(18, 22, 20, 0.94);
}

.public-home-list {
  display: grid;
  gap: 8px;
}

.public-home-list a,
.public-home-list .empty-state {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(142, 230, 173, 0.1);
  border-radius: 7px;
  padding: 11px;
  color: inherit;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
}

.public-home-list b {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
}

.public-home-list span {
  color: #b9c8bd;
  font-size: 12px;
  font-weight: 800;
}

.tournament-access-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(142, 230, 173, 0.1), transparent 48%, rgba(88, 101, 242, 0.1)),
    rgba(18, 22, 20, 0.94);
}

.tournament-access-strip span {
  color: #8ee6ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.tournament-access-strip h2 {
  margin: 4px 0 7px;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.04;
}

.tournament-access-strip p {
  max-width: 850px;
  margin: 0;
  color: #b7c6ba;
  line-height: 1.5;
}

.tournament-access-strip__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.tournament-access-strip__links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 6px;
  padding: 7px 10px;
  color: #f2fff6;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.tournament-access-strip__links a:hover {
  border-color: rgba(142, 230, 173, 0.42);
  color: #9dffbd;
}

.tournament-series-list {
  display: grid;
  gap: 8px;
}

.tournament-series-list a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
}

.tournament-series-list a:nth-child(even) {
  background: rgba(142, 230, 173, 0.055);
}

.tournament-series-list a > span {
  color: #d8ff76;
  font-weight: 950;
}

.tournament-series-list strong {
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tournament-series-list small {
  color: #a6b8aa;
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}

.public-directory {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), transparent 52%),
    rgba(16, 20, 18, 0.94);
}

.public-directory__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.public-directory__head span,
.public-directory-card span,
.public-directory-card dt {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.public-directory__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 34px);
}

.public-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.public-directory-grid--players {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.public-directory-card {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 12px;
  min-height: 210px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 14px;
  color: inherit;
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 255, 118, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.035);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.public-directory-card::after,
.player-radar-card::after,
.team-spotlight-card::after,
.team-card--enhanced::after,
.match-follow-card::after,
.lootspot-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(216, 255, 118, 0.12) 43%, transparent 54%),
    radial-gradient(circle at 86% 14%, rgba(216, 255, 118, 0.14), transparent 28%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18%);
  transition: opacity 180ms ease, transform 220ms ease;
  z-index: 0;
}

.public-directory-card > *,
.player-radar-card > *,
.team-spotlight-card > *,
.team-card--enhanced > *,
.match-follow-card > *,
.lootspot-section > * {
  position: relative;
  z-index: 1;
}

.public-directory-card:hover,
.public-directory-card:focus-visible,
.public-directory-card:focus-within {
  border-color: rgba(216, 255, 118, 0.54);
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 255, 118, 0.16), transparent 30%),
    rgba(142, 230, 173, 0.055);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(216, 255, 118, 0.08),
    0 0 28px rgba(142, 230, 173, 0.13);
  transform: translateY(-3px);
}

.public-directory-card:hover::after,
.public-directory-card:focus-visible::after,
.public-directory-card:focus-within::after,
.player-radar-card:hover::after,
.player-radar-card[role="link"]:focus-visible::after,
.player-radar-card:focus-within::after,
.player-radar-link:hover .player-radar-card::after,
.player-radar-link:focus-visible .player-radar-card::after,
.team-spotlight-card:hover::after,
.team-spotlight-card:focus-within::after,
.team-card--enhanced:hover::after,
.team-card--enhanced:focus-within::after,
.match-follow-card:hover::after,
.match-follow-card:focus-within::after,
.lootspot-section:hover::after,
.lootspot-section:focus-within::after {
  opacity: 1;
  transform: translateX(0);
}

.public-directory-card--team {
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 183, 63, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.035);
}

.public-directory-card__rank {
  display: flex;
  justify-content: space-between;
}

.public-directory-card h3 {
  margin: 4px 0 6px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.05;
}

.public-directory-card p {
  margin: 0;
  color: #b8c8bc;
  font-size: 13px;
  line-height: 1.45;
}

.public-directory-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.public-directory-card dl div {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 8px;
  background: rgba(9, 13, 11, 0.45);
}

.public-directory-card dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.stat-card {
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 14px;
}

.stat-card__icon,
.public-hero__aside-icon {
  width: 34px;
  height: 26px;
  object-fit: contain;
  opacity: 0.94;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 8px rgba(142, 230, 173, 0.28));
}

.public-hero__aside-icon {
  width: 30px;
  height: 24px;
}

.pubg-inline-asset--natural {
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 10px rgba(243, 181, 74, 0.18));
}

.sort-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 12px 0 16px;
}

.sort-links a {
  color: #dceadf;
}

.sort-links a.is-active {
  border-color: rgba(69, 196, 126, 0.7);
  background: rgba(69, 196, 126, 0.18);
  color: #ffffff;
}

.public-results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.public-results-sidebar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  position: sticky;
  top: 83px;
  z-index: 18;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  background: rgba(21, 25, 23, 0.96);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.public-tabs__label {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-right: 1px solid rgba(142, 230, 173, 0.12);
  color: #91a295;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.public-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 8px;
  min-width: 0;
}

.public-tabs a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 8px 10px;
  color: #dceadf;
  text-decoration: none;
}

.public-tabs a:hover,
.public-tabs a:focus-visible {
  border-color: rgba(142, 230, 173, 0.32);
  background: rgba(69, 196, 126, 0.1);
  outline: none;
}

.public-tabs a.is-active {
  border-color: rgba(69, 196, 126, 0.7);
  background: rgba(69, 196, 126, 0.18);
  color: #ffffff;
}

.public-tabs__icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: #8ee6ad;
  font-size: 12px;
  font-weight: 1000;
}

.public-tabs a.is-active .public-tabs__icon {
  border-color: rgba(142, 230, 173, 0.45);
  background: #8ee6ad;
  color: #0b120f;
}

.public-tabs__text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.public-tabs__text strong,
.public-tabs__text small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-tabs__text strong {
  color: #ffffff;
  font-size: 14px;
}

.public-tabs__text small {
  color: #91a295;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.public-tabs a.is-active .public-tabs__text small {
  color: #c9f5d7;
}

.public-results-content {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.stats-section {
  display: grid;
  gap: 14px;
}

.player-radar-block {
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  margin-bottom: 10px;
  background: rgba(21, 25, 23, 0.94);
}

.player-radar-block__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(142, 230, 173, 0.12);
}

.player-radar-block__header span {
  color: #91a295;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.player-radar-block__header h2 {
  margin: 2px 0 0;
  color: #ffffff;
  font-size: 16px;
}

.player-radar-block__header p {
  max-width: 420px;
  margin: 0;
  color: #9cad9e;
  font-size: 13px;
  line-height: 1.4;
}

.player-radar-average {
  display: flex;
  max-width: 560px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
}

.player-radar-average span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-radar-average strong,
.player-radar-average b {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 6px;
  padding: 3px 7px;
  color: #e8fff0;
  background: rgba(142, 230, 173, 0.07);
  font-size: 11px;
  font-weight: 950;
}

.player-radar-average strong {
  color: #d8ff76;
  border-color: rgba(216, 255, 118, 0.24);
  background: rgba(216, 255, 118, 0.08);
}

.player-radar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.player-radar-link {
  display: block;
  min-width: 0;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.player-radar-link .player-radar-card {
  height: 100%;
  cursor: pointer;
}

.leaderboard-scope-gate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 10px;
  margin: 0 0 14px;
}

.leaderboard-scope-gate article {
  display: grid;
  gap: 6px;
  min-height: 96px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 58%),
    rgba(11, 15, 13, 0.92);
}

.leaderboard-scope-gate article.is-locked {
  border-color: rgba(216, 255, 118, 0.22);
  background:
    radial-gradient(circle at 92% 10%, rgba(216, 255, 118, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(216, 255, 118, 0.08), transparent 58%),
    rgba(14, 15, 11, 0.94);
}

.leaderboard-scope-gate span {
  color: #9bad9f;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.leaderboard-scope-gate strong {
  color: #f4fff6;
  font-size: 20px;
  font-weight: 1000;
  line-height: 1.05;
}

.leaderboard-scope-gate p {
  margin: 0;
  color: #bdc9c0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.leaderboard-scope-gate a {
  width: fit-content;
  border: 1px solid rgba(216, 255, 118, 0.36);
  border-radius: 7px;
  padding: 7px 10px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .leaderboard-scope-gate {
    grid-template-columns: 1fr;
  }
}

[data-row-href],
[data-card-href] {
  cursor: pointer;
}

body.public .stats-table tbody tr[data-row-href]:focus-visible {
  outline: 2px solid rgba(216, 255, 118, 0.68);
  outline-offset: -2px;
}

body.public .stats-table tbody tr[data-row-href]:hover td,
body.public .stats-table tbody tr[data-row-href]:focus-visible td {
  border-color: rgba(216, 255, 118, 0.24);
  background: rgba(142, 230, 173, 0.12);
}

body.public .stats-table tbody tr[data-row-href]:hover td:first-child,
body.public .stats-table tbody tr[data-row-href]:focus-visible td:first-child {
  box-shadow: inset 4px 0 0 #d8ff76;
}

[data-card-href]:focus-visible {
  outline: 2px solid rgba(216, 255, 118, 0.72);
  outline-offset: 3px;
}

.player-radar-card[role="link"] {
  cursor: pointer;
}

.player-radar-link:focus-visible {
  outline: 2px solid rgba(142, 230, 173, 0.82);
  outline-offset: -2px;
}

.player-radar-card {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 8px;
  min-height: 232px;
  padding: 11px;
  border-right: 1px solid rgba(142, 230, 173, 0.12);
  border-bottom: 1px solid rgba(142, 230, 173, 0.12);
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--player-accent) 16%, transparent), transparent 46%),
    rgba(18, 22, 20, 0.74);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.player-radar-card:hover,
.player-radar-card[role="link"]:focus-visible,
.player-radar-card:focus-within,
.player-radar-link:hover .player-radar-card,
.player-radar-link:focus-visible .player-radar-card {
  border-color: color-mix(in srgb, var(--player-accent) 42%, rgba(142, 230, 173, 0.12));
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--player-accent) 22%, transparent), transparent 48%),
    rgba(21, 28, 24, 0.92);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.24),
    0 0 22px color-mix(in srgb, var(--player-accent) 14%, transparent);
  transform: translateY(-2px);
}

.player-radar-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.player-radar-card__rank {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--player-accent) 52%, transparent);
  border-radius: 5px;
  padding: 2px 6px;
  color: var(--player-accent);
  font-size: 10px;
  font-weight: 950;
}

.player-radar-card h3 {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.player-radar-card p {
  margin: 4px 0 0;
  color: #aebbb2;
  font-size: 11px;
  font-weight: 800;
}

.player-radar-card__spr {
  display: grid;
  min-width: 56px;
  justify-items: end;
  color: #ffffff;
  font-size: 29px;
  font-weight: 1000;
  line-height: 0.9;
}

.player-radar-card__spr small {
  margin-top: 4px;
  color: var(--player-accent);
  font-size: 11px;
  font-weight: 1000;
}

.player-radar-card__spr em {
  margin-top: 3px;
  color: #91a295;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.player-radar-delta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 1px 5px;
  color: #c8d2ca;
  background: rgba(255, 255, 255, 0.07);
  font-size: 10px;
  font-weight: 1000;
  line-height: 1.25;
}

.player-radar-delta.is-positive {
  color: #8effb5;
  background: rgba(96, 214, 136, 0.14);
}

.player-radar-delta.is-negative {
  color: #ff9aa8;
  background: rgba(255, 92, 117, 0.13);
}

.player-radar-delta.is-neutral {
  color: #c5cec7;
}

.player-radar-chart {
  width: min(100%, 156px);
  margin: 0 auto;
  overflow: visible;
}

.player-radar-chart__grid polygon {
  fill: transparent;
  stroke: rgba(220, 234, 223, 0.16);
  stroke-dasharray: 4 5;
  stroke-width: 1;
}

.player-radar-chart__axes line {
  stroke: rgba(220, 234, 223, 0.12);
  stroke-width: 1;
}

.player-radar-chart__area {
  fill: color-mix(in srgb, var(--player-accent) 24%, transparent);
  stroke: var(--player-accent);
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.player-radar-chart__line {
  fill: none;
  stroke: color-mix(in srgb, var(--player-accent) 84%, #ffffff);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.player-radar-chart__labels text {
  fill: #b4c1b8;
  font-size: 6px;
  font-weight: 900;
  text-anchor: middle;
  dominant-baseline: middle;
}

.player-radar-chart__labels text[data-stat-code] {
  fill: var(--stat-color);
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--stat-color) 30%, transparent));
}

.player-radar-chart__delta {
  font-size: 5px;
  font-weight: 1000;
}

.player-radar-chart__delta.is-positive {
  fill: #8effb5;
}

.player-radar-chart__delta.is-negative {
  fill: #ff9aa8;
}

.player-radar-chart__delta.is-neutral {
  fill: #c5cec7;
}

.player-radar-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.player-radar-card__stats span {
  display: grid;
  gap: 2px;
  min-height: 40px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 5px;
  padding: 5px;
  color: #91a295;
  background: rgba(255, 255, 255, 0.04);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.player-radar-card__stat-icon {
  width: 18px;
  height: 15px;
  object-fit: contain;
  opacity: 0.92;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 8px color-mix(in srgb, var(--player-accent) 32%, transparent));
}

.player-radar-card__stats b {
  color: #ffffff;
  font-size: 13px;
  text-transform: none;
}

.player-radar-card__stats small {
  width: fit-content;
}

.player-profile-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 14px;
}

.player-profile-page {
  display: grid;
  gap: 14px;
}

.team-profile-page {
  display: grid;
  gap: clamp(14px, 1.25vw, 20px);
}

.team-profile-page > * {
  margin-block: 0;
}

.player-profile-filter {
  display: grid;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), rgba(244, 183, 63, 0.04)),
    rgba(18, 22, 20, 0.94);
}

.player-profile-filter__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.player-profile-filter__head span {
  color: #91a295;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-profile-filter__head h2 {
  margin: 2px 0 0;
  color: #ffffff;
  font-size: 18px;
}

.player-profile-filter__head strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 6px;
  padding: 5px 9px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-profile-filter__actions,
.player-profile-lobby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.player-profile-filter__actions button {
  min-height: 34px;
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 6px;
  padding: 7px 10px;
  color: #c9f5d7;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 950;
}

.player-profile-filter__actions button.is-active {
  border-color: rgba(142, 230, 173, 0.68);
  color: #07100b;
  background: #8ee6ad;
}

.player-profile-lobby-toggle {
  display: flex;
  min-width: min(100%, 280px);
  flex: 1 1 280px;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.player-profile-lobby-toggle input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: #8ee6ad;
}

.player-profile-lobby-toggle span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.player-profile-lobby-toggle strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.player-profile-lobby-toggle small {
  color: #91a295;
  font-size: 11px;
  font-weight: 850;
}

.player-profile-stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.player-profile-mode-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(260px, 0.8fr);
  gap: 10px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.08), transparent 58%),
    rgba(15, 19, 17, 0.94);
}

.player-profile-mode-strip article,
.player-profile-mode-strip > div {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 150px;
  border: 1px solid rgba(142, 230, 173, 0.11);
  border-radius: 8px;
  padding: 12px;
  background: rgba(9, 13, 11, 0.44);
}

.player-profile-mode-strip span {
  color: #8ee6ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-profile-mode-strip h2 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.05;
}

.player-profile-mode-strip ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 17px;
}

.player-profile-mode-strip li,
.player-profile-mode-strip p {
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.45;
}

.player-profile-mode-strip p {
  margin: 0;
}

.player-profile-mode-strip .public-button {
  width: fit-content;
  align-self: end;
}

.player-profile-resource__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.player-profile-resource__roles > span:not(.player-role-badge) {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-profile-resource__roles .player-role-badge {
  color: var(--role-color);
}

.player-profile-resource__empty {
  width: fit-content;
  border: 1px solid rgba(216, 255, 118, 0.18);
  border-radius: 8px;
  padding: 9px 11px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-role-badge,
.player-role-mini {
  --role-color: #8ee6ad;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid color-mix(in srgb, var(--role-color) 42%, transparent);
  border-radius: 999px;
  color: var(--role-color);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--role-color) 18%, transparent), transparent 65%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--role-color) 7%, transparent);
  font-weight: 950;
  text-transform: uppercase;
}

.player-role-badge {
  min-height: 32px;
  padding: 6px 11px;
  font-size: 11px;
}

.player-role-badge small {
  color: #c9d7cd;
  font-size: 10px;
}

.player-role-mini {
  min-width: 84px;
  min-height: 28px;
  padding: 5px 8px;
  font-size: 10px;
}

.player-role-badge--fragger,
.player-role-mini--fragger {
  --role-color: var(--stat-atk);
}

.player-role-badge--support,
.player-role-mini--support {
  --role-color: var(--stat-utl);
}

.player-role-badge--flanker,
.player-role-mini--flanker {
  --role-color: var(--stat-tf);
}

.player-role-badge--anchor,
.player-role-mini--anchor {
  --role-color: var(--stat-sur);
}

.player-role-badge--igl,
.player-role-mini--igl {
  --role-color: #f4b73f;
}

.player-role-badge--flex,
.player-role-mini--flex {
  --role-color: #d8ff76;
}

.player-impact-section,
.player-role-section,
.player-advanced-panel {
  display: grid;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.065), transparent 58%),
    rgba(15, 20, 17, 0.94);
}

.player-impact-section,
.player-role-section {
  padding: 14px;
}

.player-impact-section--empty {
  align-items: center;
  min-height: 82px;
  color: #d8ff76;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-impact-section__head,
.player-role-section__head,
.player-advanced-panel summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.player-impact-section__head span,
.player-role-section__head span,
.player-role-card span,
.player-role-reasons span,
.player-advanced-panel summary span,
.player-advanced-grid h3,
.player-impact-card span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-impact-section__head strong,
.player-role-section__badges > span,
.player-role-override,
.player-advanced-panel summary strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(216, 255, 118, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.player-impact-card {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: space-between;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(216, 255, 118, 0.16) var(--impact-score, 0%), transparent var(--impact-score, 0%)),
    rgba(9, 13, 11, 0.55);
}

.player-impact-card strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 0.95;
}

.player-impact-card p {
  margin: 0;
  color: #c7d5cb;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.player-role-section__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 22px;
}

.player-role-section__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.player-role-section__body {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: 10px;
}

.player-role-radar-card {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 255, 118, 0.1), transparent 56%),
    rgba(9, 13, 11, 0.5);
}

.player-role-radar-card .player-radar-chart {
  width: min(100%, 280px);
}

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

.player-role-card {
  display: grid;
  gap: 10px;
  min-height: 124px;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 12px;
  background: rgba(9, 13, 11, 0.52);
}

.player-role-card > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.player-role-card strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 0.95;
}

.player-role-card p,
.player-role-flex-hint {
  margin: 0;
  color: #b9c8bd;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.player-role-card i {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.player-role-card i b {
  display: block;
  width: var(--role-score, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ee6ad, #d8ff76);
}

.player-role-reasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.player-role-reasons article {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.player-role-reasons b {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.player-role-reasons small {
  display: block;
  margin-top: 6px;
  color: #b8c7bd;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.player-advanced-panel {
  padding: 0;
}

.player-advanced-panel summary {
  padding: 14px;
  cursor: pointer;
}

.player-advanced-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid rgba(142, 230, 173, 0.12);
  padding: 14px;
}

.player-advanced-grid section {
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(142, 230, 173, 0.11);
  border-radius: 8px;
  padding: 10px;
  background: rgba(9, 13, 11, 0.46);
}

.player-advanced-grid h3 {
  margin: 0;
  color: #d8ff76;
}

.player-advanced-grid dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.player-advanced-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  padding-top: 6px;
}

.player-advanced-grid dt,
.player-advanced-grid dd {
  margin: 0;
  color: #c9d7cd;
  font-size: 11px;
  font-weight: 850;
}

.player-advanced-grid dd {
  max-width: 48%;
  color: #ffffff;
  text-align: right;
}

.player-timeline-section {
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.17);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 14% 8%, rgba(216, 255, 118, 0.09), transparent 30%),
    linear-gradient(135deg, rgba(22, 27, 25, 0.98), rgba(9, 12, 10, 0.96));
}

.player-timeline-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.player-timeline-section__head span {
  color: #91a295;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-timeline-section__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 22px;
}

.player-timeline-section__head strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(244, 183, 63, 0.28);
  border-radius: 6px;
  padding: 5px 9px;
  color: #f4b73f;
  background: rgba(244, 183, 63, 0.08);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-timeline-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.player-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
}

.player-timeline-item[hidden] {
  display: none;
}

.player-timeline-item__rail {
  position: relative;
  min-height: 100%;
}

.player-timeline-item__rail::before,
.player-timeline-item__rail::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.player-timeline-item__rail::before {
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(rgba(142, 230, 173, 0.1), rgba(142, 230, 173, 0.42));
}

.player-timeline-item__rail::after {
  top: 18px;
  width: 11px;
  height: 11px;
  border: 2px solid #0b0f0d;
  border-radius: 50%;
  background: #d8ff76;
  box-shadow: 0 0 18px rgba(216, 255, 118, 0.38);
}

.player-timeline-item article {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(142, 230, 173, 0.07), transparent 40%),
    rgba(255, 255, 255, 0.035);
}

.player-timeline-item header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.player-timeline-item header span,
.player-timeline-item__meta span,
.player-timeline-item dt {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-timeline-item h3 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 18px;
}

.player-timeline-item header strong {
  flex: 0 0 auto;
  border: 1px solid rgba(216, 255, 118, 0.28);
  border-radius: 999px;
  padding: 5px 9px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-timeline-item__meta,
.player-timeline-item dl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.player-timeline-item__meta span {
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 6px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.035);
}

.player-timeline-item dl {
  margin: 0;
}

.player-timeline-item dl div {
  min-width: 110px;
  flex: 1 1 110px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 8px;
  background: rgba(13, 18, 15, 0.72);
}

.player-timeline-item dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.player-timeline-events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.player-timeline-event {
  display: grid;
  gap: 5px;
  min-height: 112px;
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-left-width: 4px;
  border-radius: 7px;
  padding: 9px;
  background: rgba(8, 12, 10, 0.52);
}

.player-timeline-event time {
  width: fit-content;
  border: 1px solid rgba(244, 183, 63, 0.28);
  border-radius: 999px;
  padding: 3px 6px;
  color: #f4b73f;
  background: rgba(244, 183, 63, 0.08);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

.player-timeline-event b {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.1;
}

.player-timeline-event span {
  color: #c9d7cd;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.player-timeline-event small {
  align-self: end;
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.player-timeline-event a {
  width: fit-content;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 999px;
  padding: 4px 7px;
  color: #9dffbd;
  background: rgba(142, 230, 173, 0.07);
  font-size: 10px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.player-timeline-event a:hover {
  border-color: rgba(216, 255, 118, 0.42);
  color: #0b120f;
  background: #d8ff76;
}

.player-timeline-event--start {
  border-left-color: #8ee6ad;
}

.player-timeline-event--route {
  border-left-color: #71a7ff;
}

.player-timeline-event--fight {
  border-left-color: #f4b73f;
}

.player-timeline-event--zone {
  border-left-color: #6aa2ff;
  background: rgba(69, 111, 191, 0.12);
}

.player-timeline-event--win,
.player-timeline-event--finish {
  border-left-color: #d8ff76;
}

.player-timeline-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.player-timeline-empty {
  margin: 0;
  color: #a6b8aa;
  font-weight: 800;
}

.player-weapon-section {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(142, 230, 173, 0.17);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 183, 63, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(15, 19, 17, 0.94);
}

.player-weapon-section--team {
  border-color: rgba(244, 183, 63, 0.18);
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 183, 63, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), rgba(244, 183, 63, 0.045)),
    rgba(15, 19, 17, 0.94);
}

.player-weapon-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.player-weapon-section__head span {
  color: #91a295;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-weapon-section__head h2 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 20px;
}

.player-weapon-section__head strong {
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: #8ee6ad;
  background: rgba(142, 230, 173, 0.07);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-weapon-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.player-weapon-summary span {
  display: grid;
  gap: 3px;
  min-height: 66px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-weapon-summary b {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

.player-weapon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.player-weapon-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(142, 230, 173, 0.075), transparent),
    rgba(255, 255, 255, 0.035);
}

.player-weapon-card:nth-child(even) {
  background:
    linear-gradient(90deg, rgba(244, 183, 63, 0.075), transparent),
    rgba(255, 255, 255, 0.048);
}

.player-weapon-card__icon {
  display: grid;
  width: 72px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.22);
}

.player-weapon-card__image {
  max-width: 62px;
  max-height: 46px;
  object-fit: contain;
  filter:
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 12px rgba(142, 230, 173, 0.16));
}

.player-weapon-card__body {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.player-weapon-card__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.player-weapon-card__title span {
  color: #f4b73f;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.player-weapon-card__title strong {
  overflow: hidden;
  color: #f2fff6;
  font-size: 16px;
  font-weight: 1000;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-weapon-card__title small {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.player-weapon-card__bar {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.player-weapon-card__bar i {
  display: block;
  width: var(--weapon-share);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ee6ad, #f4b73f);
  box-shadow: 0 0 14px rgba(142, 230, 173, 0.22);
}

.player-weapon-card dl {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.player-weapon-card dl div {
  display: grid;
  gap: 2px;
  border-left: 1px solid rgba(142, 230, 173, 0.15);
  padding-left: 7px;
}

.player-weapon-card dt {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-weapon-card dd {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 1000;
}

.player-weapon-empty {
  margin: 0;
  border: 1px dashed rgba(142, 230, 173, 0.2);
  border-radius: 8px;
  padding: 14px;
  color: #aebdaf;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 850;
}

/* Highlight gallery */
.highlight-section .empty-state {
  border: 1px dashed rgba(142, 230, 173, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.highlight-section {
  display: grid;
  gap: 14px;
}

.highlight-studio-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto) minmax(180px, auto);
  gap: 12px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 255, 118, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(23, 40, 29, 0.78), rgba(6, 10, 8, 0.82));
}

.highlight-studio-head > div:first-child {
  display: grid;
  gap: 4px;
}

.highlight-studio-head span,
.highlight-empty-studio__copy span {
  color: #9eb1a5;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.highlight-studio-head strong,
.highlight-empty-studio__copy strong {
  color: #ffffff;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 1000;
  line-height: 1;
}

.highlight-studio-head p {
  max-width: 620px;
  margin: 0;
  color: #c5d4c9;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.highlight-studio-head dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(76px, 1fr));
  gap: 7px;
  margin: 0;
}

.highlight-studio-head dl div {
  display: grid;
  gap: 3px;
  min-height: 56px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 7px;
  padding: 8px 9px;
  background: rgba(0, 0, 0, 0.22);
}

.highlight-studio-head dt {
  color: #8fa195;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.highlight-studio-head dd {
  margin: 0;
  color: #d8ff76;
  font-size: 18px;
  font-weight: 1000;
}

.highlight-studio-head__owner {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(216, 255, 118, 0.22);
  border-radius: 8px;
  padding: 10px;
  background: rgba(216, 255, 118, 0.08);
}

.highlight-studio-head__owner[hidden] {
  display: none;
}

.highlight-studio-head__owner b {
  color: #d8ff76;
  font-size: 13px;
  font-weight: 1000;
}

.highlight-studio-head__owner span {
  color: #dceadf;
  font-size: 11px;
  line-height: 1.25;
  text-transform: none;
}

.highlight-empty-studio {
  display: grid;
  gap: 12px;
}

.highlight-empty-studio__copy {
  display: grid;
  gap: 4px;
  border: 1px dashed rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.highlight-group {
  display: grid;
  gap: 10px;
}

.highlight-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.highlight-group__head b {
  overflow: hidden;
  color: #f2fff6;
  font-size: 15px;
  font-weight: 1000;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.highlight-group__head span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}

.highlight-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(216, 255, 118, 0.18);
  border-radius: 8px;
  padding: 10px;
  background:
    radial-gradient(circle at 90% 0%, rgba(216, 255, 118, 0.08), transparent 36%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), transparent 48%),
    rgba(12, 17, 15, 0.94);
}

.highlight-card--skeleton {
  border-style: dashed;
  opacity: 0.92;
}

.highlight-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.32);
}

.highlight-card__media video {
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: contain;
}

.highlight-card__pending {
  position: relative;
  display: grid;
  height: 100%;
  gap: 4px;
  place-content: center;
  justify-items: center;
  overflow: hidden;
  text-align: center;
}

.highlight-card__pending--slot {
  background:
    linear-gradient(90deg, transparent 0%, rgba(216, 255, 118, 0.09) 44%, transparent 72%),
    radial-gradient(circle at 50% 48%, rgba(142, 230, 173, 0.14), transparent 42%);
}

.highlight-card__pending--slot::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(216, 255, 118, 0.28);
  border-radius: 7px;
}

.highlight-card__pending--slot::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52px;
  background: linear-gradient(90deg, transparent, rgba(216, 255, 118, 0.13), transparent);
  animation: highlight-slot-scan 2600ms ease-in-out infinite;
}

.highlight-card__pending i {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 24px;
  border: 1px solid rgba(216, 255, 118, 0.4);
  border-radius: 6px;
  background: rgba(216, 255, 118, 0.08);
  box-shadow: 0 0 20px rgba(216, 255, 118, 0.18);
}

.highlight-card__pending i::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #d8ff76;
}

.highlight-card__pending span {
  position: relative;
  z-index: 1;
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.highlight-card__pending b {
  position: relative;
  z-index: 1;
  color: #aebdaf;
  font-size: 16px;
  font-weight: 1000;
}

.highlight-card__pending small {
  position: relative;
  z-index: 1;
  max-width: 190px;
  color: #c5d4c9;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.highlight-card__play {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.highlight-card__play img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-card__play-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(216, 255, 118, 0.4);
  border-radius: 50%;
  background: rgba(7, 16, 11, 0.78);
  box-shadow: 0 0 18px rgba(216, 255, 118, 0.22);
}

.highlight-card__play-icon::after {
  content: "";
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #d8ff76;
}

.highlight-card__play:hover .highlight-card__play-icon {
  background: rgba(216, 255, 118, 0.18);
}

.highlight-card__play small {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 1;
  border-radius: 5px;
  padding: 2px 6px;
  color: #f2fff6;
  background: rgba(7, 16, 11, 0.82);
  font-size: 10px;
  font-weight: 950;
}

.highlight-card__body {
  display: grid;
  gap: 4px;
  justify-items: start;
}

.highlight-card__body strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 1000;
}

.highlight-card__body small {
  color: #91a295;
  font-size: 11px;
  font-weight: 850;
}

.highlight-kill-list {
  display: grid;
  width: 100%;
  gap: 5px;
  margin: 3px 0 0;
  padding: 0;
  list-style: none;
}

.highlight-kill-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 7px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 6px;
}

.highlight-kill-list span {
  color: #d8ff76;
  font-size: 10px;
  font-weight: 1000;
}

.highlight-kill-list b {
  overflow: hidden;
  color: #f2fff6;
  font-size: 11px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.highlight-kill-list small {
  grid-column: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 6px;
  padding: 2px 8px;
  color: #dceadf;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.highlight-badge--rapid3 {
  background: rgba(243, 181, 74, 0.18);
  color: #ffd27d;
}

.highlight-badge--streak4 {
  background: rgba(69, 196, 126, 0.18);
  color: #a7f0bd;
}

.highlight-badge--finalkill {
  background: rgba(120, 174, 255, 0.2);
  color: #cfe1ff;
}

.highlight-card__owner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.highlight-card__owner[hidden] {
  display: none;
}

.highlight-card__action {
  border: 1px solid rgba(216, 255, 118, 0.28);
  border-radius: 7px;
  padding: 7px 10px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.highlight-card__action--remove {
  border-color: rgba(224, 105, 94, 0.34);
  color: #ffb2aa;
  background: rgba(224, 105, 94, 0.12);
}

.highlight-card__action:disabled {
  opacity: 0.55;
  cursor: wait;
}

@keyframes highlight-slot-scan {
  0% {
    left: -60px;
    opacity: 0;
  }
  18%,
  72% {
    opacity: 1;
  }
  100% {
    left: calc(100% + 60px);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .highlight-studio-head {
    grid-template-columns: 1fr;
  }

  .highlight-studio-head dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .highlight-studio-head dl {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .highlight-card__pending--slot::after {
    animation: none;
    opacity: 0;
  }
}

.my-pubg-highlight-prompt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  grid-column: 1 / -1;
  border: 1px solid rgba(216, 255, 118, 0.26);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(216, 255, 118, 0.12), transparent 56%),
    rgba(12, 17, 15, 0.94);
}

.my-pubg-highlight-prompt[hidden] {
  display: none;
}

.my-pubg-highlight-prompt span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-highlight-prompt strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
}

.my-pubg-highlight-prompt__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.my-pubg-highlight-prompt__actions button {
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 7px;
  padding: 9px 12px;
  color: #b8c7bc;
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.highlight-upload-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(4, 8, 6, 0.78);
}

.highlight-upload-modal__panel {
  display: grid;
  width: min(440px, 100%);
  gap: 12px;
  border: 1px solid rgba(216, 255, 118, 0.22);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 90% 0%, rgba(216, 255, 118, 0.08), transparent 36%),
    rgba(12, 17, 15, 0.98);
}

.highlight-upload-modal__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.highlight-upload-modal__head span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.highlight-upload-modal__head strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
}

.highlight-upload-modal__head button {
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 7px;
  padding: 4px 10px;
  color: #b8c7bc;
  background: rgba(255, 255, 255, 0.035);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.highlight-upload-modal__file {
  display: grid;
  gap: 4px;
  border: 1px dashed rgba(216, 255, 118, 0.3);
  border-radius: 8px;
  padding: 14px;
  background: rgba(216, 255, 118, 0.05);
  cursor: pointer;
}

.highlight-upload-modal__file input {
  font-size: 12px;
  color: #b8c7bc;
}

.highlight-upload-modal__file b {
  color: #f2fff6;
  font-size: 13px;
  font-weight: 950;
}

.highlight-upload-modal__file small {
  color: #91a295;
  font-size: 11px;
  font-weight: 850;
}

.highlight-upload-modal__title {
  display: grid;
  gap: 4px;
}

.highlight-upload-modal__title span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.highlight-upload-modal__title input {
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 7px;
  padding: 9px 10px;
  color: #f2fff6;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 800;
}

.highlight-upload-modal__warning {
  margin: 0;
  border: 1px solid rgba(243, 181, 74, 0.3);
  border-radius: 7px;
  padding: 9px 10px;
  color: #ffd27d;
  background: rgba(243, 181, 74, 0.1);
  font-size: 12px;
  font-weight: 850;
}

.highlight-upload-modal__warning[hidden] {
  display: none;
}

.highlight-upload-modal__progress {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 22px;
  align-items: center;
  border: 1px solid rgba(216, 255, 118, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.highlight-upload-modal__progress[hidden] {
  display: none;
}

.highlight-upload-modal__progress i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(142, 230, 173, 0.5), rgba(216, 255, 118, 0.7));
  transition: width 160ms ease;
}

.highlight-upload-modal__progress span {
  position: relative;
  z-index: 1;
  width: 100%;
  color: #f2fff6;
  font-size: 11px;
  font-weight: 950;
  text-align: center;
}

.highlight-upload-modal__status {
  margin: 0;
  color: #b8c7bc;
  font-size: 12px;
  font-weight: 850;
}

.highlight-upload-modal__status[data-tone="error"] {
  color: #ffb2aa;
}

.highlight-upload-modal__status[data-tone="ready"] {
  color: #a7f0bd;
}

.highlight-upload-modal__status a {
  color: #d8ff76;
}

.highlight-upload-modal__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.highlight-upload-modal__actions button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.highlight-upload-modal__actions [data-upload-cancel] {
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 7px;
  padding: 9px 12px;
  color: #b8c7bc;
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.player-profile-resource,
.player-profile-radar-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background: rgba(18, 22, 20, 0.92);
}

.player-profile-resource {
  min-height: 330px;
  display: grid;
  align-items: end;
  padding: 22px;
  background:
    radial-gradient(circle at 74% 24%, rgba(244, 183, 63, 0.18), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(142, 230, 173, 0.18), transparent 36%),
    rgba(16, 20, 18, 0.95);
}

.player-profile-resource__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.08);
  opacity: 0.22;
  transform: scale(1.08);
}

.player-profile-resource::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 12, 0.92), rgba(10, 14, 12, 0.34) 58%, rgba(10, 14, 12, 0.78)),
    linear-gradient(180deg, transparent, rgba(4, 8, 6, 0.84));
}

.player-profile-resource__weapon {
  position: absolute;
  right: -18px;
  bottom: 20px;
  z-index: 1;
  width: min(52%, 440px);
  opacity: 0.88;
  filter:
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.86))
    drop-shadow(0 0 24px rgba(244, 183, 63, 0.2));
}

.player-profile-resource__icon {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 1;
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 0 16px rgba(142, 230, 173, 0.26));
}

.player-profile-resource__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.player-profile-resource__content span,
.player-profile-radar-card header span {
  color: #91a295;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-profile-resource__content h1,
.player-profile-resource__content h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
}

.player-profile-resource__content p {
  margin: 12px 0 0;
  color: #c8d6cd;
  font-size: 15px;
  font-weight: 900;
}

.player-profile-resource__content div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.player-profile-resource__content b {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 6px;
  padding: 5px 9px;
  color: #e8fff0;
  background: rgba(142, 230, 173, 0.07);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-profile-radar-card {
  display: grid;
  grid-template-rows: auto minmax(190px, 1fr) auto;
  align-items: stretch;
  gap: 12px;
  min-height: 330px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--player-accent) 17%, transparent), transparent 48%),
    rgba(18, 22, 20, 0.9);
}

.player-profile-radar-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.player-profile-radar-card header strong {
  display: grid;
  justify-items: end;
  color: #ffffff;
  font-size: 46px;
  font-weight: 1000;
  line-height: 0.9;
}

.player-profile-radar-card header small {
  margin-top: 5px;
  color: var(--player-accent);
  font-size: 15px;
  font-weight: 1000;
}

.player-profile-radar-card [data-player-profile-radar] {
  display: grid;
  width: 100%;
  place-items: center;
}

.player-profile-radar-card .player-radar-chart {
  display: block;
  width: min(100%, 300px);
  max-width: 300px;
  justify-self: center;
  align-self: center;
}

.player-profile-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.player-profile-breakdown span {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 6px;
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 16px;
  font-weight: 950;
}

.player-profile-breakdown span[data-stat-code] {
  border-color: var(--stat-color-line);
  background:
    linear-gradient(135deg, var(--stat-color-soft), transparent 62%),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--stat-color) 7%, transparent);
}

.stat-abbr-help,
[data-stat-help] {
  position: relative;
  cursor: help;
}

[data-stat-code] {
  --stat-color: #d8ff76;
  --stat-color-soft: color-mix(in srgb, var(--stat-color) 15%, transparent);
  --stat-color-line: color-mix(in srgb, var(--stat-color) 36%, transparent);
}

[data-stat-code="SPR"] {
  --stat-color: var(--stat-spr);
}

[data-stat-code="SUR"] {
  --stat-color: var(--stat-sur);
}

[data-stat-code="UTL"] {
  --stat-color: var(--stat-utl);
}

[data-stat-code="COM"],
[data-stat-code="ATK"] {
  --stat-color: var(--stat-atk);
}

[data-stat-code="TM"],
[data-stat-code="TF"] {
  --stat-color: var(--stat-tm);
}

[data-stat-code="STL"],
[data-stat-code="LATE"] {
  --stat-color: var(--stat-stl);
}

[data-stat-code="FIN"],
[data-stat-code="CONV"] {
  --stat-color: var(--stat-fin);
}

[data-stat-code="DMG"],
[data-stat-code="K"],
[data-stat-code="K/M"],
[data-stat-code="DBNO"],
[data-stat-code="DBNOs"],
[data-stat-code="HS"] {
  --stat-color: var(--stat-dmg);
}

[data-stat-code="PTS"] {
  --stat-color: var(--stat-pts);
}

[data-stat-code="PLC"] {
  --stat-color: var(--stat-plc);
}

[data-stat-code="MP"],
[data-stat-code="CONS"] {
  --stat-color: var(--stat-mp);
}

.stat-abbr-help {
  width: fit-content;
}

.stat-abbr-help[data-stat-code] {
  color: var(--stat-color);
  text-shadow: 0 0 12px color-mix(in srgb, var(--stat-color) 32%, transparent);
}

.stat-abbr-help:focus-visible,
[data-stat-help]:focus-visible {
  outline: 2px solid rgba(216, 255, 118, 0.72);
  outline-offset: 3px;
}

.stat-abbr-help::after,
[data-stat-help]::after {
  content: attr(data-stat-help);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 80;
  width: max-content;
  max-width: min(260px, 78vw);
  border: 1px solid rgba(216, 255, 118, 0.24);
  border-radius: 7px;
  padding: 8px 10px;
  color: #f3fff5;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 52%),
    rgba(7, 11, 9, 0.98);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.player-profile-breakdown span[data-stat-help]::after,
.my-pubg-watchlist-strip dt[data-stat-help]::after {
  left: 0;
  transform: translateY(4px);
}

.stat-abbr-help:hover::after,
.stat-abbr-help:focus-visible::after,
[data-stat-help]:hover::after,
[data-stat-help]:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.player-profile-breakdown span[data-stat-help]:hover::after,
.player-profile-breakdown span[data-stat-help]:focus-visible::after,
.my-pubg-watchlist-strip dt[data-stat-help]:hover::after,
.my-pubg-watchlist-strip dt[data-stat-help]:focus-visible::after {
  transform: translateY(0);
}

.player-profile-breakdown em {
  color: #ffffff;
  font-style: normal;
}

.player-profile-breakdown b {
  color: var(--stat-color, #91a295);
  font-size: 11px;
  text-transform: uppercase;
}

.resource-note {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), rgba(243, 181, 74, 0.06)),
    rgba(18, 22, 20, 0.94);
}

.resource-note h2 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
}

.resource-note p {
  max-width: 820px;
  margin: 0;
  color: #b8c7bd;
  line-height: 1.5;
}

.resource-note__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.resource-note__grid article {
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 12px;
  background: rgba(9, 13, 11, 0.46);
}

.resource-note__grid h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 14px;
}

.resource-note__grid p {
  color: #b8c7bd;
  font-size: 13px;
}

.resource-note__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resource-note__links a {
  width: fit-content;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 6px;
  padding: 8px 10px;
  color: #9cf3b8;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(142, 230, 173, 0.08);
}

.resource-note__links a:hover {
  border-color: rgba(142, 230, 173, 0.48);
  color: #ffffff;
}

.resource-usage-guide {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 181, 74, 0.1), transparent 28%),
    rgba(13, 18, 15, 0.94);
}

.resource-usage-guide__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.resource-usage-guide__head span,
.resource-usage-card dt {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.resource-usage-guide__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 22px;
}

.resource-usage-guide__head p {
  max-width: 850px;
  margin: 6px 0 0;
  color: #b8c7bd;
  font-size: 13px;
  line-height: 1.45;
}

.resource-usage-guide__head strong {
  flex: 0 0 auto;
  border: 1px solid rgba(216, 255, 118, 0.24);
  border-radius: 6px;
  padding: 7px 10px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.resource-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.resource-usage-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), transparent 54%),
    rgba(9, 13, 11, 0.58);
}

.resource-usage-card__assets {
  display: flex;
  gap: 6px;
  min-width: 0;
}

.resource-usage-card__assets span {
  display: grid;
  width: 48px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 6px;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 10px),
    rgba(255, 255, 255, 0.04);
}

.resource-usage-card__assets img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.75))
    drop-shadow(0 0 10px rgba(142, 230, 173, 0.16));
}

.resource-usage-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
}

.resource-usage-card p {
  margin: 5px 0 0;
  color: #b8c7bd;
  font-size: 13px;
  line-height: 1.4;
}

.resource-usage-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.resource-usage-card dd {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 4px 0 0;
  color: #dceadf;
  font-size: 12px;
  line-height: 1.4;
}

.resource-usage-card dd span {
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 999px;
  padding: 3px 7px;
  color: #9cf3b8;
  background: rgba(142, 230, 173, 0.07);
  font-size: 11px;
  font-weight: 850;
}

.resource-browser {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(69, 196, 126, 0.08), rgba(216, 255, 118, 0.035)),
    rgba(10, 15, 12, 0.96);
}

.resource-browser__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.resource-browser__head span,
.resource-browser__controls span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.resource-browser__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 22px;
}

.resource-browser__head p {
  max-width: 820px;
  margin: 5px 0 0;
  color: #b8c7bd;
  font-size: 13px;
  line-height: 1.45;
}

.resource-browser__head strong {
  border: 1px solid rgba(216, 255, 118, 0.24);
  border-radius: 7px;
  padding: 9px 11px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
  text-transform: uppercase;
}

.resource-browser__controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px);
  gap: 10px;
}

.resource-browser__controls label {
  display: grid;
  gap: 6px;
}

.resource-browser__controls input,
.resource-browser__controls select {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 7px;
  padding: 8px 10px;
  color: #f2fff6;
  background: rgba(5, 10, 8, 0.78);
  font: inherit;
}

.resource-browser__controls input:focus,
.resource-browser__controls select:focus {
  outline: 2px solid rgba(142, 230, 173, 0.42);
  outline-offset: 2px;
}

.resource-browser__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.resource-browser__filters button {
  min-height: 34px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  color: #b9ffc9;
  background: rgba(142, 230, 173, 0.06);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.resource-browser__filters button.is-active,
.resource-browser__filters button:hover {
  border-color: rgba(216, 255, 118, 0.42);
  color: #0b120f;
  background: #d8ff76;
}

.resource-gallery {
  display: grid;
  gap: 14px;
}

.resource-empty {
  border: 1px dashed rgba(142, 230, 173, 0.24);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.resource-empty b {
  display: block;
  color: #ffffff;
}

.resource-empty span {
  display: block;
  margin-top: 4px;
  color: #b8c7bd;
}

.resource-category {
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  background: rgba(21, 25, 23, 0.94);
}

.resource-category__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid rgba(142, 230, 173, 0.12);
}

.resource-category__head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
}

.resource-category__head span {
  color: #91a295;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.resource-card {
  display: grid;
  grid-template-rows: 170px auto;
  min-width: 0;
  border-right: 1px solid rgba(142, 230, 173, 0.1);
  border-bottom: 1px solid rgba(142, 230, 173, 0.1);
  background:
    radial-gradient(circle at 50% 35%, rgba(142, 230, 173, 0.1), transparent 40%),
    rgba(12, 16, 14, 0.55);
}

.resource-card__preview {
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px);
}

.resource-card__preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 18px rgba(142, 230, 173, 0.12));
}

.resource-card__body {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.resource-card__body span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.resource-card__body h3 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
}

.resource-card__body p {
  margin: 0;
  color: #aebbb2;
  font-size: 12px;
  line-height: 1.35;
}

.resource-card__codes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.resource-card__body code {
  width: fit-content;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 6px;
  padding: 3px 6px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
  font-size: 11px;
}

.resource-card__body small {
  color: #91a295;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.upcoming-lobbies {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(69, 196, 126, 0.08), transparent 54%),
    rgba(16, 20, 18, 0.94);
}

.upcoming-lobbies__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.upcoming-lobbies__head span {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.upcoming-lobbies__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 34px);
}

.upcoming-lobbies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.scrim-lobby-actions,
.scrim-map-rotation {
  display: grid;
  gap: 14px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 56%),
    rgba(16, 20, 18, 0.94);
}

.scrim-lobby-actions {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.scrim-lobby-actions h2,
.scrim-map-rotation__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.05;
}

.scrim-lobby-actions p,
.scrim-map-rotation__head p {
  max-width: 780px;
  margin: 7px 0 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.5;
}

.scrim-map-rotation__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.scrim-map-rotation__head span,
.scrim-map-card span {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.scrim-map-rotation__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.scrim-map-card {
  position: relative;
  display: grid;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  background: rgba(9, 13, 11, 0.82);
}

.scrim-map-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.scrim-map-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.1), rgba(8, 10, 9, 0.86));
  content: "";
}

.scrim-map-card div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 13px;
}

.scrim-map-card strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.05;
}

.upcoming-lobby-card {
  position: relative;
  display: grid;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  color: inherit;
  background: rgba(9, 13, 11, 0.7);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.upcoming-lobby-card:hover,
.upcoming-lobby-card:focus-visible {
  border-color: rgba(142, 230, 173, 0.46);
  transform: translateY(-2px);
}

.upcoming-lobby-card:focus-visible {
  outline: 2px solid rgba(142, 230, 173, 0.76);
  outline-offset: 2px;
}

.upcoming-lobby-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.15) contrast(1.08);
  transform: scale(1.04);
}

.upcoming-lobby-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 8, 0.2), rgba(7, 10, 8, 0.92) 78%),
    linear-gradient(90deg, rgba(142, 230, 173, 0.1), transparent 58%);
  content: "";
}

.upcoming-lobby-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 7px;
  padding: 16px;
}

.upcoming-lobby-card h3 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.05;
}

.upcoming-lobby-card p,
.upcoming-lobby-card small {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.35;
}

.upcoming-lobby-card small {
  color: #a6b8aa;
  font-weight: 800;
}

.upcoming-lobby-card b {
  width: fit-content;
  margin-top: 5px;
  border: 1px solid rgba(142, 230, 173, 0.42);
  border-radius: 6px;
  padding: 7px 9px;
  color: #0b120f;
  background: #8ee6ad;
  font-size: 12px;
  font-weight: 950;
}

.match-history {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(244, 183, 63, 0.08), transparent 52%),
    rgba(16, 20, 18, 0.94);
}

.match-history-insight {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 8% 18%, rgba(88, 101, 242, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 58%),
    rgba(17, 21, 19, 0.94);
}

.match-history-insight > div:first-child {
  display: grid;
  align-content: center;
  gap: 8px;
}

.match-history-insight span,
.match-history-map-breakdown b {
  color: #8ee6ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.match-history-insight h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 1.04;
}

.match-history-insight p {
  margin: 0;
  color: #b7c6ba;
  line-height: 1.55;
}

.match-history-insight__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 6px 0 0;
}

.match-history-insight__stats div {
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 7px;
  padding: 9px;
  background: rgba(7, 10, 8, 0.42);
}

.match-history-insight__stats dt {
  color: #a6b8aa;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.match-history-insight__stats dd {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
}

.match-history-map-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.match-history-map-breakdown article {
  position: relative;
  display: grid;
  min-height: 120px;
  overflow: hidden;
  align-content: end;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 12px;
  background: rgba(9, 13, 11, 0.54);
}

.match-history-map-breakdown article.match-history-map-breakdown__empty {
  min-height: 0;
  align-content: center;
  background: rgba(7, 10, 8, 0.42);
}

.match-history-map-breakdown article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.1), rgba(8, 10, 9, 0.9));
  content: "";
}

.match-history-map-breakdown article.match-history-map-breakdown__empty::after {
  content: none;
}

.match-history-map-breakdown img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.1) contrast(1.08);
}

.match-history-map-breakdown b,
.match-history-map-breakdown span {
  position: relative;
  z-index: 1;
}

.match-history-map-breakdown span {
  margin-top: 4px;
  color: #d0dfd4;
  font-size: 12px;
  font-weight: 850;
  text-transform: none;
}

.match-history__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.match-history__head span,
.match-history-card span,
.match-history-card dt {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.match-history__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 34px);
}

.match-history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}

.match-history-card {
  position: relative;
  display: grid;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  color: inherit;
  background: rgba(9, 13, 11, 0.7);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.match-history-card:hover,
.match-history-card:focus-visible {
  border-color: rgba(244, 183, 63, 0.44);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.match-history-card:focus-visible {
  outline: 2px solid rgba(244, 183, 63, 0.76);
  outline-offset: 2px;
}

.match-history-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(1.1) contrast(1.08);
  transform: scale(1.05);
}

.match-history-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 9, 0.14), rgba(8, 10, 9, 0.94) 76%),
    linear-gradient(90deg, rgba(244, 183, 63, 0.08), transparent 62%);
  content: "";
}

.match-history-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 16px;
}

.match-history-card h3 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.08;
}

.match-history-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.match-history-card__eyebrow em {
  border: 1px solid rgba(216, 255, 118, 0.28);
  border-radius: 999px;
  padding: 4px 7px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.match-history-card p,
.match-history-card small {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.4;
}

.match-history-card small {
  color: #a6b8aa;
  font-weight: 800;
}

.match-history-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.match-history-card dl div {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 8px;
  background: rgba(9, 13, 11, 0.48);
}

.match-history-card dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.match-history-card__teams {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-history-card__teams li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.1);
  border-radius: 7px;
  padding: 6px 7px;
  background: rgba(7, 10, 8, 0.38);
}

.match-history-card__teams li span,
.match-history-card__teams li em {
  color: #d8ff76;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.match-history-card__teams li strong {
  overflow: hidden;
  color: #e7f2ea;
  font-size: 12px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-history-card b {
  width: fit-content;
  border: 1px solid rgba(244, 183, 63, 0.42);
  border-radius: 6px;
  padding: 7px 9px;
  color: #0b120f;
  background: #f4b73f;
  font-size: 12px;
  font-weight: 950;
}

.match-session-archive {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.match-session-archive__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 62%),
    rgba(15, 19, 17, 0.94);
}

.match-session-archive__head span,
.match-session-group__badge,
.match-session-group__stats dt {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.match-session-archive__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.05;
}

.match-session-archive__head strong {
  border: 1px solid rgba(216, 255, 118, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.match-session-archive__groups {
  display: grid;
  gap: 10px;
}

.match-session-group {
  --session-rgb: 142, 230, 173;
  --session-color: rgb(var(--session-rgb));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--session-rgb), 0.26);
  border-left: 5px solid var(--session-color);
  border-radius: 8px;
  background:
    radial-gradient(circle at 2% 12%, rgba(var(--session-rgb), 0.2), transparent 30%),
    linear-gradient(180deg, rgba(var(--session-rgb), 0.045), rgba(12, 16, 14, 0.94) 44%),
    rgba(13, 17, 15, 0.96);
}

.match-session-group[data-session-accent="0"] { --session-rgb: 142, 230, 173; }
.match-session-group[data-session-accent="1"] { --session-rgb: 216, 255, 118; }
.match-session-group[data-session-accent="2"] { --session-rgb: 100, 221, 255; }
.match-session-group[data-session-accent="3"] { --session-rgb: 190, 143, 255; }
.match-session-group[data-session-accent="4"] { --session-rgb: 244, 183, 63; }
.match-session-group[data-session-accent="5"] { --session-rgb: 255, 139, 122; }
.match-session-group[data-session-accent="6"] { --session-rgb: 112, 245, 216; }
.match-session-group[data-session-accent="7"] { --session-rgb: 255, 141, 215; }

.match-session-group__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.54fr);
  gap: 14px;
  align-items: end;
  padding: 14px;
}

.match-session-group__identity {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.match-session-group__badge {
  width: fit-content;
  border: 1px solid rgba(var(--session-rgb), 0.34);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--session-color);
  background: rgba(var(--session-rgb), 0.08);
}

.match-session-group h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.match-session-group__title-link {
  color: inherit;
  text-decoration: none;
}

.match-session-group__title-link:hover,
.match-session-group__title-link:focus-visible {
  color: var(--session-color);
}

.match-session-group p {
  margin: 0;
  color: #b9c9bd;
  font-size: 13px;
  font-weight: 850;
}

.match-session-group__maps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 2px;
}

.match-session-group__maps > span {
  color: #91a295;
  font-size: 12px;
  font-weight: 850;
}

.match-session-group__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.match-session-group__stats div {
  border: 1px solid rgba(var(--session-rgb), 0.15);
  border-radius: 7px;
  padding: 9px 10px;
  background: rgba(4, 8, 6, 0.42);
}

.match-session-group__stats dd {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.match-session-group__table {
  border-top: 1px solid rgba(var(--session-rgb), 0.16);
}

body.public table.match-session-table {
  min-width: 780px;
}

body.public .match-session-table th {
  background:
    linear-gradient(180deg, rgba(var(--session-rgb), 0.2), rgba(17, 24, 20, 0.98)),
    rgba(17, 24, 20, 0.98);
  color: #f0fff4;
}

body.public .match-session-table th,
body.public .match-session-table td {
  padding: 10px 9px;
}

body.public .match-session-table td:first-child {
  border-left: 3px solid rgba(var(--session-rgb), 0.75);
}

body.public .match-session-table tbody tr:nth-child(odd) td {
  background: rgba(var(--session-rgb), 0.035);
}

body.public .match-session-table tbody tr:nth-child(even) td {
  background: rgba(var(--session-rgb), 0.075);
}

body.public .match-session-table tbody tr:hover td {
  background: rgba(var(--session-rgb), 0.16);
}

.match-session-row__match {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  border: 1px solid rgba(var(--session-rgb), 0.3);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--session-color);
  background: rgba(var(--session-rgb), 0.08);
  font-size: 12px;
  font-weight: 950;
}

.pubg-map-chip--table {
  min-width: 78px;
  justify-content: center;
}

.scrim-event-list {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 0%, rgba(142, 230, 173, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(69, 196, 126, 0.05), transparent 180px),
    rgba(14, 18, 16, 0.94);
}

.scrim-event-list__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(142, 230, 173, 0.12);
}

.scrim-event-list__title > div {
  display: grid;
  gap: 3px;
}

.scrim-event-list__title h2 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.05;
}

.scrim-event-list__title span,
.scrim-event-list__title strong {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.scrim-event-list__title strong {
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 999px;
  padding: 6px 9px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.06);
  white-space: nowrap;
}

.scrim-event-list__items {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.scrim-event-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(172px, auto);
  gap: 12px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 12px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  background:
    radial-gradient(circle at 0% 40%, rgba(var(--map-rgb, 142, 230, 173), 0.16), transparent 30%),
    linear-gradient(90deg, rgba(var(--map-rgb, 142, 230, 173), 0.07), transparent 44%),
    rgba(7, 11, 9, 0.5);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.scrim-event-item__main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.scrim-event-item:last-child {
  border-bottom-width: 1px;
}

.scrim-event-item:hover {
  border-color: rgba(var(--map-rgb, 142, 230, 173), 0.44);
  background:
    radial-gradient(circle at 0% 40%, rgba(var(--map-rgb, 142, 230, 173), 0.24), transparent 34%),
    linear-gradient(90deg, rgba(var(--map-rgb, 142, 230, 173), 0.12), transparent 48%),
    rgba(12, 18, 15, 0.74);
  transform: translateY(-1px);
}

.scrim-event-item:focus-within,
.scrim-event-item__main:focus-visible {
  outline: 2px solid rgba(142, 230, 173, 0.82);
  outline-offset: -2px;
}

.scrim-event-item__mark {
  position: relative;
  z-index: 1;
}

.pubg-scrim-mark {
  position: relative;
  display: block;
  width: 154px;
  height: 98px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 8px;
  background: #101713;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.26);
}

.pubg-scrim-mark__map {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.08);
  opacity: 0.78;
  transform: scale(1.12);
}

.pubg-scrim-mark__glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 9, 8, 0.2), rgba(6, 9, 8, 0.68)),
    linear-gradient(180deg, transparent, rgba(4, 8, 6, 0.78));
}

.pubg-scrim-mark__label {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: grid;
  gap: 1px;
  max-width: calc(100% - 16px);
}

.pubg-scrim-mark__label small {
  color: rgba(236, 255, 242, 0.72);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.pubg-scrim-mark__label strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.05;
  text-overflow: ellipsis;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
}

.scrim-event-item__body {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 10px;
}

.scrim-event-item__head {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.scrim-event-item__head > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.scrim-event-item__head small {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.scrim-event-item__title {
  color: #f4fff6;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.12;
  text-decoration: none;
  text-shadow: 0 0 18px rgba(var(--map-rgb, 142, 230, 173), 0.14);
}

.scrim-event-item__title:hover {
  color: #ffffff;
}

.scrim-event-item:hover .scrim-event-item__title,
.scrim-event-item:focus-visible .scrim-event-item__title {
  color: #ffffff;
}

.scrim-event-item__meta {
  display: grid;
  grid-template-columns: minmax(150px, 1.1fr) repeat(3, minmax(84px, 0.5fr));
  gap: 8px;
  margin: 0;
}

.scrim-event-item__meta div {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.1);
  border-radius: 7px;
  padding: 8px 9px;
  background: rgba(0, 0, 0, 0.18);
}

.scrim-event-item__meta dt {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.scrim-event-item__meta dd {
  min-width: 0;
  margin: 0;
  color: #f4fff6;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.scrim-event-item__maps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.scrim-event-item__map-empty {
  color: #9bad9f;
  font-size: 12px;
  font-weight: 850;
}

.scrim-event-item__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.scrim-event-item__chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 6px;
  padding: 3px 8px;
  color: #cfe0d3;
  background:
    linear-gradient(135deg, rgba(var(--map-rgb, 142, 230, 173), 0.1), transparent),
    rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(var(--map-rgb, 142, 230, 173), 0.18);
}

.pubg-resource-icon {
  width: 18px;
  height: 14px;
  display: inline-block;
  object-fit: contain;
  opacity: 0.86;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(142, 230, 173, 0.35));
}

.stat-card__icon.pubg-inline-asset--natural,
.public-hero__aside-icon.pubg-inline-asset--natural,
.pubg-resource-icon.pubg-inline-asset--natural,
.stats-table__icon.pubg-inline-asset--natural,
.performance-score__icon.pubg-inline-asset--natural,
.match-analyzer__summary-icon.pubg-inline-asset--natural,
.team-card__metric-icon.pubg-inline-asset--natural,
.player-radar-card__stat-icon.pubg-inline-asset--natural {
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 10px rgba(243, 181, 74, 0.18));
}

.scrim-event-item__action {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.scrim-event-item__button,
.scrim-event-item__follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(69, 196, 126, 0.64);
  border-radius: 6px;
  padding: 8px 13px;
  color: #0b120f;
  background: #8ee6ad;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}

body.public .scrim-event-item__button,
body.public .scrim-event-item__follow {
  color: #0b120f;
}

.scrim-event-item__button:hover,
.scrim-event-item__follow:hover {
  background: #ffffff;
  color: #0b120f;
}

.scrim-event-item__follow {
  color: #9cf5b6;
  background: rgba(142, 230, 173, 0.055);
  cursor: pointer;
}

.scrim-event-item__follow.is-saved {
  color: #0b120f;
  background: #f4b73f;
  border-color: rgba(244, 183, 63, 0.86);
}

.scrim-event-item:hover .scrim-event-item__button,
.scrim-event-item:focus-visible .scrim-event-item__button {
  background: #ffffff;
  color: #0b120f;
}

.stats-table-block {
  overflow: hidden;
}

.stats-table-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 14px 8px;
}

.stats-table-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
}

.stats-table-scroll {
  width: 100%;
  overflow-x: auto;
}

body.public table.stats-table {
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
}

body.public .stats-table th,
body.public .stats-table td {
  border-color: rgba(142, 230, 173, 0.13);
  border-right: 1px solid rgba(142, 230, 173, 0.12);
  color: #f2fff6;
  padding: 12px 10px;
  text-align: center;
  text-shadow: 0 0 10px rgba(142, 230, 173, 0.08);
  vertical-align: middle;
  white-space: nowrap;
}

body.public .stats-table td {
  font-size: 14px;
  font-weight: 850;
}

body.public .stats-table td[data-column="team"],
body.public .stats-table td[data-column="player"] {
  min-width: 126px;
  padding-inline: 8px;
}

body.public .stats-table td[data-column="kills"],
body.public .stats-table td[data-column="assists"],
body.public .stats-table td[data-column="knocks"],
body.public .stats-table td[data-column="kill-streaks"],
body.public .stats-table td[data-column="road-kills"],
body.public .stats-table td[data-column="team-kills"],
body.public .stats-table td[data-column="weapons"],
body.public .stats-table td[data-column="placement-pts"],
body.public .stats-table td[data-column="kill-pts"],
body.public .stats-table td[data-column="points"],
body.public .stats-table td[data-column="damage"],
body.public .stats-table td[data-column="taken"],
body.public .stats-table td[data-column="damage-taken"] {
  font-size: 15px;
  font-weight: 950;
}

body.public .stats-table th:last-child,
body.public .stats-table td:last-child {
  border-right-width: 0;
}

body.public .stats-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  border-bottom: 1px solid rgba(142, 230, 173, 0.22);
  background: linear-gradient(180deg, rgba(34, 52, 43, 0.98), rgba(23, 31, 27, 0.98));
  color: #b9ffc9;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 0 12px rgba(142, 230, 173, 0.22);
  text-transform: uppercase;
}

.stats-table__heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}

.stats-table__icon {
  width: 18px;
  height: 16px;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: 0.95;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 6px rgba(142, 230, 173, 0.28));
}

body.public .stats-table tbody tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.018);
}

body.public .stats-table tbody tr:nth-child(even) td {
  background: rgba(69, 196, 126, 0.055);
}

body.public .stats-table tbody tr:hover td {
  background: rgba(142, 230, 173, 0.13);
  color: #ffffff;
  text-shadow: 0 0 14px rgba(142, 230, 173, 0.18);
}

.leaderboard-team-dropdown {
  position: relative;
  width: 188px;
  max-width: 100%;
}

.leaderboard-team-dropdown summary {
  display: inline-flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 30px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 6px;
  padding: 5px 10px;
  color: #e9fff0;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  list-style: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leaderboard-team-dropdown summary::-webkit-details-marker {
  display: none;
}

.leaderboard-team-dropdown summary::after {
  width: 0;
  height: 0;
  flex: 0 0 auto;
  border-top: 5px solid #b9ffc9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  opacity: 0.82;
}

.leaderboard-team-dropdown[open] summary {
  border-color: rgba(216, 255, 118, 0.5);
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
}

.leaderboard-team-dropdown[open] summary::after {
  border-top: 0;
  border-bottom: 5px solid #d8ff76;
}

.leaderboard-team-dropdown summary:focus-visible {
  outline: 2px solid rgba(216, 255, 118, 0.48);
  outline-offset: 2px;
}

.leaderboard-team-dropdown > div {
  display: grid;
  gap: 6px;
  width: 100%;
  max-height: 176px;
  overflow: auto;
  margin-top: 7px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 7px;
  padding: 8px;
  background: rgba(5, 9, 7, 0.96);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.leaderboard-team-dropdown > div span {
  display: block;
  width: 100%;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 5px;
  padding: 6px 8px;
  color: #dcefe2;
  background: rgba(142, 230, 173, 0.045);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  white-space: normal;
}

.public-status,
.team-tag,
.public-rank,
.strong-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 13px;
  font-weight: 1000;
}

.public-status {
  background: rgba(255, 255, 255, 0.08);
  color: #dceadf;
}

.public-status--completed,
.public-status--verified {
  background: rgba(69, 196, 126, 0.18);
  color: #a7f0bd;
}

.public-status--live {
  background: rgba(224, 105, 94, 0.2);
  color: #ffb2aa;
}

.public-status--upcoming {
  background: rgba(243, 181, 74, 0.18);
  color: #ffd27d;
}

.team-tag {
  background: rgba(243, 181, 74, 0.18);
  color: #ffe39a;
  text-shadow: 0 0 10px rgba(243, 181, 74, 0.2);
}

[data-team-accent="0"] { --team-color: #8ee6ad; --team-rgb: 142, 230, 173; }
[data-team-accent="1"] { --team-color: #f4c46f; --team-rgb: 244, 196, 111; }
[data-team-accent="2"] { --team-color: #71d6ff; --team-rgb: 113, 214, 255; }
[data-team-accent="3"] { --team-color: #f08bd3; --team-rgb: 240, 139, 211; }
[data-team-accent="4"] { --team-color: #b18cff; --team-rgb: 177, 140, 255; }
[data-team-accent="5"] { --team-color: #69e06f; --team-rgb: 105, 224, 111; }
[data-team-accent="6"] { --team-color: #ff9f5f; --team-rgb: 255, 159, 95; }
[data-team-accent="7"] { --team-color: #9fb1ff; --team-rgb: 159, 177, 255; }
[data-team-accent="8"] { --team-color: #d7ef73; --team-rgb: 215, 239, 115; }
[data-team-accent="9"] { --team-color: #63d4c7; --team-rgb: 99, 212, 199; }
[data-team-accent="10"] { --team-color: #ff7f8f; --team-rgb: 255, 127, 143; }
[data-team-accent="11"] { --team-color: #c8d1cc; --team-rgb: 200, 209, 204; }

.public-team-identity,
.public-player-identity {
  --team-color: #8ee6ad;
  --team-rgb: 142, 230, 173;
  display: inline-flex;
  max-width: 100%;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(var(--team-rgb), 0.28);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--team-color);
  background:
    linear-gradient(135deg, rgba(var(--team-rgb), 0.16), rgba(var(--team-rgb), 0.055)),
    rgba(0, 0, 0, 0.22);
  font-size: 14px;
  font-weight: 1000;
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 14px rgba(var(--team-rgb), 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 0 18px rgba(var(--team-rgb), 0.08);
}

.public-team-identity--link:hover,
.public-player-identity--link:hover {
  border-color: rgba(var(--team-rgb), 0.54);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.public-team-identity__mark {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--team-color);
  box-shadow: 0 0 12px rgba(var(--team-rgb), 0.64);
}

.public-team-identity__name,
.public-player-identity__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.public-player-identity__avatar {
  display: inline-flex;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #07100b;
  background: var(--team-color);
  font-size: 10px;
  font-weight: 1000;
  text-shadow: none;
  box-shadow: 0 0 15px rgba(var(--team-rgb), 0.36);
}

.public-rank {
  background: rgba(255, 255, 255, 0.08);
  color: #dceadf;
}

.public-rank--top-1 {
  background: rgba(243, 181, 74, 0.25);
  color: #ffe09b;
}

.public-rank--top-2 {
  background: rgba(180, 198, 187, 0.22);
  color: #edf5ef;
}

.public-rank--top-3 {
  background: rgba(224, 105, 94, 0.22);
  color: #ffb2aa;
}

.strong-number {
  color: #effff4;
  background: rgba(69, 196, 126, 0.22);
  text-shadow: 0 0 10px rgba(142, 230, 173, 0.26);
}

.performance-score,
.score-chip {
  display: inline-flex;
  min-width: 44px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 1000;
}

.performance-score {
  gap: 5px;
  border: 1px solid rgba(243, 181, 74, 0.55);
  background: rgba(243, 181, 74, 0.2);
  color: #ffdf8a;
  text-shadow: 0 0 12px rgba(243, 181, 74, 0.28);
}

.performance-score__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(243, 181, 74, 0.32));
}

.score-chip {
  background: rgba(142, 230, 173, 0.1);
  color: #d9ffe2;
  text-shadow: 0 0 10px rgba(142, 230, 173, 0.16);
}

.public-inline-link {
  color: #9dffbd;
  font-weight: 900;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(142, 230, 173, 0.22);
}

.public-inline-link:hover {
  text-decoration: underline;
}

.public-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(69, 196, 126, 0.7);
  border-radius: 6px;
  padding: 8px 12px;
  background: rgba(69, 196, 126, 0.16);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.public-button:disabled,
.public-button[aria-disabled="true"] {
  border-color: rgba(142, 230, 173, 0.18);
  background: rgba(142, 230, 173, 0.05);
  color: rgba(244, 255, 247, 0.48);
  box-shadow: none;
  text-shadow: none;
}

.public-button--ghost {
  border-color: rgba(216, 255, 118, 0.28);
  background: rgba(216, 255, 118, 0.06);
}

.is-server-action-busy,
.is-server-action-busy * {
  cursor: progress !important;
}

button.is-server-action-busy,
a.is-server-action-busy,
.is-server-action-busy button[type="submit"],
.is-server-action-busy button:not([type]),
.is-server-action-busy input[type="submit"] {
  opacity: 0.68;
}

a.is-server-action-busy,
a[aria-disabled="true"].is-server-action-busy {
  pointer-events: none;
}

.auth-notice {
  margin: 0 0 14px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  padding: 11px 13px;
  background: rgba(14, 18, 16, 0.94);
  color: #e9fff0;
  font-weight: 850;
}

.auth-notice--error {
  border-color: rgba(255, 99, 99, 0.4);
  background: rgba(105, 30, 30, 0.28);
}

.auth-notice--success {
  border-color: rgba(142, 230, 173, 0.36);
  background: rgba(69, 196, 126, 0.12);
}

.has-modal-open {
  overflow: hidden;
}

.external-data-consent-dialog {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 35%, rgba(142, 230, 173, 0.14), transparent 32%),
    rgba(2, 5, 4, 0.76);
  backdrop-filter: blur(8px);
}

.external-data-consent-dialog__panel {
  display: grid;
  width: min(520px, 100%);
  gap: 12px;
  border: 1px solid rgba(216, 255, 118, 0.28);
  border-radius: 10px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.11), transparent 62%),
    rgba(8, 13, 10, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.external-data-consent-dialog__panel > span,
.auth-data-consent-card span {
  color: #a9b8ac;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.external-data-consent-dialog__panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
}

.external-data-consent-dialog__panel p,
.external-data-consent-dialog__panel li {
  margin: 0;
  color: #c7d4c9;
  font-weight: 750;
  line-height: 1.45;
}

.external-data-consent-dialog__panel ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.external-data-consent-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.external-data-consent-dialog__panel a {
  color: #8ee6ad;
  font-weight: 950;
  text-decoration: none;
}

.auth-page {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100vh - 150px));
  place-items: center;
  padding: clamp(22px, 6vw, 58px) 0 28px;
  isolation: isolate;
}

.auth-page::before {
  content: "";
  position: absolute;
  inset: -18% -12%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 16%, rgba(69, 196, 126, 0.14), transparent 28%),
    radial-gradient(circle at 52% 92%, rgba(216, 255, 118, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(7, 11, 9, 0.28), rgba(7, 11, 9, 0.92));
  opacity: 0.96;
  pointer-events: none;
}

.auth-card--primary {
  width: min(100%, 462px);
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
  background:
    radial-gradient(circle at 50% -8%, rgba(142, 230, 173, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(31, 44, 36, 0.88), rgba(10, 14, 12, 0.96) 48%, rgba(12, 16, 14, 0.94)),
    rgba(14, 18, 16, 0.96);
  border-color: rgba(142, 230, 173, 0.22);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  backdrop-filter: blur(18px);
}

.auth-card__brand {
  display: flex;
  justify-content: center;
  margin: 0 0 2px;
}

.auth-card__brand .scrima-brand-logo {
  width: 190px;
  height: 58px;
}

.auth-card__head {
  display: grid;
  gap: 5px;
  text-align: center;
}

.auth-card__head span {
  color: #d8ff76;
}

.auth-card__head h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 0.98;
}

.auth-card__head p {
  color: #b9c8bc;
  font-size: 15px;
}

.auth-card--primary .auth-notice {
  margin: 0;
}

.auth-mode-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 4px;
  background: rgba(7, 11, 9, 0.72);
}

.auth-mode-toggle button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #9daf9f;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.auth-mode-toggle button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.auth-mode-toggle button:focus-visible,
.auth-switch-copy button:focus-visible,
.auth-form__meta a:focus-visible,
.auth-discord-link:focus-visible,
.auth-oauth-button:focus-visible,
.auth-password-toggle:focus-visible,
.auth-secondary-submit:focus-visible,
.auth-public-note a:focus-visible {
  outline: 2px solid rgba(142, 230, 173, 0.78);
  outline-offset: 2px;
}

.auth-mode-toggle button[aria-selected="true"] {
  color: #ffffff;
  background: rgba(69, 196, 126, 0.18);
  box-shadow: 0 0 0 1px rgba(142, 230, 173, 0.2) inset;
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-form.is-busy {
  opacity: 0.74;
}

.auth-form[hidden] {
  display: none;
}

.auth-page[data-auth-mode="confirm"] .auth-mode-toggle,
.auth-page[data-auth-mode="confirm"] .auth-oauth-actions {
  display: none;
}

.auth-card--primary label {
  gap: 7px;
}

.auth-card--primary input {
  min-height: 46px;
  background: rgba(5, 8, 7, 0.76);
}

.auth-card--primary input::placeholder {
  color: rgba(185, 200, 188, 0.52);
}

.auth-password-field {
  position: relative;
  display: flex;
  align-items: stretch;
}

.auth-password-field input {
  padding-right: 72px;
}

.auth-password-toggle {
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  min-width: 54px;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 5px;
  background: rgba(142, 230, 173, 0.08);
  color: #d8ff76;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.auth-password-toggle:hover {
  background: rgba(142, 230, 173, 0.16);
  color: #ffffff;
}

.auth-form__meta {
  display: flex;
  justify-content: flex-end;
  min-height: 18px;
}

.auth-form__meta a,
.auth-terms a,
.auth-public-note a,
.auth-discord-link {
  color: #8ee6ad;
  font-weight: 850;
  text-decoration: none;
}

.auth-form__meta a:hover,
.auth-terms a:hover,
.auth-public-note a:hover,
.auth-discord-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.auth-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
}

.auth-secondary-submit {
  min-height: 42px;
  border: 1px solid rgba(216, 255, 118, 0.26);
  border-radius: 6px;
  background: rgba(216, 255, 118, 0.06);
  color: #d8ff76;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.auth-secondary-submit:hover {
  border-color: rgba(216, 255, 118, 0.5);
  background: rgba(216, 255, 118, 0.12);
  color: #ffffff;
}

.auth-oauth-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.auth-oauth-button {
  display: grid;
  gap: 3px;
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 7px;
  padding: 11px 12px;
  background: rgba(7, 11, 9, 0.72);
  color: #ffffff;
  text-decoration: none;
}

.auth-oauth-button span {
  color: #a7b6aa;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.auth-oauth-button strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-oauth-button:hover {
  transform: translateY(-1px);
  border-color: rgba(142, 230, 173, 0.42);
  background: rgba(142, 230, 173, 0.1);
}

.auth-oauth-button.is-disabled,
.auth-oauth-button.is-disabled:hover {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.auth-oauth-button--discord {
  border-color: rgba(88, 101, 242, 0.34);
}

.auth-oauth-button--steam {
  border-color: rgba(216, 255, 118, 0.28);
}

.auth-step-banner {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(216, 255, 118, 0.22);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.09), transparent 62%),
    rgba(7, 11, 9, 0.72);
}

.auth-step-banner span {
  color: #d8ff76;
}

.auth-step-banner strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

.auth-step-banner small {
  color: #a7b6aa;
  font-weight: 750;
  line-height: 1.45;
}

.auth-switch-copy,
.auth-terms,
.auth-public-note,
.auth-discord-link,
.auth-email-note {
  margin: 0;
  text-align: center;
}

.auth-switch-copy {
  color: #9daf9f;
  font-size: 14px;
}

.auth-switch-copy button {
  border: 0;
  background: transparent;
  color: #d8ff76;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  padding: 0;
}

.auth-page[data-auth-mode="login"] [data-auth-switch-copy]:not([data-auth-switch-copy="login"]),
.auth-page[data-auth-mode="create"] [data-auth-switch-copy]:not([data-auth-switch-copy="create"]),
.auth-page[data-auth-mode="confirm"] [data-auth-switch-copy]:not([data-auth-switch-copy="confirm"]) {
  display: none;
}

.auth-terms {
  color: #8fa093;
  font-size: 12px;
  line-height: 1.4;
}

.auth-discord-link,
.auth-public-note,
.auth-email-note {
  font-size: 12px;
}

.auth-email-note {
  color: #8fa093;
  line-height: 1.4;
}

.auth-signed-in {
  display: grid;
  gap: 14px;
  text-align: center;
}

.auth-signed-in strong {
  color: #ffffff;
  font-size: 22px;
}

@media (max-width: 560px) {
  .auth-mode-toggle,
  .auth-oauth-actions {
    grid-template-columns: 1fr;
  }
}

.auth-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}

.auth-panel--single {
  grid-template-columns: minmax(0, 560px);
}

.auth-card--wide {
  grid-column: span 2;
}

.auth-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 0;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 92% 10%, rgba(216, 255, 118, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(69, 196, 126, 0.08), transparent 62%),
    rgba(14, 18, 16, 0.94);
}

.auth-card--create {
  border-color: rgba(216, 255, 118, 0.16);
  background:
    radial-gradient(circle at 92% 10%, rgba(216, 255, 118, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(216, 255, 118, 0.05), transparent 62%),
    rgba(14, 18, 16, 0.94);
}

.auth-card--discord {
  background:
    radial-gradient(circle at 88% 12%, rgba(88, 101, 242, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(69, 196, 126, 0.06), transparent 62%),
    rgba(14, 18, 16, 0.94);
}

.auth-card span,
.auth-card label span {
  color: #a7b6aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.auth-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.03;
}

.auth-card p {
  margin: 0;
  color: #b7c6ba;
  line-height: 1.45;
}

.auth-card form,
.auth-card label {
  display: grid;
  gap: 7px;
}

.auth-card form {
  align-content: start;
}

.auth-card--wide .auth-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-card--wide .auth-submit {
  align-self: end;
}

.auth-card input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 7px;
  padding: 8px 10px;
  background: rgba(7, 11, 9, 0.72);
  color: #f4fff7;
  font: inherit;
  font-weight: 800;
}

.auth-card input:focus {
  outline: none;
  border-color: rgba(142, 230, 173, 0.72);
  box-shadow: 0 0 0 3px rgba(142, 230, 173, 0.12);
}

.auth-upload-hint {
  display: block;
  margin-top: -4px;
  color: rgba(221, 238, 226, 0.62);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.auth-upload-hint:empty {
  display: none;
}

.auth-upload-hint[data-state="busy"] {
  color: #d8ff76;
}

.auth-upload-hint[data-state="ok"] {
  color: #8ee6ad;
}

.auth-upload-hint[data-state="error"] {
  color: #ff8b6b;
}

.auth-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.auth-card__stats {
  display: grid;
  gap: 8px;
  margin: 0;
}

.auth-card__stats div {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.035);
}

.auth-card__stats dt {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.auth-card__stats dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-weight: 950;
  word-break: break-word;
}

.auth-identity-link,
.auth-identity-row a {
  color: #8ee6ad;
  font-weight: 950;
  text-decoration: none;
}

.auth-identity-link:hover,
.auth-identity-row a:hover {
  color: #ffffff;
}

.auth-identity-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.auth-identity-row {
  display: grid;
  min-width: 0;
  gap: 5px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 70%),
    rgba(5, 8, 7, 0.34);
}

.auth-identity-row.is-linked {
  border-color: rgba(142, 230, 173, 0.3);
  background:
    radial-gradient(circle at 92% 8%, rgba(142, 230, 173, 0.16), transparent 30%),
    rgba(69, 196, 126, 0.075);
}

.auth-identity-row.is-locked {
  border-color: rgba(216, 255, 118, 0.34);
  background:
    radial-gradient(circle at 92% 8%, rgba(216, 255, 118, 0.18), transparent 30%),
    rgba(216, 255, 118, 0.07);
}

.auth-identity-row strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-identity-row small {
  color: #9daf9f;
  font-weight: 850;
}

.auth-identity-row__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.auth-unlink-form {
  margin: 0;
}

.auth-text-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: #ffb6b6;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.auth-text-button:hover {
  color: #ffffff;
}

.auth-data-consent-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(216, 255, 118, 0.24);
  border-radius: 8px;
  margin-top: 12px;
  padding: 12px;
  background:
    radial-gradient(circle at 95% 10%, rgba(216, 255, 118, 0.14), transparent 34%),
    rgba(216, 255, 118, 0.055);
}

.auth-data-consent-card strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.auth-data-consent-card small {
  display: block;
  margin-top: 4px;
  color: #b8c8bb;
  font-weight: 750;
  line-height: 1.35;
}

.auth-consent-check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 10px;
  background: rgba(4, 8, 6, 0.56);
}

.auth-consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #8ee6ad;
  flex: 0 0 auto;
}

.auth-consent-check span {
  color: #c7d4c9;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
}

.auth-form .auth-consent-check {
  grid-column: 1 / -1;
}

.auth-profile-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.auth-profile-avatar {
  display: grid;
  width: 96px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 18%, rgba(216, 255, 118, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.12), rgba(7, 11, 9, 0.92));
  box-shadow: inset 0 0 34px rgba(142, 230, 173, 0.08);
}

.auth-profile-avatar img,
.auth-team-logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-profile-avatar strong,
.auth-team-logo-preview strong {
  color: #d8ff76;
  font-size: 30px;
  font-weight: 950;
}

.auth-profile-upload {
  min-width: 0;
}

.crate-season-profile {
  gap: 14px;
}

.crate-season-profile__head {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.crate-season-profile__head img {
  width: 62px;
  aspect-ratio: 1;
  object-fit: contain;
  opacity: 0.42;
  filter: grayscale(0.3) drop-shadow(0 12px 18px rgba(0, 0, 0, 0.4));
}

.crate-season-profile__head img.is-earned {
  opacity: 1;
  filter: drop-shadow(0 0 22px rgba(216, 255, 118, 0.32));
}

.crate-season-profile__title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

.crate-season-profile__head strong {
  color: #f6fff4;
  font-size: 24px;
  line-height: 1;
}

.crate-season-profile__title-row em {
  padding: 4px 7px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 999px;
  color: rgba(221, 238, 226, 0.6);
  font-size: 9px;
  font-style: normal;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.crate-season-profile__title-row em.is-earned {
  border-color: rgba(216, 255, 118, 0.42);
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
  box-shadow: 0 0 18px rgba(216, 255, 118, 0.08);
}

.crate-season-profile__head small {
  display: block;
  margin-top: 5px;
  color: rgba(221, 238, 226, 0.66);
  font-weight: 850;
}

.crate-season-profile__emblem-note {
  color: rgba(216, 255, 118, 0.72) !important;
}

.crate-season-profile > i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
}

.crate-season-profile > i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ee6ad, #d8ff76);
}

.crate-season-profile__maps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.crate-season-profile__summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 8px;
}

.crate-season-profile__summary span {
  display: grid;
  gap: 3px;
  padding: 9px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), transparent 58%),
    rgba(5, 8, 7, 0.46);
}

.crate-season-profile__summary b {
  color: #f6fff4;
  font-size: 19px;
  line-height: 1;
}

.crate-season-profile__summary small {
  color: rgba(221, 238, 226, 0.58);
  font-size: 9px;
  font-weight: 1000;
  text-transform: uppercase;
}

.crate-season-profile__map {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 9px;
  text-decoration: none;
  background: rgba(5, 8, 7, 0.42);
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.crate-season-profile__map:hover {
  border-color: rgba(142, 230, 173, 0.34);
  background: rgba(12, 22, 15, 0.62);
  transform: translateY(-1px);
}

.crate-season-profile__map.is-cleared {
  border-color: rgba(216, 255, 118, 0.42);
  background: rgba(216, 255, 118, 0.08);
}

.crate-season-profile__map b {
  color: #f6fff4;
  font-size: 13px;
}

.crate-season-profile__map strong {
  color: #d8ff76;
  font-size: 12px;
  line-height: 1;
}

.crate-season-profile__map > em {
  justify-self: start;
  padding: 3px 6px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 999px;
  color: rgba(221, 238, 226, 0.58);
  font-size: 8px;
  font-style: normal;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.crate-season-profile__map.is-cleared > em {
  border-color: rgba(216, 255, 118, 0.4);
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
}

.crate-season-profile__map i {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
}

.crate-season-profile__map i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ee6ad, #d8ff76);
}

.crate-season-profile__map small {
  color: rgba(221, 238, 226, 0.62);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.crate-season-profile__achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 8px;
}

.crate-achievement {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 4px 8px;
  align-items: center;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  background: rgba(5, 8, 7, 0.34);
  color: inherit;
  opacity: 0.62;
  text-decoration: none;
  transition: border-color 160ms ease, opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.crate-achievement:hover,
.crate-achievement:focus-visible {
  border-color: rgba(142, 230, 173, 0.34);
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 58%),
    rgba(5, 8, 7, 0.48);
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

.crate-achievement b {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 7px;
  color: rgba(221, 238, 226, 0.64);
  font-size: 9px;
  font-weight: 1000;
}

.crate-achievement strong {
  color: #f6fff4;
  font-size: 12px;
  line-height: 1.1;
  min-width: 0;
}

.crate-achievement em {
  justify-self: end;
  align-self: start;
  padding: 3px 6px;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 999px;
  color: rgba(221, 238, 226, 0.5);
  font-size: 8px;
  font-style: normal;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.crate-achievement small {
  grid-column: 2 / -1;
  color: rgba(221, 238, 226, 0.56);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.25;
}

.crate-achievement time {
  grid-column: 2 / -1;
  color: rgba(142, 230, 173, 0.66);
  font-size: 8px;
  font-weight: 1000;
  line-height: 1.1;
  text-transform: uppercase;
}

.crate-achievement.is-earned {
  border-color: rgba(216, 255, 118, 0.42);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.1), transparent 56%),
    rgba(5, 8, 7, 0.48);
  opacity: 1;
}

.crate-achievement.is-earned b {
  border-color: rgba(216, 255, 118, 0.46);
  color: #d8ff76;
  box-shadow: 0 0 18px rgba(216, 255, 118, 0.12);
}

.crate-achievement.is-earned em {
  border-color: rgba(216, 255, 118, 0.34);
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
}

.crate-achievement.is-locked b {
  background: rgba(0, 0, 0, 0.22);
}

.auth-card--team-branding {
  grid-column: 1 / -1;
}

.auth-team-branding-list {
  display: grid;
  gap: 10px;
}

.auth-team-branding-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.auth-team-branding-toolbar span {
  color: #b8c8bb;
  font-weight: 850;
}

.auth-team-branding-row {
  display: grid;
  grid-template-columns: 76px minmax(150px, 1.15fr) minmax(150px, 1fr) minmax(88px, 0.55fr) minmax(160px, 0.8fr) auto;
  gap: 10px;
  align-items: end;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.06), transparent 68%),
    rgba(5, 8, 7, 0.42);
}

.auth-team-logo-preview {
  display: grid;
  width: 76px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  align-self: stretch;
  border: 1px solid rgba(216, 255, 118, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 18%, rgba(216, 255, 118, 0.18), transparent 34%),
    rgba(7, 11, 9, 0.84);
}

.auth-team-logo-preview strong {
  font-size: 22px;
}

.auth-team-branding-copy {
  display: grid;
  gap: 4px;
  align-self: center;
  min-width: 0;
}

.auth-team-branding-copy strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-team-branding-copy small {
  overflow: hidden;
  color: #a9b8ac;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-team-branding-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  align-self: end;
}

.auth-team-empty {
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.auth-team-empty strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.competition-section,
.competition-top-five,
.competition-previous {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

.competition-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
}

.competition-section__head span {
  color: #a7b6aa;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.competition-section__head strong {
  border: 1px solid rgba(216, 255, 118, 0.28);
  border-radius: 7px;
  padding: 6px 9px;
  background: rgba(216, 255, 118, 0.08);
  color: #d8ff76;
  font-size: 12px;
  font-weight: 950;
}

.competition-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.competition-card,
.competition-empty,
.competition-notice,
.competition-player-slide,
.competition-podium-card,
.competition-previous-card {
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 8%, rgba(216, 255, 118, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(69, 196, 126, 0.08), transparent 62%),
    rgba(12, 16, 14, 0.94);
}

.competition-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.competition-card:hover {
  border-color: rgba(216, 255, 118, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26), 0 0 26px rgba(142, 230, 173, 0.08);
}

.competition-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.competition-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.02;
}

.competition-card p,
.competition-empty p,
.competition-notice span {
  margin: 0;
  color: #b7c6ba;
  line-height: 1.42;
}

.competition-card dl {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
}

.competition-card dl div,
.competition-join-panel > div,
.competition-user-summary > div,
.competition-mini-stats > div {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.035);
}

.competition-card dt,
.competition-card dd,
.competition-join-panel span,
.competition-user-summary span,
.competition-mini-stats span,
.competition-previous-card span {
  margin: 0;
}

.competition-card dt,
.competition-join-panel span,
.competition-user-summary span,
.competition-mini-stats span,
.competition-previous-card span {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.competition-card dd,
.competition-join-panel strong,
.competition-user-summary strong,
.competition-mini-stats strong {
  color: #ffffff;
  font-weight: 950;
}

.competition-status,
.competition-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(142, 230, 173, 0.08);
  color: #8ee6ad;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.competition-status--signup_open,
.competition-status--live {
  border-color: rgba(216, 255, 118, 0.42);
  background: rgba(216, 255, 118, 0.1);
  color: #d8ff76;
}

.competition-status--finished {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  color: #d5ded7;
}

.competition-pill {
  border-color: rgba(110, 182, 255, 0.32);
  background: rgba(110, 182, 255, 0.08);
  color: #9fd0ff;
}

.competition-empty,
.competition-notice {
  padding: 16px;
}

.competition-empty strong,
.competition-notice strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
}

.competition-join-panel,
.competition-user-summary {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr 1fr auto;
  gap: 10px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: rgba(12, 16, 14, 0.9);
}

.competition-user-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.competition-user-summary p {
  grid-column: 1 / -1;
  margin: 0;
  color: #b7c6ba;
  font-weight: 850;
}

.competition-user-summary strong {
  display: block;
  margin-top: 3px;
  font-size: 25px;
}

.competition-user-summary small {
  margin-left: 3px;
  color: #d8ff76;
  font-size: 11px;
}

.competition-join-panel__action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: transparent !important;
  border-color: transparent !important;
  padding: 0 !important;
}

.competition-slider {
  display: grid;
  grid-auto-columns: minmax(300px, 430px);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 0 0 8px;
  scroll-snap-type: x proximity;
}

.competition-player-slide {
  display: grid;
  gap: 12px;
  min-height: 520px;
  padding: 14px;
  scroll-snap-align: start;
  box-shadow: inset 0 0 52px color-mix(in srgb, var(--player-accent, #8ee6ad) 8%, transparent);
}

.competition-player-slide__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.competition-player-slide__head > span {
  border: 1px solid color-mix(in srgb, var(--player-accent, #8ee6ad) 58%, transparent);
  border-radius: 7px;
  padding: 5px 7px;
  color: var(--player-accent, #8ee6ad);
  font-weight: 950;
}

.competition-player-slide h2 {
  overflow: hidden;
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.02;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.competition-player-slide .player-radar-chart {
  width: min(100%, 300px);
  justify-self: center;
}

.competition-player-slide__score {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.competition-player-slide__score strong {
  color: #ffffff;
  font-size: 52px;
  font-weight: 950;
  line-height: 0.9;
}

.competition-player-slide__score span {
  color: #d8ff76;
  font-weight: 950;
  text-transform: uppercase;
}

.competition-mini-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.competition-podium {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.85fr;
  gap: 12px;
  align-items: end;
  margin: 0 0 16px;
}

.competition-podium-card {
  display: grid;
  gap: 7px;
  min-height: 128px;
  padding: 16px;
  text-align: center;
}

.competition-podium-card--rank-1 {
  min-height: 160px;
  border-color: rgba(216, 255, 118, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 255, 118, 0.16), transparent 42%),
    rgba(12, 16, 14, 0.95);
}

.competition-podium-card span {
  color: #d8ff76;
  font-weight: 950;
}

.competition-podium-card strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
}

.competition-podium-card b {
  color: #8ee6ad;
  font-size: 18px;
}

.competition-stars {
  display: inline-flex;
  gap: 1px;
  align-items: center;
  color: #d8ff76;
  font-size: 13px;
  font-weight: 950;
  text-shadow: 0 0 12px rgba(216, 255, 118, 0.22);
}

.competition-stars b {
  color: #ffffff;
  font-size: 10px;
}

.competition-previous-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.competition-previous-card strong {
  display: block;
  color: #ffffff;
  font-size: 21px;
  font-weight: 950;
}

.competition-previous-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.competition-previous-list a {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-decoration: none;
}

.competition-previous-list b {
  color: #d8ff76;
}

.competition-previous-list span {
  overflow: hidden;
  color: #ffffff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.competition-previous-list em {
  color: #8ee6ad;
  font-style: normal;
  font-weight: 950;
}

.auth-secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.auth-secondary-links a {
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 999px;
  padding: 7px 10px;
  color: #d8ff76;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
}

.auth-secondary-links a:hover {
  border-color: rgba(142, 230, 173, 0.36);
  color: #ffffff;
}

.discord-bot-promo {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 18px;
  align-items: center;
  overflow: hidden;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  padding: 18px;
  background:
    radial-gradient(circle at 10% 20%, rgba(88, 101, 242, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(88, 101, 242, 0.12), transparent 42%, rgba(243, 181, 74, 0.08)),
    rgba(18, 22, 20, 0.94);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.discord-bot-promo--compact {
  grid-template-columns: 118px minmax(0, 1fr) minmax(220px, 0.56fr);
  padding: 14px;
}

.discord-bot-promo--product {
  grid-template-columns: 170px minmax(0, 1fr) minmax(300px, 0.64fr);
}

.discord-bot-promo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 68px),
    linear-gradient(90deg, transparent, rgba(142, 230, 173, 0.05), transparent);
  content: "";
}

.discord-bot-promo > * {
  position: relative;
  z-index: 1;
}

.discord-bot-promo__mark {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  align-content: center;
  gap: 5px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(190, 255, 215, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(45, 118, 75, 0.46), rgba(88, 101, 242, 0.18)),
    rgba(9, 12, 18, 0.92);
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 42px rgba(69, 196, 126, 0.14);
}

.discord-bot-promo--compact .discord-bot-promo__mark {
  width: 98px;
  height: 98px;
}

.discord-bot-promo__mark span {
  color: rgba(230, 255, 238, 0.78);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.discord-bot-promo__mark img {
  display: block;
  width: min(86%, 102px);
  height: min(86%, 102px);
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(142, 230, 173, 0.3))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.38));
}

.discord-bot-promo__body {
  min-width: 0;
}

.discord-bot-promo__body h2 {
  margin: 2px 0 8px;
  color: #ffffff;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.02;
}

.discord-bot-promo--compact .discord-bot-promo__body h2 {
  font-size: clamp(22px, 2.1vw, 32px);
}

.discord-bot-promo__body p {
  max-width: 760px;
  margin: 0;
  color: #bdd0c2;
  font-size: 14px;
  line-height: 1.55;
}

.discord-bot-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.discord-bot-promo__cta {
  border-color: rgba(88, 101, 242, 0.64);
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.38), rgba(69, 196, 126, 0.22)),
    rgba(88, 101, 242, 0.16);
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.16);
}

.discord-bot-promo__cta:hover {
  border-color: rgba(142, 230, 173, 0.74);
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.52), rgba(69, 196, 126, 0.32)),
    rgba(88, 101, 242, 0.18);
}

.discord-bot-promo__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.discord-bot-promo__stats div {
  display: grid;
  gap: 5px;
  min-height: 82px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 10px;
  background: rgba(9, 13, 11, 0.42);
}

.discord-bot-promo__stats dt {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.discord-bot-promo__stats dd {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.discord-bot-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.discord-bot-flow article {
  position: relative;
  overflow: hidden;
  min-height: 158px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 58%),
    rgba(21, 25, 23, 0.94);
}

.discord-bot-flow article::after {
  position: absolute;
  right: -28px;
  bottom: -34px;
  color: rgba(142, 230, 173, 0.08);
  font-size: 118px;
  font-weight: 1000;
  line-height: 1;
  content: attr(data-step);
}

.discord-bot-flow span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(88, 101, 242, 0.34);
  border-radius: 6px;
  padding: 4px 8px;
  color: #dfe4ff;
  background: rgba(88, 101, 242, 0.12);
  font-size: 12px;
  font-weight: 950;
}

.discord-bot-flow h2 {
  margin: 14px 0 8px;
  color: #ffffff;
  font-size: 20px;
}

.discord-bot-flow p {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.5;
}

.discord-bot-state-machine {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 55%),
    rgba(18, 22, 20, 0.94);
}

.discord-bot-state-machine__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.discord-bot-state-machine__head h2 {
  margin: 3px 0 8px;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.04;
}

.discord-bot-state-machine__head p {
  max-width: 820px;
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.55;
}

.discord-bot-state-machine__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.discord-bot-state-machine__list article {
  display: grid;
  grid-template-columns: minmax(92px, 0.34fr) minmax(0, 0.66fr);
  gap: 6px 10px;
  align-items: start;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 11px;
  background: rgba(9, 13, 11, 0.46);
}

.discord-bot-state-machine__list span {
  color: #d8ff76;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.discord-bot-state-machine__list code {
  justify-self: start;
  border: 1px solid rgba(88, 101, 242, 0.38);
  border-radius: 6px;
  padding: 4px 7px;
  color: #dfe4ff;
  background: rgba(88, 101, 242, 0.13);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.discord-bot-state-machine__list p,
.discord-bot-state-machine__list small {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.discord-bot-state-machine__list p {
  color: #e6f8ec;
}

.discord-bot-state-machine__list small {
  color: #aebdb2;
}

.discord-bot-blueprint {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(88, 101, 242, 0.2);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 90% 12%, rgba(88, 101, 242, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.06), transparent 58%),
    rgba(17, 20, 22, 0.95);
}

.discord-bot-blueprint__head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 14px;
  align-items: end;
}

.discord-bot-blueprint__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.04;
}

.discord-bot-blueprint__head p {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.55;
}

.discord-bot-blueprint__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(220px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.discord-bot-blueprint__grid article {
  display: grid;
  gap: 10px;
  min-height: 260px;
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 12px;
  background: rgba(9, 13, 11, 0.56);
}

.discord-bot-blueprint__grid span {
  color: #d8ff76;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.discord-bot-blueprint__grid code {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(88, 101, 242, 0.42);
  border-radius: 6px;
  padding: 5px 7px;
  color: #dfe4ff;
  background: rgba(88, 101, 242, 0.13);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.discord-bot-blueprint__grid dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.discord-bot-blueprint__grid div {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(142, 230, 173, 0.1);
  padding-top: 8px;
}

.discord-bot-blueprint__grid dt {
  color: #8ee6ad;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.discord-bot-blueprint__grid dd {
  margin: 0;
  color: #c9d7cd;
  font-size: 12px;
  line-height: 1.45;
}

.discord-bot-command-center,
.discord-bot-embed-section,
.discord-bot-automation-grid {
  margin: 0 0 16px;
}

.discord-bot-command-center,
.discord-bot-embed-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.1), transparent 52%),
    rgba(18, 22, 20, 0.94);
}

.discord-bot-command-center__intro h2,
.discord-bot-embed-section h2 {
  margin: 3px 0 8px;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.04;
}

.discord-bot-command-center__intro p,
.discord-bot-embed-section > div:first-child p {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.55;
}

.discord-bot-command-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.discord-bot-command-grid article {
  display: grid;
  gap: 7px;
  min-height: 96px;
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 12px;
  background: rgba(9, 13, 11, 0.46);
}

.discord-bot-command-grid code {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(88, 101, 242, 0.42);
  border-radius: 6px;
  padding: 5px 7px;
  color: #dfe4ff;
  background: rgba(88, 101, 242, 0.13);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 950;
  white-space: normal;
  overflow-wrap: anywhere;
}

.discord-bot-command-grid p {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.45;
}

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

.discord-bot-embed-card {
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(88, 101, 242, 0.26);
  border-left: 5px solid rgba(88, 101, 242, 0.8);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.14), transparent 62%),
    rgba(13, 16, 22, 0.92);
}

.discord-bot-embed-card span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
}

.discord-bot-embed-card p {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.45;
}

.discord-bot-embed-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.discord-bot-embed-card div {
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 6px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.discord-bot-embed-card dt {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.discord-bot-embed-card dd {
  margin: 2px 0 0;
  color: #8ee6ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.discord-bot-automation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.discord-bot-automation-grid article {
  display: grid;
  gap: 8px;
  min-height: 116px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 62%),
    rgba(18, 22, 20, 0.9);
}

.discord-bot-automation-grid span {
  color: #d8ff76;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.discord-bot-automation-grid p {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.45;
}

.discord-bot-alert-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 0 0 16px;
  border: 1px solid rgba(244, 183, 63, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 183, 63, 0.12), transparent 34%),
    rgba(18, 22, 20, 0.94);
}

.discord-bot-alert-section h2 {
  margin: 3px 0 8px;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.04;
}

.discord-bot-alert-section > div:first-child p {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.55;
}

.discord-bot-alert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.discord-bot-alert-grid article {
  display: grid;
  gap: 7px;
  min-height: 132px;
  align-content: start;
  border: 1px solid rgba(244, 183, 63, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: rgba(244, 183, 63, 0.045);
}

.discord-bot-alert-grid span,
.discord-bot-handoff span {
  color: #f4b73f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.discord-bot-alert-grid strong {
  width: fit-content;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 6px;
  padding: 5px 7px;
  color: #8ee6ad;
  background: rgba(142, 230, 173, 0.07);
  font-size: 12px;
}

.discord-bot-alert-grid p,
.discord-bot-handoff p {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.45;
}

.discord-bot-handoff {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.discord-bot-handoff article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.08), transparent 62%),
    rgba(18, 22, 20, 0.9);
}

.create-lobby-page,
.create-lobby-preview,
.create-lobby-safety {
  margin: 0 0 16px;
}

.create-lobby-page {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 8% 12%, rgba(69, 196, 126, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(88, 101, 242, 0.08), transparent 54%),
    rgba(18, 22, 20, 0.94);
}

.create-lobby-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.create-lobby-page__intro h2 {
  margin: 3px 0 8px;
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.04;
}

.create-lobby-page__intro p {
  max-width: 840px;
  margin: 0;
  color: #b7c6ba;
  line-height: 1.55;
}

.create-lobby-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.create-lobby-draft {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(9, 13, 11, 0.55);
}

.create-lobby-draft.is-gated {
  border-color: rgba(142, 230, 173, 0.1);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 18px),
    rgba(9, 13, 11, 0.36);
  opacity: 0.68;
}

.create-lobby-draft.is-gated :is(input, select, textarea, button) {
  cursor: not-allowed;
}

.create-lobby-draft__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.create-lobby-draft__head h2 {
  margin: 3px 0 7px;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.05;
}

.create-lobby-draft__head p {
  margin: 0;
  color: #b7c6ba;
  font-size: 13px;
  line-height: 1.45;
}

.create-lobby-draft__head > p {
  justify-self: end;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 6px;
  padding: 8px 10px;
  color: #dfffe9;
  background: rgba(142, 230, 173, 0.07);
  font-weight: 850;
}

.create-lobby-wizard-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.create-lobby-wizard-nav button {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 8px;
  align-items: start;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 7px;
  padding: 10px;
  text-align: left;
  color: #dfffe9;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.create-lobby-wizard-nav button[aria-current="step"] {
  border-color: rgba(142, 230, 173, 0.56);
  background: linear-gradient(135deg, rgba(142, 230, 173, 0.18), rgba(244, 183, 63, 0.08));
  box-shadow: inset 0 0 0 1px rgba(142, 230, 173, 0.12);
}

.create-lobby-wizard-nav span {
  grid-row: 1 / 3;
  display: inline-grid;
  width: 30px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(244, 183, 63, 0.25);
  border-radius: 6px;
  color: #ffd37b;
  background: rgba(244, 183, 63, 0.08);
  font-size: 11px;
  font-weight: 950;
}

.create-lobby-wizard-nav b {
  overflow: hidden;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.create-lobby-wizard-nav small {
  color: #aabaae;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.create-lobby-step-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 7px;
  padding: 10px 12px;
  background: rgba(142, 230, 173, 0.055);
}

.create-lobby-step-status strong {
  color: #ffffff;
  font-size: 15px;
}

.create-lobby-step-status span {
  color: #c2d0c5;
  font-size: 13px;
  font-weight: 800;
}

.create-lobby-draft__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.create-lobby-draft label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.create-lobby-draft label span,
.create-lobby-draft__handoff span {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.create-lobby-draft input,
.create-lobby-draft select,
.create-lobby-draft textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 6px;
  padding: 9px 10px;
  color: #f2fff6;
  background: rgba(3, 8, 6, 0.78);
  font: inherit;
}

.create-lobby-draft textarea {
  min-height: 188px;
  resize: vertical;
  color: #dfffe9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.45;
}

.create-lobby-draft__toggles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.create-lobby-draft__toggles label {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 7px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.035);
}

.create-lobby-draft__toggles input {
  width: 16px;
  min-height: 16px;
  accent-color: #8ee6ad;
}

.create-lobby-draft__toggles span {
  color: #e6f8ec;
  font-size: 13px;
  font-weight: 850;
  text-transform: none;
}

.create-lobby-draft__handoff {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 12px;
  align-items: stretch;
}

.create-lobby-draft__handoff > div:first-child,
.create-lobby-draft__runbook {
  display: grid;
  gap: 7px;
}

.create-lobby-command-list {
  display: grid;
  gap: 7px;
  max-height: 370px;
  overflow: auto;
  padding-right: 4px;
}

.create-lobby-command-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 5px 8px;
  align-items: start;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.035);
}

.create-lobby-command-list article > span {
  display: inline-grid;
  width: 28px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(244, 183, 63, 0.26);
  border-radius: 5px;
  color: #ffd37b;
  background: rgba(244, 183, 63, 0.08);
  font-size: 10px;
  font-weight: 950;
}

.create-lobby-command-list b {
  color: #ffffff;
  font-size: 13px;
}

.create-lobby-command-list button {
  min-height: 24px;
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 5px;
  padding: 3px 8px;
  color: #9dffbd;
  background: rgba(142, 230, 173, 0.07);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.create-lobby-command-list code,
.create-lobby-command-list small {
  grid-column: 1 / -1;
}

.create-lobby-command-list code {
  overflow-wrap: anywhere;
  border: 1px solid rgba(88, 101, 242, 0.28);
  border-radius: 6px;
  padding: 6px;
  color: #dfe4ff;
  background: rgba(88, 101, 242, 0.1);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.35;
}

.create-lobby-command-list small {
  color: #c9d7cd;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.create-lobby-command-export {
  display: grid;
  gap: 7px;
}

.create-lobby-command-export textarea {
  min-height: 128px;
  border-color: rgba(88, 101, 242, 0.24);
  color: #dfe4ff;
  background: rgba(88, 101, 242, 0.07);
}

.create-lobby-draft__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.create-lobby-wizard-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid rgba(142, 230, 173, 0.12);
  padding-top: 12px;
}

.create-lobby-wizard-controls span {
  margin-right: auto;
  color: #aabaae;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.create-lobby-wizard-controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.public-inline-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 6px;
  padding: 8px 12px;
  color: #8ee6ad;
  background: rgba(142, 230, 173, 0.06);
  font-weight: 950;
  cursor: pointer;
}

.create-lobby-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.create-lobby-step {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(145deg, rgba(142, 230, 173, 0.08), transparent 62%),
    rgba(9, 13, 11, 0.48);
}

.create-lobby-step::after {
  position: absolute;
  right: -18px;
  bottom: -30px;
  color: rgba(142, 230, 173, 0.06);
  font-size: 104px;
  font-weight: 1000;
  line-height: 1;
  content: attr(data-step);
}

.create-lobby-step > * {
  position: relative;
  z-index: 1;
}

.create-lobby-step header {
  display: grid;
  gap: 10px;
}

.create-lobby-step header > span {
  display: inline-grid;
  width: 34px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(243, 181, 74, 0.42);
  border-radius: 6px;
  color: #ffd37b;
  background: rgba(243, 181, 74, 0.1);
  font-size: 12px;
  font-weight: 950;
}

.create-lobby-step h2 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 18px;
}

.create-lobby-step p {
  margin: 0;
  color: #b7c6ba;
  font-size: 13px;
  line-height: 1.45;
}

.create-lobby-step dl,
.create-lobby-preview__embed dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.create-lobby-step dl div,
.create-lobby-preview__embed dl div {
  display: grid;
  grid-template-columns: minmax(80px, 0.5fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.11);
  border-radius: 6px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.create-lobby-step dt,
.create-lobby-preview__embed dt {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.create-lobby-step dd,
.create-lobby-preview__embed dd {
  margin: 0;
  color: #f2fff6;
  font-size: 13px;
  font-weight: 900;
}

.create-lobby-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
}

.create-lobby-preview__embed,
.create-lobby-preview__timeline {
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.1), transparent 58%),
    rgba(18, 22, 20, 0.94);
}

.create-lobby-preview__embed {
  border-left: 5px solid rgba(88, 101, 242, 0.86);
}

.create-lobby-preview__embed > span,
.create-lobby-preview__timeline > span,
.create-lobby-safety span {
  color: #8ee6ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.create-lobby-preview__embed h2 {
  margin: 8px 0 4px;
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 42px);
  line-height: 1.02;
}

.create-lobby-preview__embed p {
  margin: 0 0 14px;
  color: #b7c6ba;
}

.create-lobby-preview__embed dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.create-lobby-preview__embed dl div {
  grid-template-columns: 1fr;
}

.create-lobby-preview__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.create-lobby-preview__buttons span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.24);
  border-radius: 6px;
  padding: 6px 10px;
  color: #dfffe9;
  background: rgba(142, 230, 173, 0.08);
  font-size: 12px;
  font-weight: 950;
}

.create-lobby-preview__timeline ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.create-lobby-preview__timeline li {
  display: grid;
  grid-template-columns: minmax(96px, 0.32fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.11);
  border-radius: 7px;
  padding: 10px;
  background: rgba(9, 13, 11, 0.42);
}

.create-lobby-preview__timeline b {
  color: #ffd37b;
  font-size: 13px;
  text-transform: uppercase;
}

.create-lobby-preview__timeline small {
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.4;
}

.create-lobby-readiness {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 10% 12%, rgba(216, 255, 118, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.065), transparent 58%),
    rgba(15, 19, 17, 0.94);
}

.create-lobby-readiness__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.create-lobby-readiness__head h2 {
  margin: 3px 0 7px;
  color: #ffffff;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.02;
}

.create-lobby-readiness__head p {
  max-width: 860px;
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.5;
}

.create-lobby-readiness__head strong {
  justify-self: end;
  border: 1px solid rgba(244, 183, 63, 0.25);
  border-radius: 6px;
  padding: 8px 10px;
  color: #ffd37b;
  background: rgba(244, 183, 63, 0.08);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.create-lobby-readiness__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.create-lobby-readiness__grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 11px;
  background: rgba(9, 13, 11, 0.48);
}

.create-lobby-readiness__grid article[data-state="ready"] {
  border-color: rgba(142, 230, 173, 0.26);
  background: rgba(142, 230, 173, 0.055);
}

.create-lobby-readiness__grid article[data-state="attention"] {
  border-color: rgba(244, 183, 63, 0.28);
  background: rgba(244, 183, 63, 0.055);
}

.create-lobby-readiness__grid article[data-state="blocked"] {
  border-color: rgba(255, 92, 117, 0.3);
  background: rgba(255, 92, 117, 0.06);
}

.create-lobby-readiness__grid span {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 8px;
  color: #ffd37b;
  background: rgba(244, 183, 63, 0.1);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.create-lobby-readiness__grid article[data-state="ready"] span {
  color: #9dffbd;
  background: rgba(142, 230, 173, 0.12);
}

.create-lobby-readiness__grid article[data-state="blocked"] span {
  color: #ff9aa8;
  background: rgba(255, 92, 117, 0.12);
}

.create-lobby-readiness__grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.05;
}

.create-lobby-readiness__grid p,
.create-lobby-readiness__grid small {
  margin: 0;
  color: #c9d7cd;
  font-size: 12px;
  line-height: 1.4;
}

.create-lobby-readiness__grid small {
  color: #a8b9ad;
  font-weight: 800;
}

.zero-admin-pipeline {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(88, 101, 242, 0.18);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 92% 10%, rgba(88, 101, 242, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.06), transparent 58%),
    rgba(15, 19, 17, 0.94);
}

.zero-admin-pipeline__head {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(280px, 0.44fr);
  gap: 14px;
  align-items: end;
}

.zero-admin-pipeline__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1;
}

.zero-admin-pipeline__head p,
.zero-admin-pipeline p {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.5;
}

.zero-admin-pipeline__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.zero-admin-pipeline__grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  min-height: 146px;
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.11);
  border-radius: 8px;
  padding: 11px;
  background: rgba(9, 13, 11, 0.46);
}

.zero-admin-pipeline__grid b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(216, 255, 118, 0.28);
  border-radius: 999px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
  font-size: 11px;
  font-weight: 950;
}

.zero-admin-pipeline__grid span {
  color: #8ee6ad;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.zero-admin-pipeline__grid h3 {
  margin: 3px 0 6px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.05;
}

.create-lobby-safety {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.create-lobby-safety article {
  display: grid;
  gap: 8px;
  min-height: 120px;
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(243, 181, 74, 0.07), transparent 62%),
    rgba(18, 22, 20, 0.9);
}

.create-lobby-safety p {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.45;
}

.my-pubg-shell {
  --my-pubg-section-gap: clamp(16px, 1.35vw, 22px);
  --my-pubg-card-gap: clamp(10px, 0.9vw, 14px);
  --my-pubg-panel-padding: clamp(14px, 1.05vw, 18px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--my-pubg-section-gap);
}

.my-pubg-focus-hero {
  --player-accent: #d8ff76;
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(280px, 0.44fr);
  gap: 18px;
  align-items: center;
  grid-column: 1 / -1;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(216, 255, 118, 0.2);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.11), transparent 50%),
    linear-gradient(180deg, rgba(142, 230, 173, 0.055), transparent),
    rgba(12, 17, 15, 0.96);
}

.my-pubg-focus-hero.is-empty,
.my-pubg-focus-hero.is-syncing {
  border-color: rgba(142, 230, 173, 0.22);
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.12), transparent 52%),
    rgba(12, 17, 15, 0.96);
}

.my-pubg-focus-hero__copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.my-pubg-focus-hero__copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: 46px;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.my-pubg-focus-hero__copy p {
  max-width: 720px;
  margin: 0;
  color: #d8e6dc;
  font-size: 15px;
  line-height: 1.45;
}

.my-pubg-focus-hero__hint {
  color: #d8ff76 !important;
  font-size: 13px !important;
  font-weight: 900;
}

.my-pubg-focus-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.my-pubg-focus-hero__radar {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 44%, rgba(216, 255, 118, 0.08), transparent 58%),
    rgba(7, 11, 9, 0.58);
}

.my-pubg-focus-hero__radar .player-radar-chart {
  width: min(100%, 238px);
}

.my-pubg-focus-hero.is-empty .player-radar-chart__area,
.my-pubg-focus-hero.is-syncing .player-radar-chart__area {
  fill: rgba(142, 230, 173, 0.08);
  stroke: rgba(142, 230, 173, 0.52);
}

.my-pubg-empty-radar {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 238px);
}

.my-pubg-empty-radar > * {
  grid-area: 1 / 1;
}

.my-pubg-empty-radar span {
  border: 1px solid rgba(216, 255, 118, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  color: #d8ff76;
  background: rgba(7, 11, 9, 0.88);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-focus-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 7px;
  width: 100%;
}

.my-pubg-focus-hero__stats span {
  display: grid;
  gap: 3px;
  min-height: 62px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 8px;
  color: #96a79b;
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.my-pubg-focus-hero__stats b {
  min-width: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.my-pubg-focus-hero--profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  min-height: 0;
  overflow: visible;
  border: 0;
  padding: 0;
  background: transparent;
}

.my-pubg-player-hero {
  --player-accent: #d8ff76;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 14px;
}

.my-pubg-player-card,
.my-pubg-player-radar-card,
.my-pubg-watchlist-strip {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background: rgba(18, 22, 20, 0.92);
}

.my-pubg-player-card {
  display: grid;
  min-height: 352px;
  align-items: end;
  align-content: end;
  gap: 14px;
  padding: 22px;
  background:
    radial-gradient(circle at 76% 22%, rgba(216, 255, 118, 0.16), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(142, 230, 173, 0.18), transparent 36%),
    rgba(16, 20, 18, 0.95);
}

.my-pubg-player-card__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.08);
}

.my-pubg-player-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 12, 0.94), rgba(10, 14, 12, 0.35) 58%, rgba(10, 14, 12, 0.78)),
    linear-gradient(180deg, transparent, rgba(4, 8, 6, 0.84));
}

.my-pubg-player-card__weapon {
  position: absolute;
  right: -22px;
  bottom: 20px;
  z-index: 1;
  width: min(54%, 450px);
  opacity: 0.88;
  filter:
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.86))
    drop-shadow(0 0 24px rgba(216, 255, 118, 0.16));
}

.my-pubg-player-card__icon {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 1;
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 0 16px rgba(216, 255, 118, 0.28));
}

.my-pubg-player-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 570px;
  gap: 10px;
}

.my-pubg-player-card__content span,
.my-pubg-player-radar-card header span,
.my-pubg-watchlist-strip span {
  color: #9aa99e;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-player-card__content h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 5.7vw, 72px);
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.my-pubg-player-card__content p {
  max-width: 620px;
  margin: 0;
  color: #c8d6cd;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.my-pubg-player-card__content div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.my-pubg-player-card__content b {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 6px;
  padding: 5px 9px;
  color: #e8fff0;
  background: rgba(142, 230, 173, 0.07);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-player-radar-card {
  display: grid;
  grid-template-rows: auto minmax(190px, 1fr) auto;
  gap: 12px;
  min-height: 352px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 255, 118, 0.14), transparent 48%),
    rgba(18, 22, 20, 0.9);
}

.my-pubg-player-radar-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.my-pubg-player-radar-card header strong {
  display: grid;
  justify-items: end;
  color: #ffffff;
  font-size: 46px;
  font-weight: 1000;
  line-height: 0.9;
}

.my-pubg-player-radar-card header small {
  margin-top: 5px;
  color: var(--player-accent);
  font-size: 15px;
  font-weight: 1000;
}

.my-pubg-player-radar-card__chart {
  display: grid;
  width: 100%;
  place-items: center;
}

.my-pubg-player-radar-card .player-radar-chart {
  display: block;
  width: min(100%, 300px);
  max-width: 300px;
}

.my-pubg-watchlist-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 54%),
    rgba(18, 22, 20, 0.94);
}

.my-pubg-watchlist-strip strong {
  display: block;
  min-width: 0;
  margin-top: 5px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 1000;
  line-height: 1;
  overflow-wrap: anywhere;
}

.my-pubg-watchlist-strip small {
  display: block;
  margin-top: 7px;
  color: #bdd0c2;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.my-pubg-watchlist-strip dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.my-pubg-watchlist-strip dl div {
  display: grid;
  min-height: 48px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-watchlist-strip dt {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-watchlist-strip dd {
  min-width: 0;
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.my-pubg-watchlist-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.my-pubg-action-status {
  display: inline-grid;
  min-height: 36px;
  place-items: center;
  border: 1px solid rgba(142, 230, 173, 0.24);
  border-radius: 8px;
  padding: 8px 12px;
  color: #8ee6ad;
  background: rgba(142, 230, 173, 0.08);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-hero-card,
.my-pubg-summary-grid,
.my-pubg-insight-grid,
.my-pubg-performance-story,
.my-pubg-performance-timeline,
.my-pubg-session-card,
.my-pubg-player-picker,
.soft-login-ladder,
.soft-login-strip {
  grid-column: 1 / -1;
}

.my-pubg-performance-story {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--my-pubg-card-gap, 10px);
}

.my-pubg-performance-story__head {
  display: flex;
  grid-column: 1 / -1;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: var(--my-pubg-panel-padding, 14px);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.055), transparent 48%),
    rgba(7, 11, 9, 0.3);
}

.my-pubg-performance-story__head div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.my-pubg-performance-story__head span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-performance-story__head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.my-pubg-performance-story__head p {
  max-width: 540px;
  margin: 0;
  color: #bdd0c2;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.4;
  text-align: right;
}

.my-pubg-performance-story__signals,
.my-pubg-performance-timeline__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  justify-content: flex-end;
}

.my-pubg-performance-story__signals b,
.my-pubg-performance-timeline__signals b {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.17);
  border-radius: 999px;
  padding: 5px 9px;
  color: #dcece2;
  background: rgba(142, 230, 173, 0.06);
  font-size: 11px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.my-pubg-performance-story__signals b.is-positive,
.my-pubg-performance-timeline__signals b.is-positive {
  color: #8ef0ad;
  border-color: rgba(142, 240, 173, 0.32);
  background: rgba(142, 240, 173, 0.1);
}

.my-pubg-performance-story__signals b.is-negative,
.my-pubg-performance-timeline__signals b.is-negative {
  color: #ff9a8d;
  border-color: rgba(233, 122, 106, 0.32);
  background: rgba(233, 122, 106, 0.1);
}

.my-pubg-performance-card,
.my-pubg-session-card {
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  background: rgba(18, 22, 20, 0.9);
}

.my-pubg-performance-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 132px;
  padding: var(--my-pubg-panel-padding, 14px);
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), transparent 58%),
    rgba(18, 22, 20, 0.91);
}

.my-pubg-performance-card--identity {
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 118, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.09), transparent 58%),
    rgba(18, 22, 20, 0.92);
}

.my-pubg-performance-card span,
.my-pubg-session-card__head span,
.my-pubg-session-card__stats dt {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-performance-card strong {
  display: flex;
  min-width: 0;
  gap: 6px;
  align-items: baseline;
  color: #ffffff;
  font-size: 24px;
  font-weight: 1000;
  line-height: 1;
  overflow-wrap: anywhere;
}

.my-pubg-performance-card strong small {
  color: #d8ff76;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-performance-card p {
  margin: 0;
  color: #b8c7bc;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.my-pubg-performance-meter {
  position: relative;
  overflow: hidden;
  height: 8px;
  border: 1px solid var(--stat-color-line, rgba(142, 230, 173, 0.14));
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--stat-color-soft, transparent), transparent 60%),
    rgba(0, 0, 0, 0.32);
}

.my-pubg-performance-meter i {
  display: block;
  width: var(--value, 0%);
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--stat-color, #8ef0ad) 72%, #ffffff), var(--stat-color, #d8ff76));
  box-shadow: 0 0 14px color-mix(in srgb, var(--stat-color, #d8ff76) 32%, transparent);
}

.my-pubg-performance-card__tag {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  border: 1px solid rgba(216, 255, 118, 0.18);
  border-radius: 999px;
  padding: 4px 8px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.075);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.my-pubg-performance-timeline {
  display: grid;
  gap: var(--my-pubg-card-gap, 12px);
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: var(--my-pubg-panel-padding, 14px);
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 255, 118, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(110, 182, 255, 0.06), transparent 58%),
    rgba(10, 15, 12, 0.94);
}

.my-pubg-performance-timeline__head {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
}

.my-pubg-performance-timeline__head div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.my-pubg-performance-timeline__head span,
.my-pubg-performance-delta-list > span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-performance-timeline__head strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 1000;
  line-height: 1;
}

.my-pubg-performance-timeline__head p {
  max-width: 520px;
  margin: 0;
  color: #bdd0c2;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.4;
  text-align: right;
}

.my-pubg-performance-timeline__controls {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.72fr) minmax(150px, 0.72fr);
  gap: var(--my-pubg-card-gap, 12px);
  align-items: end;
}

.my-pubg-performance-timeline__controls label {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.my-pubg-performance-timeline__controls span {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-performance-timeline__controls select {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 7px;
  padding: 8px 10px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.06), transparent 54%),
    rgba(4, 9, 7, 0.82);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.my-pubg-performance-timeline__body {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(280px, 0.48fr);
  gap: var(--my-pubg-card-gap, 12px);
  align-items: stretch;
}

.my-pubg-performance-timeline__chart,
.my-pubg-performance-delta-list {
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  background: rgba(3, 8, 6, 0.58);
}

.my-pubg-performance-timeline__chart {
  display: grid;
  min-width: 0;
  gap: var(--my-pubg-card-gap, 8px);
  padding: var(--my-pubg-panel-padding, 12px);
}

.my-pubg-performance-timeline__svg {
  display: block;
  width: 100%;
  height: 280px;
  min-height: 240px;
  overflow: visible;
}

.my-pubg-performance-timeline__grid line {
  stroke: rgba(190, 212, 199, 0.16);
  stroke-dasharray: 5 7;
}

.my-pubg-performance-timeline__grid text,
.my-pubg-performance-timeline__axis text {
  fill: #7f9187;
  font-size: 10px;
  font-weight: 950;
  text-anchor: middle;
}

.my-pubg-performance-timeline__grid text {
  text-anchor: start;
}

.my-pubg-performance-timeline__average line {
  stroke: rgba(143, 255, 185, 0.48);
  stroke-dasharray: 2 5;
  stroke-width: 2;
}

.my-pubg-performance-timeline__average text {
  fill: #8fffb9;
  font-size: 10px;
  font-weight: 1000;
  text-anchor: end;
  text-transform: uppercase;
  paint-order: stroke;
  stroke: rgba(3, 8, 6, 0.86);
  stroke-width: 4px;
}

.my-pubg-performance-timeline__area {
  fill: rgba(216, 255, 118, 0.11);
}

.my-pubg-performance-timeline__line {
  fill: none;
  stroke: #d8ff76;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 12px rgba(216, 255, 118, 0.26));
}

.my-pubg-performance-timeline__dots circle {
  fill: #071009;
  stroke: #d8ff76;
  stroke-width: 3;
  cursor: pointer;
  transition: r 140ms ease, fill 140ms ease, stroke 140ms ease, filter 140ms ease;
}

.my-pubg-performance-timeline__dots circle:hover,
.my-pubg-performance-timeline__dots circle:focus,
.my-pubg-performance-timeline__dots circle.is-selected {
  fill: #d8ff76;
  stroke: #ffffff;
  filter: drop-shadow(0 0 12px rgba(216, 255, 118, 0.62));
  outline: none;
}

.my-pubg-performance-timeline__value-labels text {
  fill: #eafff0;
  font-size: 10px;
  font-weight: 1000;
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(3, 8, 6, 0.82);
  stroke-width: 4px;
}

.my-pubg-performance-timeline__labels {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-color: rgba(216, 255, 118, 0.35) rgba(255, 255, 255, 0.04);
}

.my-pubg-performance-timeline__labels button {
  display: grid;
  gap: 2px;
  flex: 0 0 96px;
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 7px;
  background: rgba(18, 22, 20, 0.78);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.my-pubg-performance-timeline__labels button:hover,
.my-pubg-performance-timeline__labels button:focus-visible,
.my-pubg-performance-timeline__labels button.is-selected {
  border-color: rgba(216, 255, 118, 0.55);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.1), transparent 62%),
    rgba(21, 29, 22, 0.92);
  outline: none;
}

.my-pubg-performance-timeline__labels b {
  color: #ffffff;
  font-size: 12px;
  font-weight: 1000;
}

.my-pubg-performance-timeline__labels small {
  display: flex;
  gap: 3px;
  align-items: baseline;
  color: #9fb1a3;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-performance-timeline__labels em {
  width: fit-content;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 999px;
  padding: 2px 6px;
  color: #aebfb3;
  background: rgba(255, 255, 255, 0.035);
  font-size: 9px;
  font-style: normal;
  font-weight: 1000;
  text-transform: uppercase;
}

.my-pubg-performance-timeline__labels em.is-positive {
  border-color: rgba(116, 255, 174, 0.28);
  color: #8fffb9;
  background: rgba(116, 255, 174, 0.09);
}

.my-pubg-performance-timeline__labels em.is-negative {
  border-color: rgba(255, 118, 137, 0.28);
  color: #ff8f9f;
  background: rgba(255, 118, 137, 0.08);
}

.my-pubg-performance-timeline__empty {
  display: grid;
  min-height: 240px;
  place-content: center;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  color: #bdd0c2;
  text-align: center;
}

.my-pubg-performance-timeline__empty b {
  color: #ffffff;
  font-size: 18px;
}

.my-pubg-performance-timeline__deltas {
  display: grid;
  gap: var(--my-pubg-card-gap, 10px);
}

.my-pubg-performance-delta-list {
  display: grid;
  align-content: start;
  gap: var(--my-pubg-card-gap, 8px);
  padding: var(--my-pubg-panel-padding, 10px);
}

.my-pubg-performance-delta-card {
  display: grid;
  gap: 4px;
  border: 1px solid var(--stat-color-line, rgba(142, 230, 173, 0.12));
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, var(--stat-color-soft, transparent), transparent 60%),
    rgba(18, 22, 20, 0.82);
}

.my-pubg-performance-delta-card b {
  display: flex;
  gap: 6px;
  align-items: baseline;
  color: #ffffff;
  font-size: 15px;
  font-weight: 1000;
}

.my-pubg-performance-delta-card small {
  color: #9fb1a3;
  font-size: 11px;
  font-weight: 850;
}

.my-pubg-performance-delta-card[data-stat-code] b {
  color: var(--stat-color);
}

.my-pubg-performance-delta-card.is-up,
.my-pubg-performance-delta-card.is-down {
  border-color: var(--stat-color-line);
}

.my-pubg-performance-delta-card.is-neutral b {
  color: var(--stat-spr);
}

.my-pubg-performance-timeline__selected {
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(216, 255, 118, 0.08), transparent 30%),
    rgba(3, 8, 6, 0.56);
}

.my-pubg-performance-selected-empty,
.my-pubg-performance-selected-match {
  display: grid;
  gap: var(--my-pubg-card-gap, 10px);
  padding: var(--my-pubg-panel-padding, 12px);
}

.my-pubg-performance-selected-empty {
  min-height: 110px;
  place-content: center;
  color: #9fb1a3;
  text-align: center;
}

.my-pubg-performance-selected-empty b {
  color: #ffffff;
  font-size: 16px;
}

.my-pubg-performance-selected-match__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: start;
}

.my-pubg-performance-selected-match__head > div:first-child,
.my-pubg-performance-selected-match__grid section {
  display: grid;
  gap: 5px;
}

.my-pubg-performance-selected-match__head span,
.my-pubg-performance-selected-match__grid > section > span,
.my-pubg-performance-selected-match__stats dt {
  color: #9fb1a3;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.my-pubg-performance-selected-match__head strong {
  color: #ffffff;
  font-size: 20px;
  font-weight: 1000;
  line-height: 1;
}

.my-pubg-performance-selected-match__head small {
  color: #9fb1a3;
  font-size: 11px;
  font-weight: 850;
}

.my-pubg-performance-selected-match__score {
  display: grid;
  min-width: 132px;
  justify-items: end;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(18, 22, 20, 0.82);
}

.my-pubg-performance-selected-match__score b {
  color: #ffffff;
  font-size: 18px;
  font-weight: 1000;
}

.my-pubg-performance-selected-match__score.is-positive b {
  color: #8fffb9;
}

.my-pubg-performance-selected-match__score.is-negative b {
  color: #ff8f9f;
}

.my-pubg-performance-selected-match__stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.my-pubg-performance-selected-match__stats div {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 8px;
  background: rgba(18, 22, 20, 0.72);
}

.my-pubg-performance-selected-match__stats dd {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 1000;
}

.my-pubg-performance-selected-match__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(260px, 1.1fr);
  gap: var(--my-pubg-card-gap, 10px);
}

.my-pubg-performance-selected-match__grid section {
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 10px;
  background: rgba(18, 22, 20, 0.62);
}

.my-pubg-performance-driver-card,
.my-pubg-performance-selected-match__events article {
  display: grid;
  gap: 3px;
  border: 1px solid var(--stat-color-line, rgba(142, 230, 173, 0.12));
  border-radius: 7px;
  padding: 8px;
  background:
    linear-gradient(135deg, var(--stat-color-soft, transparent), transparent 62%),
    rgba(3, 8, 6, 0.46);
}

.my-pubg-performance-driver-card b,
.my-pubg-performance-selected-match__events b {
  color: var(--stat-color, #ffffff);
  font-size: 13px;
  font-weight: 1000;
}

.my-pubg-performance-driver-card small,
.my-pubg-performance-selected-match__events small {
  color: #9fb1a3;
  font-size: 10px;
  font-weight: 850;
}

.my-pubg-performance-driver-card.is-neutral b {
  color: #d8ff76;
}

.my-pubg-player-tools {
  background:
    radial-gradient(circle at 0% 0%, rgba(142, 230, 173, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(216, 255, 118, 0.045), transparent 58%),
    rgba(18, 22, 20, 0.92);
}

.my-pubg-insight-grid--compact article {
  min-height: 116px;
}

.my-pubg-session-card {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: var(--my-pubg-card-gap, 14px);
  isolation: isolate;
  padding: var(--my-pubg-panel-padding, 18px);
  background: rgba(18, 22, 20, 0.92);
}

.my-pubg-session-card::before,
.my-pubg-session-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.my-pubg-session-card::before {
  background-image: var(--session-map);
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.08);
  opacity: 0.28;
  transform: scale(1.02);
}

.my-pubg-session-card::after {
  background:
    radial-gradient(circle at 86% 8%, rgba(216, 255, 118, 0.13), transparent 31%),
    linear-gradient(90deg, rgba(6, 11, 8, 0.97) 0%, rgba(6, 11, 8, 0.84) 50%, rgba(6, 11, 8, 0.64) 100%),
    linear-gradient(180deg, rgba(4, 8, 6, 0.15), rgba(4, 8, 6, 0.62));
}

.my-pubg-session-card > * {
  position: relative;
  z-index: 1;
}

.my-pubg-session-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.my-pubg-session-card__head > div {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.my-pubg-session-card__head strong {
  color: #ffffff;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 1000;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.my-pubg-session-card__head .public-inline-link {
  align-self: start;
  justify-self: end;
  border-color: rgba(142, 230, 173, 0.26);
  background: rgba(4, 8, 6, 0.48);
  white-space: nowrap;
}

.my-pubg-session-card__head p {
  margin: 0;
  color: #bdd0c2;
  font-size: 13px;
  font-weight: 850;
}

.my-pubg-session-card__maps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.pubg-map-chip,
.my-pubg-session-card__maps b {
  --map-color: #d8ff76;
  --map-rgb: 216, 255, 118;
  width: fit-content;
  border: 1px solid rgba(var(--map-rgb), 0.34);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--map-color);
  background:
    linear-gradient(135deg, rgba(var(--map-rgb), 0.18), rgba(var(--map-rgb), 0.055)),
    rgba(0, 0, 0, 0.22);
  font-size: 10px;
  font-weight: 1000;
  line-height: 1;
  box-shadow: 0 0 18px rgba(var(--map-rgb), 0.08);
  text-transform: uppercase;
}

.pubg-map-text {
  --map-color: #d8ff76;
  --map-rgb: 216, 255, 118;
  color: var(--map-color);
  text-shadow: 0 0 16px rgba(var(--map-rgb), 0.18);
}

.pubg-map-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.pubg-map-chip.pubg-map-chip {
  color: var(--map-color);
}

.pubg-map-text.pubg-map-text {
  color: var(--map-color);
}

[data-map="erangel"],
.pubg-map-chip[data-map="erangel"],
.pubg-map-text[data-map="erangel"] {
  --map-color: #8ee6ad;
  --map-rgb: 142, 230, 173;
}

[data-map="miramar"],
.pubg-map-chip[data-map="miramar"],
.pubg-map-text[data-map="miramar"] {
  --map-color: #f4c46f;
  --map-rgb: 244, 196, 111;
}

[data-map="taego"],
.pubg-map-chip[data-map="taego"],
.pubg-map-text[data-map="taego"] {
  --map-color: #71d6ff;
  --map-rgb: 113, 214, 255;
}

[data-map="rondo"],
.pubg-map-chip[data-map="rondo"],
.pubg-map-text[data-map="rondo"] {
  --map-color: #f08bd3;
  --map-rgb: 240, 139, 211;
}

[data-map="vikendi"],
.pubg-map-chip[data-map="vikendi"],
.pubg-map-text[data-map="vikendi"] {
  --map-color: #b9e8ff;
  --map-rgb: 185, 232, 255;
}

[data-map="sanhok"],
.pubg-map-chip[data-map="sanhok"],
.pubg-map-text[data-map="sanhok"] {
  --map-color: #69e06f;
  --map-rgb: 105, 224, 111;
}

[data-map="deston"],
.pubg-map-chip[data-map="deston"],
.pubg-map-text[data-map="deston"] {
  --map-color: #9fb1ff;
  --map-rgb: 159, 177, 255;
}

[data-map="karakin"],
.pubg-map-chip[data-map="karakin"],
.pubg-map-text[data-map="karakin"] {
  --map-color: #ff9f5f;
  --map-rgb: 255, 159, 95;
}

[data-map="paramo"],
.pubg-map-chip[data-map="paramo"],
.pubg-map-text[data-map="paramo"] {
  --map-color: #d49bff;
  --map-rgb: 212, 155, 255;
}

[data-map="haven"],
.pubg-map-chip[data-map="haven"],
.pubg-map-text[data-map="haven"] {
  --map-color: #c8d1cc;
  --map-rgb: 200, 209, 204;
}

[data-map="erangel"] {
  --map-color: #8ee6ad;
  --map-rgb: 142, 230, 173;
}

[data-map="miramar"] {
  --map-color: #f4c46f;
  --map-rgb: 244, 196, 111;
}

[data-map="taego"] {
  --map-color: #71d6ff;
  --map-rgb: 113, 214, 255;
}

[data-map="rondo"] {
  --map-color: #f08bd3;
  --map-rgb: 240, 139, 211;
}

[data-map="vikendi"] {
  --map-color: #b9e8ff;
  --map-rgb: 185, 232, 255;
}

[data-map="sanhok"] {
  --map-color: #69e06f;
  --map-rgb: 105, 224, 111;
}

[data-map="deston"] {
  --map-color: #9fb1ff;
  --map-rgb: 159, 177, 255;
}

[data-map="karakin"] {
  --map-color: #ff9f5f;
  --map-rgb: 255, 159, 95;
}

[data-map="paramo"] {
  --map-color: #d49bff;
  --map-rgb: 212, 155, 255;
}

[data-map="haven"] {
  --map-color: #c8d1cc;
  --map-rgb: 200, 209, 204;
}

.my-pubg-session-card__stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.my-pubg-session-card__stats div {
  display: grid;
  min-height: 62px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 7px;
  padding: 9px 11px;
  background: rgba(5, 10, 7, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.my-pubg-session-card__stats dd {
  min-width: 0;
  margin: 2px 0 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 1000;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.my-pubg-session-card__matches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.my-pubg-session-card__matches article {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 9px;
  min-height: 132px;
  isolation: isolate;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 12px;
  background: rgba(7, 11, 9, 0.5);
}

.my-pubg-session-card__matches article::before,
.my-pubg-session-card__matches article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.my-pubg-session-card__matches article::before {
  background-image: var(--session-match-map);
  background-position: center;
  background-size: cover;
  filter: saturate(0.88) contrast(1.08);
  opacity: 0.28;
  transform: scale(1.03);
}

.my-pubg-session-card__matches article::after {
  background:
    linear-gradient(135deg, rgba(4, 8, 6, 0.92), rgba(4, 8, 6, 0.66)),
    radial-gradient(circle at 92% 8%, rgba(var(--map-rgb, 216, 255, 118), 0.18), transparent 38%);
}

.my-pubg-session-card__matches article > * {
  position: relative;
  z-index: 1;
}

.my-pubg-session-card__match-head {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 0;
}

.my-pubg-session-card__match-head b,
.my-pubg-session-card__matches > article > b {
  min-width: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 1000;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.my-pubg-session-card__match-head .pubg-map-chip {
  flex: 0 0 auto;
}

.my-pubg-session-card__match-meta,
.my-pubg-session-card__matches span {
  color: #b8c7bc;
  font-size: 12px;
  font-weight: 850;
}

.my-pubg-session-card__match-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.my-pubg-session-card__match-stats div {
  display: grid;
  gap: 2px;
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.1);
  border-radius: 7px;
  padding: 7px 8px;
  background: rgba(0, 0, 0, 0.28);
}

.my-pubg-session-card__match-stats dt {
  color: #98aa9f;
  font-size: 9px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.my-pubg-session-card__match-stats dd {
  min-width: 0;
  margin: 0;
  color: #f8fff9;
  font-size: 14px;
  font-weight: 1000;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.my-pubg-session-card__matches strong {
  color: #d8ff76;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-hero-card,
.soft-login-strip,
.soft-login-save-strip,
.organization-premium-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.09), transparent 52%),
    rgba(18, 22, 20, 0.94);
}

.my-pubg-hero-card h2,
.soft-login-strip h2,
.organization-premium-section h2 {
  margin: 3px 0 8px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 46px);
  line-height: 1;
}

.my-pubg-hero-card p,
.soft-login-strip p,
.soft-login-save-strip p,
.organization-premium-section p {
  max-width: 780px;
  margin: 0;
  color: #bdd0c2;
  font-size: 14px;
  line-height: 1.55;
}

.soft-login-ladder {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.08), transparent 58%),
    rgba(15, 19, 17, 0.94);
}

.soft-login-ladder__head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  gap: 14px;
  align-items: end;
}

.soft-login-ladder__head span,
.soft-login-ladder__steps span {
  color: #8ee6ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.soft-login-ladder__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1;
}

.soft-login-ladder__head p,
.soft-login-ladder__steps p {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.5;
}

.soft-login-ladder__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.soft-login-ladder__steps article {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 136px;
  border: 1px solid rgba(142, 230, 173, 0.11);
  border-radius: 8px;
  padding: 11px;
  background: rgba(9, 13, 11, 0.46);
}

.soft-login-ladder__steps b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(216, 255, 118, 0.28);
  border-radius: 999px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
  font-size: 12px;
  font-weight: 950;
}

.soft-login-save-strip {
  align-items: center;
  margin: 0;
}

.soft-login-save-strip span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.soft-login-save-strip strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
}

.soft-login-save-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  justify-content: flex-end;
}

.soft-login-save-strip button {
  min-height: 38px;
  border: 1px solid rgba(216, 255, 118, 0.42);
  border-radius: 6px;
  padding: 8px 13px;
  color: #07100b;
  background: #d8ff76;
  font-weight: 950;
  cursor: pointer;
}

.soft-login-save-strip .soft-login-claim-button {
  border-color: rgba(142, 230, 173, 0.34);
  color: #eafff0;
  background: rgba(142, 230, 173, 0.1);
}

.soft-login-save-strip button.is-saved {
  border-color: rgba(142, 230, 173, 0.52);
  color: #eafff0;
  background: rgba(142, 230, 173, 0.16);
}

.soft-login-save-strip .soft-login-claim-button.is-claimed {
  border-color: rgba(216, 255, 118, 0.52);
  color: #07100b;
  background: #d8ff76;
}

.soft-login-claim-status,
.my-pubg-claim-status {
  display: block;
  margin-top: 7px;
  color: #d8ff76;
  font-size: 12px;
  font-weight: 850;
}

.feature-gate-section {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(12px, 1.1vw, 18px);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--feature-gate-line, rgba(216, 255, 118, 0.32));
  border-radius: 8px;
  margin: 0 0 16px;
  padding: clamp(14px, 1.25vw, 20px);
  background:
    radial-gradient(circle at 10% 0%, var(--feature-gate-glow, rgba(216, 255, 118, 0.16)), transparent 34%),
    linear-gradient(135deg, var(--feature-gate-soft, rgba(216, 255, 118, 0.09)), transparent 56%),
    rgba(9, 13, 11, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 20px 58px rgba(0, 0, 0, 0.28);
}

.feature-gate-section::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--feature-gate-accent, #d8ff76), transparent 82%);
  content: "";
}

.feature-gate-section--login {
  --feature-gate-accent: #8ee6ad;
  --feature-gate-line: rgba(142, 230, 173, 0.32);
  --feature-gate-soft: rgba(142, 230, 173, 0.1);
  --feature-gate-glow: rgba(142, 230, 173, 0.14);
}

.feature-gate-section--premium {
  --feature-gate-accent: #d8ff76;
  --feature-gate-line: rgba(216, 255, 118, 0.36);
  --feature-gate-soft: rgba(216, 255, 118, 0.1);
  --feature-gate-glow: rgba(216, 255, 118, 0.16);
}

.feature-gate-section__mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  align-content: center;
  border: 1px solid color-mix(in srgb, var(--feature-gate-accent, #d8ff76) 42%, transparent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--feature-gate-accent, #d8ff76) 18%, transparent), transparent 54%),
    rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 28px color-mix(in srgb, var(--feature-gate-accent, #d8ff76) 14%, transparent);
}

.feature-gate-section__mark span,
.feature-gate-section__body .public-kicker,
.feature-gate-section__chips span {
  color: var(--feature-gate-accent, #d8ff76);
  font-size: 10px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.feature-gate-section__mark strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 1000;
  line-height: 1;
}

.feature-gate-section__body {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.feature-gate-section__body h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 2.25vw, 34px);
  line-height: 1;
}

.feature-gate-section__body > p {
  max-width: 760px;
  margin: 0;
  color: #c5d5c9;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.feature-gate-section__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.feature-gate-section__chips span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--feature-gate-accent, #d8ff76) 28%, transparent);
  border-radius: 999px;
  padding: 5px 8px;
  background: color-mix(in srgb, var(--feature-gate-accent, #d8ff76) 9%, transparent);
}

.feature-gate-section__actions {
  display: grid;
  gap: 8px;
  justify-items: end;
  min-width: max-content;
}

.feature-gate-section__actions .public-button {
  box-shadow: 0 0 26px color-mix(in srgb, var(--feature-gate-accent, #d8ff76) 18%, transparent);
}

.my-pubg-player-picker {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(73, 156, 255, 0.06), transparent 42%),
    rgba(12, 17, 15, 0.95);
}

.my-pubg-player-picker--banner {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin-top: 4px;
  border-color: rgba(216, 255, 118, 0.2);
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.09), transparent 50%),
    rgba(8, 12, 10, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.my-pubg-player-picker--banner .my-pubg-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.my-pubg-player-picker--banner .my-pubg-panel__head strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 1000;
}

.my-pubg-identity-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: end;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 54%),
    rgba(255, 255, 255, 0.035);
}

.my-pubg-player-picker--banner .my-pubg-identity-form {
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 8px;
  border-color: rgba(216, 255, 118, 0.14);
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-identity-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.my-pubg-identity-form label span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.my-pubg-identity-form input {
  min-height: 38px;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 7px;
  padding: 8px 10px;
  color: #f4fff7;
  background: rgba(7, 11, 9, 0.72);
  font: inherit;
  font-weight: 850;
}

.my-pubg-player-picker--banner .my-pubg-identity-form input {
  min-height: 34px;
}

.my-pubg-identity-form input:focus {
  outline: none;
  border-color: rgba(142, 230, 173, 0.78);
  box-shadow: 0 0 0 3px rgba(142, 230, 173, 0.12);
}

.my-pubg-identity-form > div {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.my-pubg-identity-form button {
  min-height: 38px;
  border: 1px solid rgba(142, 230, 173, 0.44);
  border-radius: 7px;
  padding: 8px 11px;
  color: #07100b;
  background: #8ee6ad;
  font-weight: 950;
}

.my-pubg-player-picker--banner .my-pubg-identity-form button {
  min-height: 34px;
  padding: 7px 10px;
}

.my-pubg-identity-form button[data-my-pubg-forget-player] {
  color: #dceadf;
  border-color: rgba(216, 255, 118, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.my-pubg-identity-form p {
  grid-column: 1 / -1;
  margin: 0;
  color: #b8c7bc;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.my-pubg-player-picker__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
}

.my-pubg-player-picker--banner .my-pubg-player-picker__list {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-height: 94px;
  overflow: auto;
  padding-right: 2px;
}

.my-pubg-player-picker__list a,
.my-pubg-player-picker__list > article.is-active,
.my-pubg-player-picker__list article {
  display: grid;
  gap: 5px;
  min-height: 84px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 11px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-player-picker__list > article.is-active {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.my-pubg-player-picker--banner .my-pubg-player-picker__list a,
.my-pubg-player-picker--banner .my-pubg-player-picker__list > article.is-active,
.my-pubg-player-picker--banner .my-pubg-player-picker__list article {
  min-height: 58px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.my-pubg-player-picker__list a.is-active,
.my-pubg-player-picker__list > article.is-active {
  border-color: rgba(216, 255, 118, 0.58);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 118, 0.12), transparent 42%),
    rgba(142, 230, 173, 0.08);
}

.my-pubg-player-picker__list > article.is-active em {
  display: inline-grid;
  min-height: 24px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.28);
  border-radius: 999px;
  padding: 4px 8px;
  color: #8ee6ad;
  background: rgba(142, 230, 173, 0.08);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.my-pubg-player-picker__choice-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.my-pubg-player-picker__list span {
  width: fit-content;
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 999px;
  padding: 3px 7px;
  color: #d8ff76;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.my-pubg-player-picker__list b {
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-pubg-player-picker__list small,
.my-pubg-player-picker__list article span {
  color: #b8c7bc;
  font-size: 12px;
  font-weight: 800;
}

.my-pubg-player-picker__list small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-pubg-player-picker__list article a {
  min-height: 0;
  border: 0;
  padding: 0;
  color: #8ef0ad;
  background: transparent;
  font-weight: 950;
}

.my-pubg-summary-grid,
.premium-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.my-pubg-summary-grid article,
.my-pubg-panel,
.my-pubg-insight-grid article,
.premium-tier-grid article,
.organization-premium-grid article {
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  background: rgba(18, 22, 20, 0.9);
}

.my-pubg-summary-grid article {
  display: grid;
  gap: 4px;
  min-height: 116px;
  align-content: center;
  padding: 14px;
}

.my-pubg-summary-grid span,
.my-pubg-panel__head span,
.my-pubg-insight-grid span,
.premium-tier-grid span,
.organization-premium-grid span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-summary-grid strong {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.05;
}

.my-pubg-summary-grid small,
.my-pubg-map-grid small {
  color: #d8ff76;
  font-size: 12px;
  font-weight: 900;
}

.my-pubg-panel {
  display: grid;
  gap: var(--my-pubg-card-gap, 12px);
  padding: var(--my-pubg-panel-padding, 14px);
}

.my-pubg-live-lookup {
  align-content: start;
  overflow: hidden;
  border-color: rgba(216, 255, 118, 0.18);
  background:
    radial-gradient(circle at 90% 0%, rgba(216, 255, 118, 0.08), transparent 36%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), transparent 48%),
    rgba(12, 17, 15, 0.94);
}

body.is-my-pubg-sync-locked {
  cursor: wait;
  overflow: hidden;
  touch-action: none;
}

body.is-my-pubg-sync-locked::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  cursor: wait;
  background: rgba(0, 0, 0, 0.001);
  pointer-events: auto;
}

body.is-my-pubg-sync-locked .site-header,
body.is-my-pubg-sync-locked .public-footer {
  pointer-events: none;
  filter: saturate(0.72);
  opacity: 0.58;
}

.my-pubg-live-lookup.is-loading {
  position: relative;
  z-index: 12;
  box-shadow: 0 0 0 1px rgba(216, 255, 118, 0.1), 0 22px 80px rgba(0, 0, 0, 0.48);
}

.my-pubg-live-lookup.is-loaded {
  gap: 0;
  border: 0;
  padding: 0;
  background: transparent;
}

.my-pubg-live-lookup__content {
  display: grid;
  gap: clamp(14px, 1.25vw, 20px);
  min-width: 0;
}

.my-pubg-live-lookup__content > * {
  min-width: 0;
}

.my-pubg-live-lookup.is-loaded > .my-pubg-panel__head,
.my-pubg-live-lookup.is-loaded > .my-pubg-live-lookup__steps,
.my-pubg-live-lookup.is-loaded > .my-pubg-sync-timeline,
.my-pubg-live-lookup.is-loaded > .my-pubg-sync-progress,
.my-pubg-live-lookup.is-loaded > .my-pubg-live-lookup__loader {
  display: none;
}

.my-pubg-live-lookup .my-pubg-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.my-pubg-live-lookup .my-pubg-panel__head strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.my-pubg-sync-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.my-pubg-sync-timeline li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.035);
  opacity: 0.68;
}

.my-pubg-sync-timeline li > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 999px;
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
}

.my-pubg-sync-timeline b,
.my-pubg-sync-timeline small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-pubg-sync-timeline b {
  color: #f2fff5;
  font-size: 12px;
  line-height: 1.1;
}

.my-pubg-sync-timeline small {
  margin-top: 3px;
  color: #9bad9f;
  font-size: 10px;
  font-weight: 850;
}

.my-pubg-sync-timeline li.is-active,
.my-pubg-sync-timeline li.is-done {
  border-color: rgba(216, 255, 118, 0.3);
  opacity: 1;
}

.my-pubg-sync-timeline li.is-active {
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 118, 0.12), transparent 34%),
    rgba(216, 255, 118, 0.055);
}

.my-pubg-sync-timeline li.is-active > span {
  color: #07100b;
  background: #d8ff76;
  box-shadow: 0 0 18px rgba(216, 255, 118, 0.18);
}

.my-pubg-sync-timeline li.is-done > span {
  color: #07100b;
  background: #8ee6ad;
}

.my-pubg-sync-timeline li.is-error {
  border-color: rgba(224, 105, 94, 0.44);
  background: rgba(224, 105, 94, 0.1);
  opacity: 1;
}

.my-pubg-sync-timeline li.is-error > span {
  color: #ffffff;
  background: #e0695e;
}

.my-pubg-sync-progress {
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  background: rgba(142, 230, 173, 0.1);
}

.my-pubg-sync-progress i {
  display: block;
  width: 10%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ee6ad, #d8ff76);
  box-shadow: 0 0 16px rgba(216, 255, 118, 0.22);
  transition: width 420ms ease;
}

.my-pubg-live-lookup__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.my-pubg-live-lookup__steps span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 7px;
  color: #b8c7bc;
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.my-pubg-live-lookup.is-loaded .my-pubg-live-lookup__steps span {
  border-color: rgba(216, 255, 118, 0.28);
  color: #07100b;
  background: #d8ff76;
}

.my-pubg-live-lookup.is-error .my-pubg-live-lookup__steps span {
  border-color: rgba(224, 105, 94, 0.34);
  color: #ffffff;
  background: rgba(224, 105, 94, 0.16);
}

.my-pubg-live-lookup__loader {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(216, 255, 118, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(216, 255, 118, 0.055);
}

.my-pubg-live-lookup__loader i {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(216, 255, 118, 0.2);
  border-top-color: #d8ff76;
  border-radius: 50%;
  animation: my-pubg-spin 900ms linear infinite;
  flex: 0 0 auto;
}

.my-pubg-live-lookup.is-loaded .my-pubg-live-lookup__loader,
.my-pubg-live-lookup.is-error .my-pubg-live-lookup__loader {
  border-color: rgba(142, 230, 173, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-live-lookup.is-loaded .my-pubg-live-lookup__loader i,
.my-pubg-live-lookup.is-error .my-pubg-live-lookup__loader i {
  display: none;
}

.my-pubg-live-lookup.is-loaded .my-pubg-live-lookup__loader::before {
  content: "OK";
  display: inline-flex;
  width: 32px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #0f1110;
  background: #d8ff76;
  font-size: 11px;
  font-weight: 950;
}

.my-pubg-live-lookup.is-error .my-pubg-live-lookup__loader::before {
  content: "!";
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #e0695e;
  font-size: 14px;
  font-weight: 950;
}

.my-pubg-live-lookup__loader b {
  color: #ffffff;
  display: block;
  font-size: 15px;
}

.my-pubg-live-lookup__loader p {
  margin: 3px 0 0;
  color: #a8b9ad;
  font-size: 12px;
  line-height: 1.35;
}

.my-pubg-sync-review {
  display: grid;
  gap: 12px;
}

.my-pubg-sync-review__head--secondary {
  opacity: 0.86;
}

.my-pubg-sync-review__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.my-pubg-sync-review__head > div,
.my-pubg-sync-review__head dl {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.055), transparent 52%),
    rgba(255, 255, 255, 0.035);
}

.my-pubg-sync-review__head > div {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
}

.my-pubg-sync-review__head span {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-sync-review__head strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.my-pubg-sync-review__head dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
}

.my-pubg-sync-review__head dl div {
  display: grid;
  min-height: 64px;
  align-content: center;
  gap: 4px;
  padding: 10px;
  background: rgba(8, 12, 10, 0.3);
}

.my-pubg-sync-review__head dt,
.my-pubg-sync-board__summary dt {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-sync-review__head dd,
.my-pubg-sync-board__summary dd {
  min-width: 0;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.my-pubg-live-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.my-pubg-live-summary article {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-live-summary span {
  color: #91a295;
  display: block;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-live-summary strong {
  color: #ffffff;
  display: block;
  font-size: 18px;
  line-height: 1.1;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.my-pubg-live-summary small {
  color: #d8ff76;
  display: block;
  font-size: 11px;
  font-weight: 900;
  margin-top: 6px;
}

.my-pubg-live-error {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-auto-sessions {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), transparent 48%),
    rgba(8, 12, 10, 0.62);
}

.my-pubg-auto-sessions--secondary {
  opacity: 0.9;
}

.my-pubg-auto-sessions--secondary:not([open]) {
  padding: 0;
}

.my-pubg-auto-sessions--secondary summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  list-style-position: inside;
}

.my-pubg-auto-sessions--secondary:not([open]) summary {
  padding: 12px;
}

.my-pubg-auto-sessions--secondary summary span {
  width: fit-content;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 999px;
  padding: 4px 8px;
  color: #8ee6ad;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-auto-sessions--secondary summary strong {
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-pubg-auto-sessions--secondary summary small {
  color: #a8b9ad;
  font-size: 11px;
  font-weight: 850;
  text-align: right;
}

.my-pubg-auto-sessions__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 12px;
  align-items: center;
}

.my-pubg-auto-sessions__head > div {
  display: grid;
  gap: 4px;
}

.my-pubg-auto-sessions__head span,
.my-pubg-auto-session__main small,
.my-pubg-auto-session__name label span {
  color: #a8b9ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-auto-sessions__head strong {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.15;
}

.my-pubg-auto-sessions__head dl,
.my-pubg-auto-session__main dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.my-pubg-auto-sessions__head dl div,
.my-pubg-auto-session__main dl div {
  display: grid;
  gap: 3px;
  min-height: 48px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.1);
  border-radius: 7px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-auto-sessions__head dt,
.my-pubg-auto-session__main dt {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-auto-sessions__head dd,
.my-pubg-auto-session__main dd {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
}

.my-pubg-auto-sessions__list {
  display: grid;
  gap: 8px;
}

.my-pubg-auto-session {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 118, 0.06), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.my-pubg-auto-session.is-linked {
  border-color: rgba(216, 255, 118, 0.24);
}

.my-pubg-auto-session__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
  gap: 12px;
  align-items: center;
}

.my-pubg-auto-session__main > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.my-pubg-auto-session__main small {
  width: fit-content;
  border: 1px solid rgba(216, 255, 118, 0.22);
  border-radius: 999px;
  padding: 3px 7px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
  line-height: 1;
}

.my-pubg-auto-session__main b {
  min-width: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.my-pubg-auto-session__main span,
.my-pubg-auto-session__main em {
  color: #a8b9ad;
  font-size: 12px;
  line-height: 1.4;
}

.my-pubg-auto-session__main em {
  color: #d8e6dc;
  font-style: normal;
  font-weight: 850;
}

.my-pubg-auto-session__main .pubg-map-chip-list,
.my-pubg-sync-lobby-card__top .pubg-map-chip-list {
  margin-top: 2px;
  color: inherit;
}

.my-pubg-auto-session__name {
  border-top: 1px solid rgba(142, 230, 173, 0.1);
  padding-top: 8px;
}

.my-pubg-auto-session__name.is-reviewed {
  display: grid;
  gap: 4px;
  border-color: rgba(142, 230, 173, 0.18);
  color: #b8c7bc;
}

.my-pubg-auto-session__name.is-reviewed span {
  color: #8ee6ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-auto-session__name.is-reviewed strong {
  color: #ffffff;
  font-size: 15px;
}

.my-pubg-auto-session__name summary {
  width: fit-content;
  cursor: pointer;
  color: #d8ff76;
  font-size: 12px;
  font-weight: 950;
  list-style-position: inside;
}

.my-pubg-auto-session__name form {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr)) auto;
  gap: 8px;
  align-items: end;
  margin-top: 8px;
}

.my-pubg-auto-session__name label {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.my-pubg-auto-session__name input,
.my-pubg-auto-session__name select {
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 7px;
  padding: 7px 9px;
  color: #ffffff;
  background: rgba(7, 10, 8, 0.84);
  font: inherit;
  font-size: 13px;
}

.my-pubg-auto-session__name button {
  min-height: 36px;
  border: 1px solid rgba(216, 255, 118, 0.38);
  border-radius: 7px;
  padding: 7px 11px;
  color: #07100b;
  background: #d8ff76;
  font-weight: 950;
}

.my-pubg-auto-session__name button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.my-pubg-auto-session__name p {
  grid-column: 1 / -1;
  margin: 0;
  color: #b8c7bc;
  font-size: 12px;
  font-weight: 800;
}

.my-pubg-auto-save {
  display: grid;
  gap: var(--my-pubg-card-gap, 10px);
  grid-column: 1 / -1;
  border: 1px solid rgba(216, 255, 118, 0.2);
  border-radius: 8px;
  padding: var(--my-pubg-panel-padding, 12px);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 118, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), transparent 48%),
    rgba(8, 12, 10, 0.72);
}

.my-pubg-auto-save.is-warning {
  border-color: rgba(234, 197, 98, 0.34);
}

.my-pubg-auto-save.is-error {
  border-color: rgba(224, 105, 94, 0.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 105, 94, 0.12), transparent 30%),
    rgba(8, 12, 10, 0.76);
}

.my-pubg-auto-save__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 12px;
  align-items: center;
}

.my-pubg-auto-save__head > div {
  display: grid;
  gap: 5px;
}

.my-pubg-auto-save__head span {
  color: #8ee6ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-auto-save.is-warning .my-pubg-auto-save__head span {
  color: #eac562;
}

.my-pubg-auto-save.is-error .my-pubg-auto-save__head span {
  color: #ff9187;
}

.my-pubg-auto-save__head strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
}

.my-pubg-auto-save__head p {
  max-width: 68ch;
  margin: 0;
  color: #c3d1c7;
  font-size: 13px;
  font-weight: 820;
  line-height: 1.35;
}

.my-pubg-auto-save__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.my-pubg-auto-save__summary div {
  display: grid;
  gap: 3px;
  min-height: 46px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-auto-save__summary dt,
.my-pubg-auto-save__facts span {
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-auto-save__summary dd {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
}

.my-pubg-auto-save__flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.my-pubg-auto-save__flow li {
  position: relative;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 7px;
  padding: 8px 10px 8px 30px;
  color: #a8b9ad;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-auto-save__flow li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transform: translateY(-50%);
}

.my-pubg-auto-save__flow li.is-done {
  border-color: rgba(142, 230, 173, 0.25);
  color: #8ee6ad;
}

.my-pubg-auto-save__flow li.is-done::before {
  background: currentColor;
  box-shadow: 0 0 12px rgba(142, 230, 173, 0.2);
}

.my-pubg-auto-save__flow li.is-active {
  border-color: rgba(216, 255, 118, 0.34);
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
}

.my-pubg-auto-save__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.my-pubg-auto-save__facts span {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 9px 10px;
  color: #d8e6dc;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.my-pubg-auto-save__published {
  display: flex;
  flex-wrap: wrap;
  gap: var(--my-pubg-card-gap, 8px);
}

.my-pubg-auto-save__published a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 7px;
  padding: 9px 10px;
  color: #cfe1d3;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), transparent 52%),
    rgba(255, 255, 255, 0.035);
  font-size: 12px;
  text-decoration: none;
}

.my-pubg-auto-save__published a:hover {
  border-color: rgba(216, 255, 118, 0.38);
  color: #ffffff;
  background: rgba(216, 255, 118, 0.07);
}

.my-pubg-sync-board {
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  border: 1px solid rgba(216, 255, 118, 0.18);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 118, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(216, 255, 118, 0.06), transparent 44%),
    rgba(8, 12, 10, 0.72);
}

.my-pubg-sync-board__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr) auto;
  gap: 12px;
  align-items: center;
}

.my-pubg-sync-board__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.my-pubg-sync-board__head > div {
  display: grid;
  gap: 4px;
}

.my-pubg-sync-board__head span {
  color: #a8b9ad;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.my-pubg-sync-board__head strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.my-pubg-sync-board__head p {
  max-width: 58ch;
  margin: 0;
  color: #b9c9bd;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.my-pubg-sync-board__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.my-pubg-sync-board__summary div {
  display: grid;
  gap: 3px;
  min-height: 48px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-sync-board__saved-badge {
  justify-self: end;
  border: 1px solid rgba(216, 255, 118, 0.34);
  border-radius: 7px;
  padding: 10px 12px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-sync-board__primary-action {
  min-width: 136px;
  justify-self: end;
  text-align: center;
}

.my-pubg-save-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.my-pubg-save-flow li {
  position: relative;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 7px;
  padding: 9px 10px 9px 30px;
  color: #a8b9ad;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-save-flow li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transform: translateY(-50%);
}

.my-pubg-save-flow li.is-active {
  border-color: rgba(216, 255, 118, 0.38);
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
}

.my-pubg-save-flow li.is-done {
  border-color: rgba(142, 230, 173, 0.24);
  color: #8ee6ad;
}

.my-pubg-save-flow li.is-done::before {
  background: currentColor;
  box-shadow: 0 0 12px rgba(142, 230, 173, 0.18);
}

.my-pubg-sync-board__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.my-pubg-sync-board__facts span {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 9px 10px;
  color: #d8e6dc;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.my-pubg-sync-board__list {
  display: grid;
  gap: 10px;
}

.my-pubg-sync-lobby-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.my-pubg-sync-lobby-card__map {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.15) contrast(1.08);
}

.my-pubg-sync-lobby-card__body {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
}

.my-pubg-sync-lobby-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.45fr);
  gap: 12px;
  align-items: start;
}

.my-pubg-sync-lobby-card__top > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.my-pubg-sync-lobby-card__top b,
.my-pubg-sync-lobby-card > b {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.08;
}

.my-pubg-sync-lobby-card__top small {
  width: fit-content;
  border: 1px solid rgba(216, 255, 118, 0.22);
  border-radius: 999px;
  padding: 3px 7px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.my-pubg-sync-lobby-card__top span,
.my-pubg-sync-lobby-card > span {
  color: #a8b9ad;
  font-size: 12px;
  line-height: 1.45;
}

.my-pubg-sync-lobby-card__top em {
  color: #d8e6dc;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.35;
}

.my-pubg-sync-lobby-card__top dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.my-pubg-sync-lobby-card__top dl div {
  border: 1px solid rgba(142, 230, 173, 0.1);
  border-radius: 7px;
  padding: 8px;
  background: rgba(7, 10, 8, 0.62);
}

.my-pubg-sync-lobby-card__top dt,
.my-pubg-sync-lobby-card__controls label span {
  color: #a8b9ad;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.my-pubg-sync-lobby-card__top dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-weight: 950;
}

.my-pubg-sync-lobby-card__controls {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(180px, 1fr);
  gap: 10px;
  align-items: start;
}

.my-pubg-sync-lobby-card__controls label,
.my-pubg-sync-lobby-card__optional-label {
  display: grid;
  gap: 5px;
}

.my-pubg-sync-lobby-card__optional-label {
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.026);
}

.my-pubg-sync-lobby-card__optional-label summary {
  cursor: pointer;
  color: #d8ff76;
  font-size: 12px;
  font-weight: 950;
  list-style-position: inside;
}

.my-pubg-sync-lobby-card__optional-label label {
  margin-top: 8px;
}

.my-pubg-sync-lobby-card__controls input,
.my-pubg-sync-lobby-card__controls select {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 7px;
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(7, 10, 8, 0.84);
}

.my-pubg-sync-lobby-card__controls input:focus,
.my-pubg-sync-lobby-card__controls select:focus {
  border-color: rgba(216, 255, 118, 0.5);
  box-shadow: 0 0 0 3px rgba(216, 255, 118, 0.08);
  outline: none;
}

.my-pubg-sync-lobby-card__saved {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 7px;
  padding: 10px;
  background: rgba(142, 230, 173, 0.055);
}

.my-pubg-sync-lobby-card__saved span {
  color: #a8b9ad;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.my-pubg-sync-lobby-card__saved b {
  color: #ffffff;
  font-size: 14px;
}

.my-pubg-sync-lobby-card__saved small {
  color: #a8b9ad;
  font-size: 11px;
  font-weight: 800;
}

.my-pubg-sync-lobby-card__saved .public-inline-link {
  grid-row: 1 / span 3;
  grid-column: 2;
}

.my-pubg-sync-lobby-card__matches {
  border-top: 1px solid rgba(142, 230, 173, 0.1);
  padding-top: 9px;
}

.my-pubg-sync-lobby-card__matches summary {
  cursor: pointer;
  color: #d8ff76;
  font-size: 12px;
  font-weight: 950;
  list-style-position: inside;
}

.my-pubg-sync-lobby-card__matches .my-pubg-match-list {
  margin-top: 8px;
}

.my-pubg-sync-board__published {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.my-pubg-sync-board__published a,
.my-pubg-sync-board__note {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 8px 10px;
  color: #cfe1d3;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  text-decoration: none;
}

.my-pubg-sync-board__published a {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.my-pubg-match-list--compact article {
  grid-template-columns: minmax(96px, 0.8fr) minmax(116px, 1fr) repeat(5, minmax(64px, auto));
}

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

.my-pubg-panel--wide {
  grid-column: 1 / -1;
}

.my-pubg-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.my-pubg-panel__head strong {
  color: #ffffff;
  font-size: 18px;
}

.my-pubg-match-list,
.my-pubg-action-grid,
.my-pubg-insight-grid,
.my-pubg-map-grid,
.my-pubg-mini-list,
.organization-premium-grid {
  display: grid;
  gap: 8px;
}

.my-pubg-match-list article {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(5, minmax(70px, auto));
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.1);
  border-radius: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-match-list b,
.my-pubg-map-grid b {
  color: #ffffff;
}

.my-pubg-map-grid .pubg-map-chip,
.my-pubg-match-list .pubg-map-chip {
  color: var(--map-color);
}

.my-pubg-match-list span,
.my-pubg-panel p,
.my-pubg-insight-grid p,
.premium-tier-grid p,
.premium-tier-grid li {
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.45;
}

.my-pubg-match-list strong {
  color: #d8ff76;
  font-size: 13px;
}

.my-pubg-trend {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 150px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
  padding: 12px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px),
    rgba(9, 13, 11, 0.42);
}

.my-pubg-trend i {
  flex: 1;
  min-width: 22px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #d8ff76, #45c47e);
  box-shadow: 0 0 18px rgba(142, 230, 173, 0.14);
}

.my-pubg-map-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.my-pubg-map-grid article,
.my-pubg-action-grid article,
.my-pubg-mini-list article,
.my-pubg-mini-list a {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-mini-list a {
  color: inherit;
  text-decoration: none;
}

.my-pubg-mini-list b {
  color: #ffffff;
  font-size: 14px;
}

.my-pubg-mini-list span {
  color: #c9d7cd;
  font-size: 12px;
  font-weight: 850;
}

.my-pubg-tabbar {
  position: sticky;
  top: 72px;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background: rgba(6, 12, 9, 0.82);
  backdrop-filter: blur(14px);
}

.my-pubg-tabbar a {
  color: #c9d7cd;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-tabbar a:hover,
.my-pubg-tabbar a:focus-visible {
  color: #07100b;
  background: #93f0af;
}

.my-pubg-teams-flow {
  display: grid;
  gap: 12px;
}

.my-pubg-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.my-pubg-team-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 255, 118, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(20, 36, 25, 0.72), rgba(8, 13, 10, 0.94));
}

.my-pubg-team-card__head {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.my-pubg-team-card__logo,
.my-pubg-team-manage__preview {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #07100b;
  text-decoration: none;
  background: linear-gradient(135deg, #93f0af, #d8ff76);
}

.my-pubg-team-card__logo img,
.my-pubg-team-manage__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-pubg-team-card__head span,
.my-pubg-team-members__head span,
.my-pubg-team-manage label span,
.my-pubg-team-card__stats span {
  color: #9eb1a5;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-team-card__head h2 {
  margin: 2px 0;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 0.98;
}

.my-pubg-team-card__head h2 a {
  color: inherit;
  text-decoration: none;
}

.my-pubg-team-card__head small {
  color: #b9c8bd;
  font-size: 12px;
  font-weight: 800;
}

.my-pubg-team-card__head > b {
  color: #d8ff76;
  font-size: 26px;
}

.my-pubg-team-card__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.my-pubg-team-card__stats div {
  display: grid;
  gap: 3px;
  min-height: 58px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 6px;
  padding: 9px;
  background: rgba(0, 0, 0, 0.22);
}

.my-pubg-team-card__stats strong {
  color: #ffffff;
  font-size: 18px;
}

.my-pubg-team-comparison {
  display: grid;
  gap: 8px;
}

.my-pubg-team-comparison > div {
  display: grid;
  grid-template-columns: 56px minmax(120px, 1fr) auto auto;
  gap: 8px;
  align-items: center;
}

.my-pubg-team-comparison span,
.my-pubg-team-comparison small {
  color: #9eb1a5;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-team-comparison i {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.my-pubg-team-comparison i::before,
.my-pubg-team-comparison i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
}

.my-pubg-team-comparison i::before {
  width: var(--team);
  background: rgba(142, 230, 173, 0.32);
}

.my-pubg-team-comparison i::after {
  width: var(--player);
  background: linear-gradient(90deg, #d8ff76, #93f0af);
}

.my-pubg-team-comparison b {
  color: #ffffff;
  font-size: 13px;
  display: grid;
  justify-items: end;
  line-height: 1.05;
}

.my-pubg-team-manage {
  display: grid;
  grid-template-columns: 64px minmax(120px, 1fr) 90px minmax(140px, 1fr) auto auto;
  gap: 8px;
  align-items: end;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 10px;
  background: rgba(3, 9, 6, 0.5);
}

.my-pubg-team-manage label {
  display: grid;
  gap: 5px;
}

.my-pubg-team-manage input[type="text"],
.my-pubg-team-manage input[type="file"],
.my-pubg-team-member select {
  width: 100%;
  color: #ffffff;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 6px;
  padding: 9px 10px;
  background: rgba(0, 0, 0, 0.42);
}

.my-pubg-team-manage .auth-upload-hint {
  grid-column: 2 / -1;
}

.my-pubg-team-members {
  display: grid;
  gap: 8px;
}

.my-pubg-team-members__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.my-pubg-team-members__head strong {
  color: #d8ff76;
  font-size: 12px;
}

.my-pubg-team-member-list {
  display: grid;
  gap: 6px;
}

.my-pubg-team-member {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(150px, auto);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.1);
  border-radius: 6px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-team-member.is-bench {
  border-color: rgba(255, 198, 93, 0.28);
}

.my-pubg-team-member a {
  display: grid;
  gap: 2px;
  color: inherit;
  text-decoration: none;
}

.my-pubg-team-member strong {
  color: #ffffff;
  font-size: 14px;
}

.my-pubg-team-member span {
  color: #b9c8bd;
  font-size: 12px;
  font-weight: 800;
}

.my-pubg-team-member > b {
  color: #d8ff76;
  font-size: 14px;
}

.my-pubg-team-member form {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto;
  gap: 6px;
}

.my-pubg-team-member button {
  color: #07100b;
  border: 0;
  border-radius: 6px;
  padding: 8px 10px;
  font-weight: 950;
  background: #93f0af;
}

.my-pubg-private-panel {
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 255, 118, 0.08), transparent 34%),
    rgba(18, 22, 20, 0.9);
}

.my-pubg-private-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 10px;
}

.my-pubg-private-notes,
.my-pubg-goal-box {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 7px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.my-pubg-private-notes span,
.my-pubg-goal-box > span {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.my-pubg-private-notes textarea,
.my-pubg-goal-input input {
  width: 100%;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 6px;
  padding: 10px;
  color: #ffffff;
  background: rgba(8, 12, 10, 0.72);
  font: inherit;
  outline: none;
}

.my-pubg-private-notes textarea:focus,
.my-pubg-goal-input input:focus {
  border-color: rgba(216, 255, 118, 0.56);
  box-shadow: 0 0 0 3px rgba(216, 255, 118, 0.08);
}

.my-pubg-goal-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.my-pubg-goal-input button,
.my-pubg-goal-list button {
  border: 1px solid rgba(216, 255, 118, 0.28);
  border-radius: 6px;
  padding: 8px 10px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.06);
  font-weight: 950;
  cursor: pointer;
}

.my-pubg-goal-list {
  display: grid;
  gap: 7px;
}

.my-pubg-goal-list article,
.my-pubg-goal-list label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 6px;
  padding: 9px;
  color: #ffffff;
  background: rgba(9, 13, 11, 0.45);
}

.my-pubg-goal-list article {
  grid-template-columns: 1fr;
}

.my-pubg-goal-list label.is-done span {
  color: #a6b8aa;
  text-decoration: line-through;
}

.my-pubg-goal-list small,
.my-pubg-private-status {
  color: #c9d7cd;
  font-size: 12px;
  font-weight: 850;
}

.my-pubg-private-status {
  margin: 0;
}

.soft-login-saved-panel {
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.08), transparent 54%),
    rgba(18, 22, 20, 0.9);
}

.soft-login-saved-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.soft-login-saved-list article,
.soft-login-saved-list a {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(216, 255, 118, 0.15);
  border-radius: 6px;
  padding: 10px;
  color: inherit;
  background: rgba(216, 255, 118, 0.055);
  text-decoration: none;
}

.soft-login-saved-list b {
  color: #ffffff;
  font-size: 14px;
}

.soft-login-saved-list span {
  color: #c9d7cd;
  font-size: 12px;
  font-weight: 850;
}

.saved-watchlist-board {
  display: grid;
  gap: 14px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 255, 118, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), transparent 58%),
    rgba(15, 19, 17, 0.94);
}

.saved-watchlist-board__head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 14px;
  align-items: end;
}

.saved-watchlist-board__head span,
.saved-watchlist-notes span {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.saved-watchlist-board__head h2,
.saved-watchlist-notes h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.saved-watchlist-board__head p,
.saved-watchlist-notes p {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.5;
}

.saved-watchlist-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.saved-watchlist-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.saved-watchlist-summary article {
  display: grid;
  gap: 5px;
  min-height: 92px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 7px;
  padding: 11px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), rgba(216, 255, 118, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.saved-watchlist-summary span {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.saved-watchlist-summary strong {
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-watchlist-summary small {
  color: #c9d7cd;
  font-size: 12px;
  font-weight: 850;
}

.saved-watchlist-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.saved-watchlist-actions article {
  display: grid;
  gap: 8px;
  min-height: 142px;
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 13px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 118, 0.09), transparent 36%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.06), rgba(73, 156, 255, 0.025)),
    rgba(12, 17, 15, 0.95);
}

.saved-watchlist-actions span {
  width: fit-content;
  border: 1px solid rgba(216, 255, 118, 0.22);
  border-radius: 999px;
  padding: 4px 8px;
  color: #d8ff76;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.saved-watchlist-actions h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.05;
}

.saved-watchlist-actions p {
  margin: 0;
  color: #bac8be;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.saved-watchlist-actions .public-inline-link {
  align-self: end;
  margin-top: 4px;
}

.soft-login-saved-list--full {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.saved-notes-board {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.05), transparent 54%),
    rgba(8, 12, 10, 0.62);
}

.saved-notes-board__head {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(280px, 0.52fr);
  gap: 12px;
  align-items: end;
}

.saved-notes-board__head span {
  color: #9bad9f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.saved-notes-board__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.saved-notes-board__head p {
  margin: 0;
  color: #b7c6ba;
  font-size: 13px;
  line-height: 1.45;
}

.saved-notes-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px;
}

.saved-notes-list article {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.saved-notes-list header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.saved-notes-list header > span {
  border: 1px solid rgba(216, 255, 118, 0.22);
  border-radius: 999px;
  padding: 4px 7px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.saved-notes-list b {
  display: block;
  overflow: hidden;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-notes-list small {
  display: block;
  overflow: hidden;
  color: #9bad9f;
  font-size: 11px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-notes-list textarea {
  width: 100%;
  min-height: 92px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 7px;
  padding: 9px;
  color: #effff3;
  background: rgba(3, 8, 6, 0.72);
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  resize: vertical;
}

.saved-filter-board {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(73, 156, 255, 0.055), transparent 52%),
    rgba(8, 12, 10, 0.62);
}

.saved-filter-board__head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  justify-content: space-between;
}

.saved-filter-board__head span {
  color: #9bad9f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.saved-filter-board__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.saved-filter-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.saved-filter-list a,
.saved-filter-list article {
  display: grid;
  gap: 6px;
  min-height: 82px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 11px;
  color: inherit;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 118, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.035);
  text-decoration: none;
}

.saved-filter-list a:hover,
.saved-filter-list a:focus-visible {
  border-color: rgba(216, 255, 118, 0.42);
  outline: none;
}

.saved-filter-list b {
  color: #f4fff6;
  font-size: 15px;
  line-height: 1.15;
}

.saved-filter-list span {
  color: #b8c7bc;
  font-size: 12px;
  font-weight: 850;
}

.saved-watchlist-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}

.saved-watchlist-notes article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.045), transparent),
    rgba(14, 18, 16, 0.93);
}

.notification-settings {
  display: grid;
  gap: 14px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 84% 10%, rgba(73, 156, 255, 0.11), transparent 30%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), transparent 58%),
    rgba(15, 19, 17, 0.94);
}

.notification-settings__head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 14px;
  align-items: end;
}

.notification-settings__head span,
.notification-summary span {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.notification-settings__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.notification-settings__head p,
.notification-settings__status {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.5;
}

.notification-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.notification-summary article {
  display: grid;
  gap: 5px;
  min-height: 88px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 7px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.notification-summary strong {
  color: #ffffff;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
}

.notification-summary small,
.notification-toggle-grid small {
  color: #c9d7cd;
  font-size: 12px;
  font-weight: 850;
}

.notification-toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.notification-toggle-grid label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 7px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.notification-toggle-grid input {
  width: 20px;
  height: 20px;
  accent-color: #d8ff76;
}

.notification-toggle-grid span {
  display: grid;
  gap: 3px;
}

.notification-toggle-grid strong {
  color: #ffffff;
  font-size: 15px;
}

.notification-preview {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.045), transparent 44%),
    rgba(255, 255, 255, 0.026);
}

.notification-preview__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  justify-content: space-between;
}

.notification-preview__head span,
.notification-preview__list span {
  color: #d8ff76;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.notification-preview__head strong {
  color: #ffffff;
  font-size: 18px;
}

.notification-preview__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.notification-preview__list a,
.notification-preview__list article {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 10px;
  color: inherit;
  background: rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.notification-preview__list b {
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification-preview__list small,
.notification-preview__list article span {
  color: #bdcbc1;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.notification-preview__list article a {
  width: fit-content;
  color: #8ef0ad;
  font-size: 12px;
  font-weight: 950;
}

.my-pubg-action-grid {
  grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
  gap: var(--my-pubg-card-gap, 8px);
}

.my-pubg-action-card {
  --resource-color: #d8ff76;
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  overflow: hidden;
  min-height: 132px;
  padding: var(--my-pubg-panel-padding, 14px);
  color: #eafff0;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--resource-color) 22%, rgba(142, 230, 173, 0.12));
  border-radius: 7px;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--resource-color) 12%, transparent), transparent 35%),
    linear-gradient(135deg, color-mix(in srgb, var(--resource-color) 7%, transparent), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
  transition: border-color 140ms ease, transform 140ms ease, background 140ms ease;
}

.my-pubg-action-card[data-resource-kind="profile"] {
  --resource-color: var(--stat-spr);
}

.my-pubg-action-card[data-resource-kind="session"] {
  --resource-color: var(--stat-utl);
}

.my-pubg-action-card[data-resource-kind="team"] {
  --resource-color: var(--stat-tm);
}

.my-pubg-action-card[data-resource-kind="compare"] {
  --resource-color: var(--stat-fin);
}

.my-pubg-action-card[data-resource-kind="matches"] {
  --resource-color: var(--stat-atk);
}

.my-pubg-action-card[data-resource-kind="resources"] {
  --resource-color: var(--stat-stl);
}

.my-pubg-action-card::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 13px;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--resource-color) 28%, transparent);
  border-radius: 50%;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--resource-color) 34%, transparent) 0 16%, transparent 18%),
    conic-gradient(from 210deg, color-mix(in srgb, var(--resource-color) 9%, transparent), color-mix(in srgb, var(--resource-color) 42%, transparent), rgba(142, 240, 173, 0.08));
  opacity: 0.84;
}

button.my-pubg-action-card {
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.my-pubg-action-card:hover,
.my-pubg-action-card:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--resource-color) 48%, rgba(142, 240, 173, 0.18));
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--resource-color) 17%, transparent), transparent 37%),
    linear-gradient(135deg, color-mix(in srgb, var(--resource-color) 11%, transparent), transparent 42%),
    rgba(142, 230, 173, 0.055);
}

.my-pubg-action-card span {
  width: fit-content;
  padding: 4px 7px;
  color: var(--resource-color);
  font-size: 10px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  border: 1px solid color-mix(in srgb, var(--resource-color) 30%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--resource-color) 10%, transparent);
}

.my-pubg-action-card h3 {
  max-width: calc(100% - 42px);
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.1;
}

.my-pubg-action-card strong {
  color: var(--resource-color);
  font-size: 20px;
  line-height: 1;
}

.my-pubg-action-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #c9d7cd;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.my-pubg-action-card small {
  align-self: end;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.my-pubg-insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.my-pubg-insight-grid article {
  display: grid;
  gap: 7px;
  padding: 13px;
}

.my-pubg-insight-grid strong {
  color: #ffffff;
  font-size: 18px;
}

.premium-tier-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 16px;
}

.leaderboard-signal-strip {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 90% 12%, rgba(216, 255, 118, 0.09), transparent 30%),
    linear-gradient(135deg, rgba(88, 101, 242, 0.08), transparent 58%),
    rgba(15, 19, 17, 0.94);
}

.team-directory-empty-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.07), transparent 62%),
    rgba(15, 19, 17, 0.94);
}

.team-directory-empty-status span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.team-directory-empty-status strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.08;
}

.team-directory-empty-status small {
  display: block;
  margin-top: 6px;
  color: #b7c6ba;
  font-size: 13px;
  font-weight: 800;
}

.team-directory-empty-status__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  align-items: center;
}

.leaderboard-signal-strip__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.leaderboard-signal-strip__head span,
.leaderboard-signal-card span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.leaderboard-signal-strip__head h2 {
  margin: 3px 0 7px;
  color: #ffffff;
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 1.04;
}

.leaderboard-signal-strip__head p {
  max-width: 820px;
  margin: 0;
  color: #b7c6ba;
  line-height: 1.5;
}

.leaderboard-signal-strip__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  align-items: center;
}

.leaderboard-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.leaderboard-signal-card {
  display: grid;
  gap: 8px;
  min-height: 142px;
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 13px;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), transparent 62%),
    rgba(9, 13, 11, 0.5);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.leaderboard-signal-card:hover,
.leaderboard-signal-card:focus-visible {
  border-color: rgba(216, 255, 118, 0.42);
  transform: translateY(-2px);
}

.leaderboard-signal-card:focus-visible {
  outline: 2px solid rgba(216, 255, 118, 0.68);
  outline-offset: 2px;
}

.leaderboard-signal-card strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.05;
}

.leaderboard-signal-card b {
  width: fit-content;
  border: 1px solid rgba(216, 255, 118, 0.24);
  border-radius: 6px;
  padding: 6px 8px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
  font-size: 13px;
  font-weight: 950;
}

.leaderboard-signal-card small {
  color: #c9d7cd;
  font-size: 12px;
  line-height: 1.4;
}

.leaderboard-filter-panel {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  border: 1px solid rgba(117, 165, 255, 0.18);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(86, 119, 215, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(142, 230, 173, 0.06), transparent 72%),
    rgba(10, 14, 12, 0.94);
}

.leaderboard-filter-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.leaderboard-filter-panel__head span,
.leaderboard-filter-panel__saved > span,
.leaderboard-filter-panel label span {
  color: #9bad9f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.leaderboard-filter-panel__head h2 {
  margin: 4px 0 5px;
  color: #f4fff6;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
}

.leaderboard-filter-panel__head p {
  max-width: 760px;
  margin: 0;
  color: #bac9be;
  line-height: 1.35;
}

.leaderboard-filter-panel output {
  border: 1px solid rgba(216, 255, 118, 0.26);
  border-radius: 8px;
  padding: 10px 12px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.07);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.leaderboard-filter-panel__scope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.leaderboard-filter-panel__scope button {
  min-height: 36px;
  border: 1px solid rgba(117, 165, 255, 0.34);
  border-radius: 6px;
  padding: 0 14px;
  color: #d9e4ff;
  background: rgba(54, 82, 164, 0.34);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.leaderboard-filter-panel__scope button[aria-pressed="true"] {
  border-color: rgba(216, 255, 118, 0.62);
  color: #0b110d;
  background: linear-gradient(180deg, #d8ff76, #a6d34f);
  box-shadow: 0 0 0 1px rgba(216, 255, 118, 0.18), 0 10px 24px rgba(216, 255, 118, 0.12);
}

.leaderboard-filter-panel__controls {
  display: grid;
  grid-template-columns: minmax(180px, 1.35fr) minmax(150px, 0.95fr) minmax(90px, 0.58fr) minmax(90px, 0.58fr) minmax(150px, 0.95fr) auto auto;
  gap: 10px;
  align-items: end;
}

.leaderboard-filter-panel label {
  display: grid;
  gap: 6px;
}

.leaderboard-filter-panel input,
.leaderboard-filter-panel select {
  width: 100%;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  padding: 10px 11px;
  color: #f4fff6;
  background: rgba(4, 8, 6, 0.72);
  font: inherit;
  font-weight: 800;
}

.leaderboard-filter-panel input:focus,
.leaderboard-filter-panel select:focus {
  border-color: rgba(216, 255, 118, 0.48);
  outline: 2px solid rgba(216, 255, 118, 0.16);
  outline-offset: 1px;
}

.leaderboard-filter-panel__controls button,
.leaderboard-filter-chip button {
  min-height: 40px;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 8px;
  padding: 0 13px;
  color: #9dffc0;
  background: rgba(142, 230, 173, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.leaderboard-filter-panel__controls button:hover,
.leaderboard-filter-chip button:hover {
  border-color: rgba(216, 255, 118, 0.48);
  color: #d8ff76;
}

.leaderboard-filter-panel__controls button[data-clear-leaderboard-filter],
.leaderboard-filter-chip button:last-child {
  color: #cbd8cf;
  background: rgba(255, 255, 255, 0.04);
}

.leaderboard-filter-panel__saved {
  display: grid;
  gap: 8px;
}

.leaderboard-filter-panel__saved > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.leaderboard-filter-panel__saved p {
  margin: 0;
  color: #7f9186;
  font-size: 13px;
  font-weight: 800;
}

.leaderboard-filter-chip {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.leaderboard-filter-chip button {
  min-height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.leaderboard-filter-chip button + button {
  border-left: 1px solid rgba(142, 230, 173, 0.14);
  color: #87978d;
  font-size: 11px;
}

.scouting-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.scouting-summary-grid article {
  display: grid;
  gap: 5px;
  min-height: 104px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), transparent 62%),
    rgba(18, 22, 20, 0.92);
}

.scouting-summary-grid span,
.scouting-board__head span,
.scouting-card header span,
.scouting-card dt,
.scouting-card__signal span {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.scouting-summary-grid strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.scouting-summary-grid small {
  color: #d8ff76;
  font-size: 12px;
  font-weight: 900;
}

.organization-scouting-workflow {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(88, 101, 242, 0.18);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 92% 10%, rgba(88, 101, 242, 0.15), transparent 32%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.06), transparent 58%),
    rgba(15, 19, 17, 0.94);
}

.organization-scouting-workflow__head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 14px;
  align-items: end;
}

.organization-scouting-workflow__head span,
.organization-scouting-workflow__steps span {
  color: #8ee6ad;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.organization-scouting-workflow__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1;
}

.organization-scouting-workflow__head p,
.organization-scouting-workflow__steps p {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.5;
}

.organization-scouting-workflow__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.organization-scouting-workflow__steps article {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 140px;
  border: 1px solid rgba(142, 230, 173, 0.11);
  border-radius: 8px;
  padding: 11px;
  background: rgba(9, 13, 11, 0.46);
}

.organization-scouting-workflow__steps b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(216, 255, 118, 0.28);
  border-radius: 999px;
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.08);
  font-size: 12px;
  font-weight: 950;
}

.organization-scouting-workspace {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(244, 183, 63, 0.18);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(244, 183, 63, 0.08), transparent 55%),
    rgba(15, 19, 17, 0.94);
}

.organization-scouting-workspace__head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 14px;
  align-items: end;
}

.organization-scouting-workspace__head span,
.organization-scouting-workspace__summary span,
.org-prospect-card header span,
.org-prospect-card label span {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.organization-scouting-workspace__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.organization-scouting-workspace__head p {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.5;
}

.organization-scouting-workspace__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.organization-scouting-workspace__summary article {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.organization-scouting-workspace__summary strong {
  display: block;
  margin: 5px 0 2px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

.organization-scouting-workspace__summary small {
  color: #aebfb3;
  font-size: 12px;
  font-weight: 800;
}

.organization-scouting-workspace__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.organization-scouting-workspace__list > article:not(.org-prospect-card) {
  grid-column: 1 / -1;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 7px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.organization-scouting-workspace__list > article:not(.org-prospect-card) b {
  display: block;
  color: #ffffff;
}

.organization-scouting-workspace__list > article:not(.org-prospect-card) span {
  display: block;
  margin: 4px 0 8px;
  color: #b7c6ba;
}

.org-prospect-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 12px;
  background: rgba(8, 12, 10, 0.72);
}

.org-prospect-card header {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

.org-prospect-card b {
  display: block;
  margin: 3px 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.08;
}

.org-prospect-card small {
  color: #b7c6ba;
  font-size: 12px;
  font-weight: 800;
}

.org-prospect-card__controls {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 8px;
}

.org-prospect-card label {
  display: grid;
  gap: 6px;
}

.org-prospect-card select,
.org-prospect-card input,
.org-prospect-card textarea {
  width: 100%;
  border: 1px solid rgba(142, 230, 173, 0.17);
  border-radius: 6px;
  padding: 8px 9px;
  color: #f2fff6;
  background: rgba(3, 8, 6, 0.72);
  font: inherit;
}

.org-prospect-card textarea {
  min-height: 82px;
  color: #dfffe9;
  font-size: 12px;
  line-height: 1.4;
  resize: vertical;
}

.scouting-board {
  display: grid;
  gap: 14px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 90% 8%, rgba(216, 255, 118, 0.09), transparent 30%),
    rgba(15, 19, 17, 0.94);
}

.scouting-board__head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 14px;
  align-items: end;
}

.scouting-board__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.scouting-board__head p {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.5;
}

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

.scouting-card {
  display: grid;
  gap: 12px;
  align-content: start;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--player-accent, #8ee6ad) 38%, transparent);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--player-accent, #8ee6ad) 12%, transparent), transparent 58%),
    rgba(11, 15, 13, 0.95);
}

.scouting-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.scouting-card h3 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 20px;
}

.scouting-card p {
  margin: 4px 0 0;
  color: #aebfb3;
  font-size: 13px;
  line-height: 1.4;
}

.scouting-card header strong {
  display: grid;
  justify-items: end;
  color: #ffffff;
  font-size: 34px;
  line-height: 0.9;
}

.scouting-card header small {
  color: var(--player-accent, #d8ff76);
  font-size: 11px;
  font-weight: 950;
}

.scouting-card__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.scouting-card__roles b {
  border: 1px solid color-mix(in srgb, var(--player-accent, #8ee6ad) 34%, transparent);
  border-radius: 999px;
  padding: 5px 8px;
  color: #ffffff;
  background: color-mix(in srgb, var(--player-accent, #8ee6ad) 10%, transparent);
  font-size: 11px;
  font-weight: 950;
}

.scouting-card dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.scouting-card dl div {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 6px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.scouting-card dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.scouting-card__signal {
  border: 1px solid rgba(216, 255, 118, 0.16);
  border-radius: 7px;
  padding: 10px;
  background: rgba(216, 255, 118, 0.055);
}

.scouting-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  justify-content: space-between;
}

.scouting-card button {
  min-height: 34px;
  border: 1px solid rgba(216, 255, 118, 0.42);
  border-radius: 6px;
  padding: 7px 11px;
  color: #07100b;
  background: #d8ff76;
  font-weight: 950;
  cursor: pointer;
}

.scouting-card button.is-saved {
  border-color: rgba(142, 230, 173, 0.52);
  color: #eafff0;
  background: rgba(142, 230, 173, 0.16);
}

.trial-tracker-preview {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 8%, rgba(216, 255, 118, 0.09), transparent 30%),
    linear-gradient(135deg, rgba(88, 101, 242, 0.08), transparent 54%),
    rgba(16, 20, 18, 0.94);
}

.trial-tracker-preview__head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  gap: 14px;
  align-items: end;
}

.trial-tracker-preview__head span,
.trial-tracker-card header span,
.trial-tracker-card dt {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.trial-tracker-preview__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.trial-tracker-preview__head p {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.5;
}

.trial-tracker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trial-tracker-card {
  display: grid;
  gap: 9px;
  min-height: 270px;
  border: 1px solid color-mix(in srgb, var(--player-accent, #8ee6ad) 30%, rgba(142, 230, 173, 0.12));
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--player-accent, #8ee6ad) 11%, transparent), transparent 50%),
    rgba(8, 12, 10, 0.76);
}

.trial-tracker-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.trial-tracker-card header strong {
  display: inline-flex;
  gap: 3px;
  align-items: baseline;
  color: #ffffff;
  font-size: 28px;
  font-weight: 1000;
}

.trial-tracker-card header small {
  color: var(--player-accent, #8ee6ad);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.trial-tracker-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.05;
}

.trial-tracker-card p {
  margin: -4px 0 0;
  color: #b7c6ba;
  font-size: 13px;
  font-weight: 850;
}

.trial-tracker-card dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 0;
}

.trial-tracker-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 6px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.trial-tracker-card dd {
  margin: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trial-tracker-card__signal {
  display: grid;
  gap: 4px;
  border-left: 4px solid var(--player-accent, #8ee6ad);
  padding-left: 9px;
}

.trial-tracker-card__signal b {
  color: var(--player-accent, #8ee6ad);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.trial-tracker-card__signal span {
  color: #dceadf;
  font-size: 12px;
  line-height: 1.35;
}

.trial-tracker-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: auto;
}

.trial-tracker-card button {
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 6px;
  padding: 7px 10px;
  color: #8ee6ad;
  background: rgba(142, 230, 173, 0.06);
  font-weight: 950;
  cursor: pointer;
}

.trial-tracker-card button.is-saved {
  border-color: rgba(216, 255, 118, 0.36);
  color: #d8ff76;
  background: rgba(216, 255, 118, 0.1);
}

.compare-board {
  display: grid;
  gap: 14px;
  margin: 0 0 16px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 183, 63, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), transparent 58%),
    rgba(15, 19, 17, 0.94);
}

.compare-board__head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 14px;
  align-items: end;
}

.compare-board__head span,
.compare-card header span,
.compare-card dt,
.compare-card p span {
  color: #a6b8aa;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.compare-board__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.compare-board__head p {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.5;
}

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

.compare-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  border: 1px solid color-mix(in srgb, var(--player-accent, #8ee6ad) 38%, transparent);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--player-accent, #8ee6ad) 16%, transparent), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(11, 15, 13, 0.95);
}

.compare-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.compare-card h3 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.05;
}

.compare-card header p {
  margin: 4px 0 0;
  color: #aebfb3;
  font-size: 13px;
  line-height: 1.35;
}

.compare-card header strong {
  display: grid;
  justify-items: end;
  color: #ffffff;
  font-size: 34px;
  line-height: 0.9;
}

.compare-card header small {
  color: var(--player-accent, #d8ff76);
  font-size: 11px;
  font-weight: 950;
}

.compare-card__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.compare-card__roles b {
  border: 1px solid color-mix(in srgb, var(--player-accent, #8ee6ad) 34%, transparent);
  border-radius: 999px;
  padding: 5px 8px;
  color: #ffffff;
  background: color-mix(in srgb, var(--player-accent, #8ee6ad) 10%, transparent);
  font-size: 11px;
  font-weight: 950;
}

.compare-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.compare-card dl div {
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 6px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.compare-card dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.compare-card > p {
  margin: 0;
  border: 1px solid rgba(216, 255, 118, 0.16);
  border-radius: 7px;
  padding: 10px;
  color: #b7c6ba;
  background: rgba(216, 255, 118, 0.055);
  font-size: 13px;
  line-height: 1.45;
}

.compare-card > p span {
  display: block;
  margin-bottom: 4px;
  color: #d8ff76;
}

.premium-access-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.premium-access-strip article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 62%),
    rgba(14, 18, 16, 0.94);
}

.premium-access-strip span {
  color: #d8ff76;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-access-strip p {
  margin: 0;
  color: #c9d7cd;
  font-size: 14px;
  line-height: 1.5;
}

.my-pubg-sync-status {
  margin: 0;
  border: 1px solid rgba(216, 255, 118, 0.18);
  border-radius: 7px;
  padding: 10px;
  color: #dfffe9;
  background: rgba(216, 255, 118, 0.06);
  font-size: 13px;
  font-weight: 850;
}

.premium-tier-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
}

.premium-tier-grid h2 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
}

.premium-tier-grid ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 17px;
}

.premium-feature-matrix {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  overflow-x: auto;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 255, 118, 0.09), transparent 30%),
    linear-gradient(135deg, rgba(88, 101, 242, 0.07), transparent 58%),
    rgba(15, 19, 17, 0.94);
}

.premium-feature-matrix__head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  gap: 14px;
  align-items: end;
}

.premium-feature-matrix__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.04;
}

.premium-feature-matrix__head p {
  margin: 0;
  color: #b7c6ba;
  font-size: 14px;
  line-height: 1.5;
}

.premium-feature-matrix__table {
  display: grid;
  min-width: 920px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 8px;
}

.premium-feature-matrix__table > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) repeat(5, minmax(130px, 1fr));
  min-height: 54px;
  border-bottom: 1px solid rgba(142, 230, 173, 0.1);
}

.premium-feature-matrix__table > div:last-child {
  border-bottom: 0;
}

.premium-feature-matrix__table > div:first-child {
  background: rgba(142, 230, 173, 0.08);
}

.premium-feature-matrix__table b,
.premium-feature-matrix__table strong,
.premium-feature-matrix__table span {
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(142, 230, 173, 0.1);
  padding: 9px 10px;
  color: #dcece1;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.premium-feature-matrix__table b:last-child,
.premium-feature-matrix__table span:last-child {
  border-right: 0;
}

.premium-feature-matrix__table b,
.premium-feature-matrix__table strong {
  color: #ffffff;
  font-weight: 950;
}

.premium-feature-matrix__table span {
  color: #c9d7cd;
}

.organization-premium-section {
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  margin: 0 0 16px;
}

.organization-premium-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.organization-premium-grid article {
  display: grid;
  gap: 7px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(243, 181, 74, 0.08), transparent 60%),
    rgba(9, 13, 11, 0.44);
}

.organization-premium-grid p {
  margin: 0;
  color: #c9d7cd;
  font-size: 13px;
  line-height: 1.45;
}

.match-card-grid,
.team-card-grid,
.lootspot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.match-card {
  display: grid;
  gap: 5px;
  padding: 13px;
  color: #dceadf;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.match-card:hover,
.match-card:focus-visible {
  border-color: rgba(216, 255, 118, 0.52);
  background:
    radial-gradient(circle at 86% 16%, rgba(216, 255, 118, 0.13), transparent 30%),
    rgba(142, 230, 173, 0.06);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(142, 230, 173, 0.12);
  transform: translateY(-3px);
}

.match-card.is-active {
  border-color: rgba(69, 196, 126, 0.75);
  background: rgba(69, 196, 126, 0.13);
}

.match-card__number,
.match-card__points {
  color: #9cad9e;
  font-size: 12px;
  font-weight: 800;
}

.match-analyzer-list {
  margin-bottom: 14px;
}

.match-analyzer-table .is-active td {
  background: rgba(243, 181, 74, 0.12);
}

body.public .match-analyzer-table tbody tr {
  transition: filter 180ms ease, transform 180ms ease;
}

body.public .match-analyzer-table tbody tr:hover,
body.public .match-analyzer-table tbody tr:focus-within {
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
  transform: translateY(-1px);
}

body.public .match-analyzer-table tbody tr:hover td,
body.public .match-analyzer-table tbody tr:focus-within td {
  border-color: rgba(216, 255, 118, 0.26);
  background: rgba(142, 230, 173, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(216, 255, 118, 0.08),
    inset 0 -1px 0 rgba(216, 255, 118, 0.06);
}

body.public .match-analyzer-table tbody tr:hover td:first-child,
body.public .match-analyzer-table tbody tr:focus-within td:first-child,
body.public .match-analyzer-table tbody tr.is-active td:first-child {
  box-shadow:
    inset 4px 0 0 #d8ff76,
    inset 0 1px 0 rgba(216, 255, 118, 0.08),
    inset 0 -1px 0 rgba(216, 255, 118, 0.06);
}

.match-analyzer-table__match {
  position: relative;
  overflow: hidden;
  min-width: 240px;
  background:
    linear-gradient(90deg, rgba(13, 17, 15, 0.72), rgba(13, 17, 15, 0.93)),
    var(--match-map-image);
  background-position: center;
  background-size: cover;
}

body.public .match-analyzer-table tbody tr td.match-analyzer-table__match {
  background:
    linear-gradient(90deg, rgba(13, 17, 15, 0.62), rgba(13, 17, 15, 0.93)),
    var(--match-map-image);
  background-position: center;
  background-size: cover;
}

body.public .match-analyzer-table tbody tr:hover td.match-analyzer-table__match,
body.public .match-analyzer-table tbody tr.is-active td.match-analyzer-table__match {
  background:
    linear-gradient(90deg, rgba(21, 23, 20, 0.52), rgba(21, 23, 20, 0.88)),
    var(--match-map-image);
  background-position: center;
  background-size: cover;
}

.match-analyzer-table__match .public-inline-link {
  position: relative;
  z-index: 1;
  color: #f1fff5;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.82);
}

.match-map-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 132px;
}

.match-map-pill__image {
  width: 42px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 4px;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.05);
}

.match-map-pill strong {
  color: #ecfff2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.match-map-pill .pubg-map-text {
  color: var(--map-color);
}

.analyzer-play-link {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 2px solid #f5a400;
  border-radius: 50%;
  color: #f5a400;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.analyzer-play-link:hover {
  background: rgba(245, 164, 0, 0.16);
  color: #ffd782;
}

.match-analyzer {
  display: grid;
  gap: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  background: #171920;
  padding: 18px;
}

.match-analyzer__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.match-analyzer__header span {
  color: #9cad9e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.match-analyzer__header h2 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 22px;
}

.match-analyzer__header p {
  margin-top: 6px;
  color: #c8d2ca;
}

.match-analyzer__summary,
.match-analyzer__teams {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.match-analyzer__summary span,
.match-analyzer__teams span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: #dceadf;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.match-analyzer__summary strong {
  color: #ffffff;
  font-size: 18px;
}

.match-analyzer__summary-icon,
.team-card__metric-icon {
  width: 18px;
  height: 16px;
  object-fit: contain;
  opacity: 0.96;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 6px rgba(142, 230, 173, 0.25));
}

.match-analyzer__teams span {
  border-left: 4px solid var(--team-color);
}

.match-analyzer__teams b {
  color: #ffffff;
}

.match-follow-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 183, 63, 0.08), transparent 30%),
    rgba(18, 22, 20, 0.94);
}

.match-follow-panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.match-follow-panel__head span,
.match-follow-card__top span,
.match-follow-card__top small,
.match-follow-card dt {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.match-follow-panel__head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 22px;
}

.match-follow-panel__head p {
  max-width: 720px;
  margin: 5px 0 0;
  color: #b8c7bd;
  font-size: 13px;
  line-height: 1.45;
}

.match-follow-panel__head > strong {
  flex: 0 0 auto;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 6px;
  padding: 7px 10px;
  color: #8ee6ad;
  background: rgba(142, 230, 173, 0.07);
  font-size: 12px;
  font-weight: 950;
}

.match-follow-overview {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr) minmax(210px, 0.6fr);
  gap: 10px;
  align-items: stretch;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), transparent 54%),
    rgba(5, 8, 7, 0.32);
}

.match-follow-overview > div:first-child {
  display: grid;
  align-content: center;
  gap: 5px;
}

.match-follow-overview span,
.match-follow-overview dt {
  color: #91a295;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.match-follow-overview p {
  margin: 0;
  color: #d4e2d7;
  font-size: 13px;
  line-height: 1.4;
}

.match-follow-overview__steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}

.match-follow-overview__steps b {
  display: grid;
  gap: 3px;
  min-width: 0;
  border: 1px solid rgba(244, 183, 63, 0.16);
  border-radius: 6px;
  padding: 7px;
  background: rgba(244, 183, 63, 0.055);
}

.match-follow-overview__steps span {
  overflow: hidden;
  color: #ffd06a;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-follow-overview__steps small {
  display: -webkit-box;
  overflow: hidden;
  color: #b8c7bd;
  font-size: 10px;
  font-weight: 760;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.match-follow-overview dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.match-follow-overview dl div {
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 6px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.match-follow-overview dd {
  margin: 3px 0 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-follow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.match-follow-card {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--follow-accent) 26%, rgba(142, 230, 173, 0.12));
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--follow-accent) 10%, transparent), transparent 48%),
    rgba(10, 14, 12, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.match-follow-card:hover,
.match-follow-card:focus-within {
  border-color: color-mix(in srgb, var(--follow-accent) 58%, rgba(216, 255, 118, 0.22));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--follow-accent) 17%, transparent), transparent 52%),
    rgba(12, 18, 15, 0.95);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 32px color-mix(in srgb, var(--follow-accent) 15%, transparent);
  transform: translateY(-3px);
}

.match-follow-card__top {
  display: grid;
  gap: 3px;
}

.match-follow-card__top strong,
.match-follow-card__top .public-inline-link {
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  text-decoration: none;
}

.match-follow-card__top .public-inline-link:hover {
  color: #8ee6ad;
}

.match-follow-card__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.match-follow-card__stats div {
  border: 1px solid rgba(142, 230, 173, 0.11);
  border-radius: 6px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.match-follow-card dd {
  margin: 2px 0 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-follow-events {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.match-follow-events button {
  display: grid;
  gap: 2px;
  min-height: 70px;
  align-content: start;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 6px;
  padding: 7px;
  text-align: left;
  color: #dceadf;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.match-follow-events button:hover,
.match-follow-events button.is-active {
  border-color: color-mix(in srgb, var(--follow-accent) 62%, #8ee6ad);
  background: color-mix(in srgb, var(--follow-accent) 17%, rgba(255, 255, 255, 0.04));
}

.match-follow-events b {
  color: var(--follow-accent);
  font-size: 12px;
  font-weight: 950;
}

.match-follow-events span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  color: #ffffff;
  font-size: 11px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-follow-events span i {
  display: inline-grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: #0b120f;
  background: var(--follow-accent);
  font-size: 9px;
  font-style: normal;
  font-weight: 1000;
}

.match-follow-events small {
  display: -webkit-box;
  overflow: hidden;
  color: #aebdb2;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.match-follow-event--zone {
  background: rgba(73, 129, 255, 0.09);
}

.match-follow-event--fight {
  background: rgba(255, 92, 117, 0.09);
}

.match-follow-event--teamfight {
  background: rgba(255, 92, 117, 0.14);
}

.match-follow-event--damage {
  background: rgba(245, 164, 0, 0.09);
}

.match-follow-event--placement {
  background: rgba(142, 230, 173, 0.09);
}

.match-follow-event--final {
  background: rgba(244, 183, 63, 0.08);
}

.match-analyzer__stage {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 10px;
  justify-content: center;
  align-items: stretch;
}

.match-analyzer__rail {
  display: grid;
  align-content: center;
  gap: 10px;
  border-radius: 6px;
  background: #111318;
  padding: 10px 8px;
}

.match-analyzer__rail button,
.match-analyzer__transport button,
.analyzer-marker {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.match-analyzer__rail button {
  width: 34px;
  height: 34px;
  min-height: 34px;
  border-radius: 6px;
  background: transparent;
  color: #e9ecef;
  padding: 0;
  font-weight: 900;
}

.match-analyzer__rail button.is-active,
.match-analyzer__rail button:hover {
  background: #f5a400;
  color: #111318;
}

.match-analyzer__map-shell {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.analyzer-map {
  position: relative;
  isolation: isolate;
  width: min(100%, 860px);
  margin: 0 auto;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    radial-gradient(circle at 48% 48%, rgba(140, 150, 104, 0.8), rgba(80, 87, 68, 0.88) 42%, rgba(32, 42, 38, 0.98));
  background-size: 12.5% 12.5%, 12.5% 12.5%, 100% 100%;
}

.analyzer-map--miramar {
  background:
    linear-gradient(rgba(255, 255, 255, 0.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px),
    radial-gradient(circle at 18% 16%, rgba(110, 102, 82, 0.65), transparent 20%),
    radial-gradient(circle at 82% 68%, rgba(23, 94, 94, 0.9), rgba(23, 94, 94, 0.18) 18%, transparent 28%),
    radial-gradient(circle at 52% 50%, rgba(158, 138, 95, 0.85), rgba(95, 82, 59, 0.95) 48%, rgba(50, 45, 39, 1));
  background-size: 12.5% 12.5%, 12.5% 12.5%, 100% 100%, 100% 100%, 100% 100%;
}

.analyzer-map--erangel {
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    radial-gradient(circle at 52% 82%, rgba(29, 95, 101, 0.85), rgba(29, 95, 101, 0.2) 19%, transparent 29%),
    radial-gradient(circle at 46% 47%, rgba(89, 124, 72, 0.95), rgba(55, 84, 57, 0.92) 46%, rgba(31, 45, 39, 1));
  background-size: 12.5% 12.5%, 12.5% 12.5%, 100% 100%, 100% 100%;
}

.analyzer-map--taego,
.analyzer-map--rondo {
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    radial-gradient(circle at 72% 30%, rgba(43, 111, 117, 0.72), transparent 24%),
    radial-gradient(circle at 44% 52%, rgba(102, 122, 81, 0.94), rgba(70, 84, 62, 0.94) 45%, rgba(36, 43, 40, 1));
  background-size: 12.5% 12.5%, 12.5% 12.5%, 100% 100%, 100% 100%;
}

.analyzer-map::before,
.analyzer-map::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.analyzer-map::before {
  z-index: 0;
  background:
    repeating-linear-gradient(27deg, transparent 0 30px, rgba(255, 255, 255, 0.05) 31px 34px, transparent 35px 64px),
    repeating-linear-gradient(119deg, transparent 0 46px, rgba(0, 0, 0, 0.16) 47px 50px, transparent 51px 94px);
  opacity: 0.55;
}

.analyzer-map::after {
  z-index: 7;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.55);
}

.analyzer-counters {
  position: absolute;
  z-index: 9;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
}

.analyzer-counters span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  background: rgba(17, 19, 24, 0.86);
  color: #ffffff;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.analyzer-counters strong {
  min-width: 34px;
  background: #111318;
  padding: 6px 8px;
  text-align: center;
}

.analyzer-map-labels span {
  position: absolute;
  z-index: 2;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-shadow: 0 1px 3px #000000;
  white-space: nowrap;
}

.analyzer-svg {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.analyzer-svg__zones circle {
  fill: rgba(92, 149, 255, 0.08);
  stroke: rgba(180, 216, 255, 0.58);
  stroke-width: 0.45;
  vector-effect: non-scaling-stroke;
}

.analyzer-svg__paths polyline {
  fill: none;
  opacity: 0.75;
  stroke-width: 0.5;
  stroke-dasharray: 2 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.analyzer-svg__flight {
  stroke: #ffffff;
  stroke-width: 1.05;
  stroke-dasharray: 4 2;
  vector-effect: non-scaling-stroke;
}

.analyzer-svg__flight-dot {
  fill: #ff4b5b;
  stroke: #ffffff;
  stroke-width: 0.35;
  vector-effect: non-scaling-stroke;
}

.analyzer-markers {
  position: absolute;
  z-index: 8;
  inset: 0;
}

.analyzer-marker {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  display: grid;
  width: 34px;
  height: 34px;
  min-height: 34px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: var(--team-color);
  color: #101216;
  padding: 0;
  transform: translate(-50%, -50%);
  transition: left 120ms linear, top 120ms linear, opacity 120ms linear, filter 120ms linear;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.analyzer-marker span {
  max-width: 28px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 1000;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analyzer-marker.is-out {
  opacity: 0.34;
  filter: grayscale(0.65);
}

.match-analyzer__controls {
  display: grid;
  gap: 8px;
  width: min(100%, 860px);
  margin: 0 auto;
  background: #111318;
  padding: 12px;
}

.match-analyzer__controls input[type="range"] {
  width: 100%;
  min-height: 18px;
  accent-color: #f5a400;
}

.match-analyzer__transport {
  display: flex;
  gap: 8px;
  align-items: center;
}

.match-analyzer__transport button {
  min-height: 30px;
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  padding: 2px 7px;
  font-weight: 900;
}

.match-analyzer__transport button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.match-analyzer__transport output {
  margin-left: auto;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.match-analyzer--konva {
  padding: 18px;
}

.konva-viewer {
  display: grid;
  gap: 12px;
}

.konva-viewer__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.konva-viewer__header span {
  color: #9cad9e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.konva-viewer__header h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 22px;
}

.konva-viewer__header p {
  margin-top: 5px;
}

.konva-viewer__source {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 7px;
  border: 1px solid rgba(156, 173, 158, 0.28);
  border-radius: 5px;
  color: #9cad9e;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  vertical-align: 1px;
}

.konva-viewer__source.is-telemetry {
  border-color: rgba(39, 210, 114, 0.42);
  color: #93f0ad;
}

.konva-viewer__source.is-mock {
  border-color: rgba(245, 164, 0, 0.45);
  color: #ffc04d;
}

.konva-viewer__zoom,
.konva-playback__row,
.team-trace-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.konva-viewer__zoom button,
.konva-playback button,
.team-trace-panel button {
  min-height: 34px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-weight: 900;
}

.konva-viewer__zoom button:hover,
.konva-playback button:hover,
.team-trace-panel button:hover {
  border-color: rgba(245, 164, 0, 0.68);
}

.konva-viewer__layout {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px minmax(260px, 320px);
  gap: 10px;
  align-items: start;
}

.konva-viewer__layout.is-panel-hidden {
  grid-template-columns: 54px minmax(0, 1fr) 54px;
}

.konva-viewer__canvas-column {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.konva-map-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.konva-map-hud {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 12px;
  display: flex;
  max-width: calc(100% - 24px);
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: none;
}

.konva-map-hud strong,
.konva-map-hud span {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 19, 24, 0.86);
  color: #ffffff;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.konva-map-hud strong {
  max-width: min(420px, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.konva-map-hud b {
  margin-left: 6px;
  color: #f5a400;
  font-size: 16px;
}

.konva-viewer__canvas-column .konvajs-content {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #101318;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
}

.konva-viewer[data-tool="pan"] .konvajs-content {
  cursor: grab;
}

.konva-viewer[data-tool="pan"][data-map-dragging="true"] .konvajs-content {
  cursor: grabbing;
}

.konva-viewer[data-tool="pencil"] .konvajs-content,
.konva-viewer[data-tool="zone"] .konvajs-content {
  cursor: crosshair;
}

.konva-viewer[data-tool="eraser"] .konvajs-content {
  cursor: cell;
}

.konva-viewer[data-hovered-player]:not([data-hovered-player=""]) .konvajs-content {
  cursor: pointer;
}

.konva-toolbar {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #111318;
  padding: 10px 8px;
}

.konva-toolbar [data-tooltip] {
  position: relative;
  overflow: visible;
}

.konva-toolbar [data-tooltip]::before,
.konva-toolbar [data-tooltip]::after {
  position: absolute;
  top: 50%;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.konva-toolbar [data-tooltip]::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.konva-toolbar [data-tooltip]::after {
  content: attr(data-tooltip);
  width: max-content;
  max-width: 220px;
  border: 1px solid rgba(245, 164, 0, 0.42);
  border-radius: 6px;
  background: rgba(17, 19, 24, 0.96);
  color: #ffffff;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
  white-space: normal;
}

.konva-toolbar [data-tooltip]:hover::before,
.konva-toolbar [data-tooltip]:hover::after,
.konva-toolbar [data-tooltip]:focus-visible::before,
.konva-toolbar [data-tooltip]:focus-visible::after,
.konva-toolbar [data-tooltip]:focus-within::before,
.konva-toolbar [data-tooltip]:focus-within::after {
  opacity: 1;
}

.konva-toolbar--left [data-tooltip]::before {
  left: calc(100% + 4px);
  border-right: 6px solid rgba(17, 19, 24, 0.96);
  transform: translate(0, -50%);
}

.konva-toolbar--left [data-tooltip]::after {
  left: calc(100% + 10px);
  transform: translate(-4px, -50%);
}

.konva-toolbar--left [data-tooltip]:hover::after,
.konva-toolbar--left [data-tooltip]:focus-visible::after,
.konva-toolbar--left [data-tooltip]:focus-within::after {
  transform: translate(0, -50%);
}

.konva-toolbar--right [data-tooltip]::before {
  right: calc(100% + 4px);
  border-left: 6px solid rgba(17, 19, 24, 0.96);
  transform: translate(0, -50%);
}

.konva-toolbar--right [data-tooltip]::after {
  right: calc(100% + 10px);
  transform: translate(4px, -50%);
}

.konva-toolbar--right [data-tooltip]:hover::after,
.konva-toolbar--right [data-tooltip]:focus-visible::after,
.konva-toolbar--right [data-tooltip]:focus-within::after {
  transform: translate(0, -50%);
}

.konva-toolbar button {
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #e9ecef;
  padding: 0;
  font-size: 12px;
  font-weight: 1000;
  cursor: pointer;
}

.konva-toolbar button.is-active,
.konva-toolbar button:hover {
  background: #f5a400;
  color: #111318;
}

.konva-color {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.konva-color input {
  width: 24px;
  height: 24px;
  min-height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
}

.konva-playback {
  display: grid;
  gap: 8px;
  background: #111318;
  padding: 12px;
}

.konva-playback input[type="range"] {
  width: 100%;
  min-height: 18px;
  accent-color: #f5a400;
}

.konva-playback output {
  margin-left: auto;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.team-trace-panel {
  max-height: min(860px, calc(100vh - 160px));
  overflow: auto;
  border-left: 6px solid rgba(255, 255, 255, 0.08);
  background: #15171d;
}

.team-trace-panel__team {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 6px solid var(--team-color);
}

.team-trace-panel__team.is-active {
  background: rgba(255, 255, 255, 0.04);
}

.team-trace-panel__summary {
  display: grid;
  width: 100%;
  grid-template-columns: 54px 42px minmax(0, 1fr) 22px;
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 12px 12px;
  text-align: left;
}

.team-trace-panel__rank {
  color: #9cad9e;
  font-weight: 1000;
}

.team-trace-panel__logo {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(245, 164, 0, 0.68);
  background: rgba(245, 164, 0, 0.12);
  color: #ffd37b;
  font-size: 11px;
  font-weight: 1000;
}

.team-trace-panel__name {
  overflow: hidden;
  color: #dce4dd;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-trace-panel__body {
  display: grid;
  gap: 8px;
  padding: 10px 12px 14px 28px;
}

.team-trace-panel__actions button,
.team-trace-panel__player button {
  border-color: rgba(69, 196, 126, 0.55);
  background: transparent;
  color: #a7f0bd;
  text-transform: uppercase;
}

.team-trace-panel__actions button.is-active,
.team-trace-panel__player button.is-active {
  background: rgba(69, 196, 126, 0.18);
  color: #ffffff;
}

.team-trace-panel__player {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto 22px;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.team-trace-panel__player span {
  overflow: hidden;
  color: #ffffff;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-trace-panel__player button {
  min-height: 28px;
  padding: 4px 8px;
  font-size: 11px;
}

.team-trace-panel__player i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4ed100;
  box-shadow: 0 0 16px rgba(78, 209, 0, 0.35);
}

.team-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.team-spotlight,
.team-profile-spotlight {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.team-session-card,
.team-performance-story,
.team-performance-timeline {
  margin-bottom: 14px;
}

.team-performance-story {
  --my-pubg-card-gap: clamp(10px, 0.9vw, 14px);
  --my-pubg-panel-padding: clamp(14px, 1.05vw, 18px);
}

.team-performance-timeline,
.team-session-card {
  --my-pubg-card-gap: clamp(10px, 0.9vw, 14px);
  --my-pubg-panel-padding: clamp(14px, 1.05vw, 18px);
}

.team-profile-page > .team-session-card,
.team-profile-page > .team-performance-story,
.team-profile-page > .team-performance-timeline,
.team-profile-page > .team-profile-spotlight,
.team-profile-page > .team-spotlight {
  margin-bottom: 0;
}

.team-spotlight {
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 10%, rgba(243, 181, 74, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), transparent 56%),
    rgba(18, 22, 20, 0.95);
  padding: 16px;
}

.team-spotlight__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.team-spotlight__header span,
.team-profile-map span,
.team-profile-radar header span {
  color: #91a295;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.team-spotlight__header h2,
.team-profile-radar h2 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 22px;
}

.team-spotlight__header p {
  max-width: 520px;
  margin: 0;
  color: #b8c7bd;
  font-size: 13px;
  line-height: 1.45;
}

.team-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.team-spotlight-card,
.team-profile-map,
.team-profile-radar {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  background: rgba(13, 18, 15, 0.88);
}

.team-spotlight-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 36%, color-mix(in srgb, var(--team-accent) 18%, transparent), transparent 42%),
    rgba(13, 18, 15, 0.9);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.team-spotlight-card--link,
.team-card--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.team-spotlight-card--link:focus-visible,
.team-card--link:focus-visible {
  outline: 2px solid rgba(216, 255, 118, 0.72);
  outline-offset: 3px;
}

.team-spotlight-card:hover,
.team-spotlight-card:focus-within {
  border-color: color-mix(in srgb, var(--team-accent) 54%, rgba(216, 255, 118, 0.22));
  background:
    radial-gradient(circle at 50% 36%, color-mix(in srgb, var(--team-accent) 26%, transparent), transparent 44%),
    rgba(18, 25, 21, 0.96);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 34px color-mix(in srgb, var(--team-accent) 15%, transparent);
  transform: translateY(-3px);
}

.team-spotlight-card__head,
.team-profile-radar header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.team-spotlight-card h3 {
  margin: 7px 0 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.05;
}

.team-spotlight-card__body {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
}

.team-spotlight-card__body .player-radar-chart {
  width: min(100%, 230px);
}

.team-spotlight-card__note {
  position: absolute;
  left: 4px;
  bottom: 3px;
  color: #91a295;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.team-spotlight-card__score {
  position: absolute;
  right: 4px;
  bottom: 0;
  display: grid;
  justify-items: end;
}

.team-spotlight-card__score strong,
.team-profile-radar header strong {
  color: #ffffff;
  font-size: 44px;
  font-weight: 1000;
  line-height: 0.9;
}

.team-spotlight-card__score span,
.team-profile-radar header small {
  color: var(--team-accent);
  font-size: 13px;
  font-weight: 1000;
}

.team-spotlight-card__stats,
.team-profile-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.team-spotlight-card__stats span,
.team-profile-breakdown span {
  display: grid;
  gap: 2px;
  min-height: 48px;
  align-content: center;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 6px;
  padding: 8px;
  color: #91a295;
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-spotlight-card__stats b,
.team-profile-breakdown em {
  overflow: hidden;
  color: #ffffff;
  font-size: 16px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-spotlight-card__link {
  justify-self: start;
  color: #8ee6ad;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.team-spotlight-card__link:hover {
  color: #ffffff;
}

.team-spotlight-card--link:hover .team-spotlight-card__link,
.team-spotlight-card--link:focus-visible .team-spotlight-card__link,
.team-card--link:hover .public-inline-link,
.team-card--link:focus-visible .public-inline-link {
  color: #ffffff;
}

.team-card--enhanced {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--team-accent) 9%, transparent), transparent 56%),
    rgba(21, 25, 23, 0.94);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.team-card--enhanced::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--team-accent);
  opacity: 0.86;
}

.team-card--enhanced:hover,
.team-card--enhanced:focus-within {
  border-color: color-mix(in srgb, var(--team-accent) 52%, rgba(216, 255, 118, 0.24));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--team-accent) 15%, transparent), transparent 58%),
    rgba(23, 31, 26, 0.98);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 32px color-mix(in srgb, var(--team-accent) 14%, transparent);
  transform: translateY(-3px);
}

.team-card__score-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.team-card__score-row strong {
  display: flex;
  min-height: 46px;
  align-items: flex-end;
  justify-content: space-between;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 6px;
  padding: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 28px;
  font-weight: 1000;
  line-height: 0.9;
}

.team-card__score-row small {
  color: var(--team-accent);
  font-size: 11px;
  font-weight: 950;
}

.team-card__form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}

.team-card__form span {
  display: grid;
  min-height: 42px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(142, 230, 173, 0.12);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 950;
}

.team-card__form b,
.team-card__form em {
  color: #91a295;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.team-profile-spotlight {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
}

.team-profile-map {
  min-height: 350px;
}

.team-profile-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.15) contrast(1.05);
}

.team-profile-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.9), rgba(8, 12, 10, 0.38)),
    linear-gradient(180deg, transparent, rgba(8, 12, 10, 0.82));
}

.team-profile-map div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 350px;
  padding: 20px;
}

.team-profile-map h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.95;
}

.team-profile-map p {
  margin: 12px 0 0;
  color: #c8d6cd;
  font-size: 14px;
  font-weight: 900;
}

.team-profile-radar {
  display: grid;
  gap: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--team-accent) 16%, transparent), transparent 48%),
    rgba(18, 22, 20, 0.9);
}

.team-profile-radar .player-radar-chart {
  display: block;
  width: min(100%, 300px);
  justify-self: center;
}

.team-profile-breakdown {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-card__header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.team-card h2 {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 18px;
}

.team-card__metrics,
.mini-results,
.roster-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-card__metrics span,
.mini-results span {
  display: inline-flex;
  gap: 5px;
  min-height: 26px;
  align-items: center;
  border-radius: 6px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #dceadf;
  font-size: 12px;
  font-weight: 800;
}

.stat-card__icon.pubg-inline-asset--natural,
.public-hero__aside-icon.pubg-inline-asset--natural,
.pubg-resource-icon.pubg-inline-asset--natural,
.stats-table__icon.pubg-inline-asset--natural,
.performance-score__icon.pubg-inline-asset--natural,
.match-analyzer__summary-icon.pubg-inline-asset--natural,
.team-card__metric-icon.pubg-inline-asset--natural,
.player-radar-card__stat-icon.pubg-inline-asset--natural {
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 10px rgba(243, 181, 74, 0.18));
}

.lootspot-section {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lootspot-section:hover,
.lootspot-section:focus-within {
  border-color: rgba(216, 255, 118, 0.5);
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 255, 118, 0.12), transparent 30%),
    rgba(21, 29, 24, 0.96);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(142, 230, 173, 0.13);
  transform: translateY(-3px);
}

.lootspot-map-preview {
  display: grid;
  place-items: center;
  min-height: 170px;
  border-bottom: 1px solid rgba(142, 230, 173, 0.14);
  background:
    linear-gradient(135deg, rgba(69, 196, 126, 0.18), rgba(243, 181, 74, 0.12)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
  color: #ffffff;
  transition: border-color 180ms ease, filter 180ms ease;
}

.lootspot-section:hover .lootspot-map-preview,
.lootspot-section:focus-within .lootspot-map-preview {
  border-color: rgba(216, 255, 118, 0.32);
  filter: saturate(1.14) contrast(1.04);
}

body.public .lootspot-section .stats-table tbody tr:hover td,
body.public .lootspot-section .stats-table tbody tr:focus-within td {
  border-color: rgba(216, 255, 118, 0.24);
  background: rgba(142, 230, 173, 0.13);
}

body.public .lootspot-section .stats-table tbody tr:hover td:first-child,
body.public .lootspot-section .stats-table tbody tr:focus-within td:first-child {
  box-shadow: inset 4px 0 0 #d8ff76;
}

.lootspot-map-preview span {
  color: #a9b8ad;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lootspot-map-preview strong {
  font-size: 28px;
}

.empty-state {
  padding: 22px;
}

.empty-state h2 {
  margin: 0;
  color: #ffffff;
}

.empty-state p {
  margin-top: 6px;
}

@keyframes public-load {
  0% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.35;
  }
}

@keyframes pubg-bg-drift {
  0% {
    background-position:
      0 0,
      0 0,
      right -90px top 108px,
      left -92px bottom -96px;
  }
  100% {
    background-position:
      90px 0,
      90px 0,
      right -42px top 82px,
      left -38px bottom -64px;
  }
}

@keyframes duel-fighter-left-idle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  18% {
    transform: translate3d(3px, -5px, 0) rotate(-0.7deg) scale(1.006);
  }
  34% {
    transform: translate3d(1px, 1px, 0) rotate(0.4deg) scale(0.996);
  }
  46% {
    transform: translate3d(-7px, -2px, 0) rotate(-1deg) scale(1.002);
  }
  55% {
    transform: translate3d(-2px, 2px, 0) rotate(0.2deg) scale(0.998);
  }
  72% {
    transform: translate3d(2px, -4px, 0) rotate(0.7deg) scale(1.004);
  }
  86% {
    transform: translate3d(0, 1px, 0) rotate(-0.2deg) scale(0.998);
  }
}

@keyframes duel-fighter-right-idle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  18% {
    transform: translate3d(-3px, -5px, 0) rotate(0.7deg) scale(1.006);
  }
  34% {
    transform: translate3d(-1px, 1px, 0) rotate(-0.4deg) scale(0.996);
  }
  46% {
    transform: translate3d(7px, -2px, 0) rotate(1deg) scale(1.002);
  }
  55% {
    transform: translate3d(2px, 2px, 0) rotate(-0.2deg) scale(0.998);
  }
  72% {
    transform: translate3d(-2px, -4px, 0) rotate(-0.7deg) scale(1.004);
  }
  86% {
    transform: translate3d(0, 1px, 0) rotate(0.2deg) scale(0.998);
  }
}

@keyframes duel-tracer-left {
  0%,
  43%,
  100% {
    opacity: 0;
    transform: rotate(3.4deg) scaleX(0);
  }
  44.5% {
    opacity: 0.95;
    transform: rotate(3.4deg) scaleX(0.12);
  }
  47.5% {
    opacity: 0.82;
    transform: rotate(3.4deg) scaleX(1);
  }
  50% {
    opacity: 0;
    transform: rotate(3.4deg) scaleX(1.04);
  }
}

@keyframes duel-tracer-right {
  0%,
  43%,
  100% {
    opacity: 0;
    transform: rotate(-3.4deg) scaleX(0);
  }
  44.5% {
    opacity: 0.95;
    transform: rotate(-3.4deg) scaleX(0.12);
  }
  47.5% {
    opacity: 0.82;
    transform: rotate(-3.4deg) scaleX(1);
  }
  50% {
    opacity: 0;
    transform: rotate(-3.4deg) scaleX(1.04);
  }
}

@keyframes duel-muzzle {
  0%,
  41%,
  100% {
    opacity: 0;
    transform: scale(0.2);
  }
  44% {
    opacity: 0.95;
    transform: scale(1);
  }
  49% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes duel-center-spark {
  0%,
  50%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
  54% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(1);
  }
  60% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.45);
  }
}

@keyframes scrima-panel-in {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes scrima-card-in {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.982);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes scrima-row-in {
  from {
    opacity: 0;
    transform: translate3d(-8px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scrima-badge-pop {
  from {
    opacity: 0;
    transform: translate3d(0, 4px, 0) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes scrima-radar-grid-in {
  from {
    opacity: 0;
    stroke-dashoffset: 28;
  }

  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes scrima-radar-stroke-in {
  from {
    opacity: 0;
    stroke-dashoffset: var(--scrima-radar-dash, 420);
  }

  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes scrima-radar-area-in {
  from {
    opacity: 0;
    transform: scale(0.14);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scrima-meter-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.public-hero--pro {
  border-color: rgba(121, 221, 255, 0.24);
  background:
    linear-gradient(115deg, rgba(14, 30, 34, 0.94), rgba(10, 13, 11, 0.96) 54%, rgba(36, 28, 10, 0.72)),
    radial-gradient(circle at 84% 18%, rgba(255, 211, 110, 0.16), transparent 34%),
    radial-gradient(circle at 14% 88%, rgba(121, 221, 255, 0.12), transparent 30%);
}

.public-hero--pro .public-kicker,
.pro-section-head span,
.pro-event-card span,
.pro-match-card span,
.pro-profile-spotlight span {
  color: #9fffd1;
}

.pro-segment-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 8px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background: rgba(7, 12, 9, 0.78);
}

.pro-segment-nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 7px;
  padding: 0 12px;
  color: #d8e6dd;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.pro-segment-nav a:hover,
.pro-segment-nav a:focus-visible,
.pro-segment-nav a.is-active {
  border-color: rgba(159, 255, 209, 0.62);
  background: rgba(159, 255, 209, 0.12);
  color: #ffffff;
  box-shadow: 0 0 22px rgba(121, 221, 255, 0.14);
}

.pro-event-rail,
.pro-match-strip,
.pro-leaderboard-preview,
.pro-profile-spotlight {
  margin-top: 16px;
}

.pro-section-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-end;
  margin-bottom: 10px;
}

.pro-section-head span {
  display: block;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.pro-section-head h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 24px;
}

.pro-event-grid,
.pro-match-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pro-event-card,
.pro-match-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 150px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 25, 20, 0.94), rgba(7, 12, 9, 0.98)),
    rgba(10, 16, 12, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.pro-event-card::before,
.pro-match-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pro-event-card.is-review {
  border-color: rgba(255, 211, 110, 0.46);
  background:
    linear-gradient(135deg, rgba(37, 28, 9, 0.88), rgba(8, 13, 10, 0.98));
}

.pro-event-card img,
.pro-match-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.86) contrast(1.08);
}

.pro-event-card > div,
.pro-match-card > div {
  position: relative;
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
  padding: 12px;
}

.pro-event-card h3,
.pro-match-card strong {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.05;
}

.pro-event-card p,
.pro-match-card p,
.pro-event-card small,
.pro-match-card small {
  margin: 0;
  color: #aebdb3;
  font-size: 12px;
  font-weight: 800;
}

.pro-event-card dl,
.pro-match-card dl,
.pro-profile-spotlight dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.pro-event-card dl div,
.pro-match-card dl div,
.pro-profile-spotlight dl div {
  min-width: 0;
  border: 1px solid rgba(142, 230, 173, 0.13);
  border-radius: 6px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.23);
}

.pro-event-card dt,
.pro-match-card dt,
.pro-profile-spotlight dt {
  color: #9bac9f;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.pro-event-card dd,
.pro-match-card dd,
.pro-profile-spotlight dd {
  margin: 2px 0 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.pro-leaderboard-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pro-preview-panel,
.pro-profile-spotlight {
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 84% 16%, rgba(159, 255, 209, 0.1), transparent 28%),
    rgba(12, 18, 14, 0.9);
}

.pro-profile-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  align-items: center;
  gap: 16px;
}

.pro-profile-spotlight h2 {
  margin: 4px 0;
  color: #ffffff;
  font-size: 34px;
}

.pro-profile-spotlight p {
  margin: 0 0 14px;
  color: #b9c7be;
  font-weight: 800;
}

.pro-profile-spotlight .player-radar-chart {
  width: min(100%, 330px);
  justify-self: center;
}

.pro-team-mini-card,
.pro-player-mini-card {
  border-color: rgba(159, 255, 209, 0.2);
}

.pro-team-mini-card .player-radar-chart {
  width: min(100%, 190px);
  justify-self: center;
}

@media (max-width: 1080px) {
  body.public::after {
    opacity: 0.22;
  }

  .public-duel-fire {
    opacity: 0.72;
  }

  .public-hero,
  .public-home-hero,
  .public-hero-feature--media,
  .public-hero-feature--radar,
  .team-directory-empty-status,
  .match-card-grid,
  .team-card-grid,
  .lootspot-grid {
    grid-template-columns: 1fr;
  }

  .team-directory-empty-status__actions {
    justify-content: flex-start;
  }

  .public-home-hero__board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-home-hero__login-paths {
    grid-template-columns: 1fr;
  }

  .competition-card-grid,
  .competition-join-panel,
  .competition-user-summary,
  .competition-podium,
  .competition-previous-list,
  .feature-gate-section {
    grid-template-columns: 1fr;
  }

  .feature-gate-section__mark {
    width: 100%;
    height: auto;
    min-height: 48px;
    grid-template-columns: auto auto;
    gap: 8px;
  }

  .feature-gate-section__actions {
    justify-items: stretch;
    min-width: 0;
  }

  .competition-mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .public-footer__inner {
    grid-template-columns: 1fr;
  }

  .public-footer__nav,
  .public-footer__disclaimer {
    justify-content: flex-start;
    justify-items: start;
  }

  .public-footer__nav {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .auth-team-branding-row {
    grid-template-columns: 76px minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .auth-team-branding-actions {
    justify-content: flex-start;
  }

  .public-results-layout {
    grid-template-columns: 1fr;
  }

  .discord-bot-promo,
  .discord-bot-promo--compact,
  .discord-bot-promo--product {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .discord-bot-promo__stats {
    grid-column: 1 / -1;
  }

  .discord-bot-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discord-bot-command-center,
  .discord-bot-embed-section,
  .discord-bot-state-machine__list,
  .discord-bot-blueprint__head,
  .organization-premium-section {
    grid-template-columns: 1fr;
  }

  .discord-bot-automation-grid,
  .discord-bot-handoff,
  .create-lobby-wizard-nav,
  .create-lobby-draft__grid,
  .create-lobby-draft__toggles,
  .create-lobby-steps,
  .create-lobby-readiness__grid,
  .zero-admin-pipeline__grid,
  .create-lobby-safety,
  .my-pubg-summary-grid,
  .leaderboard-signal-grid,
  .scouting-summary-grid,
  .scouting-grid,
  .organization-scouting-workflow__steps,
  .organization-scouting-workspace__summary,
  .organization-scouting-workspace__list,
  .trial-tracker-grid,
  .compare-grid,
  .saved-watchlist-summary,
  .saved-watchlist-actions,
  .saved-watchlist-notes,
  .notification-summary,
  .notification-toggle-grid,
  .auth-panel,
  .premium-access-strip,
  .premium-tier-grid,
  .my-pubg-performance-story,
  .my-pubg-session-card__stats,
  .my-pubg-session-card__matches,
  .my-pubg-team-grid,
  .my-pubg-team-card__stats,
  .soft-login-ladder__steps,
  .match-follow-grid,
  .resource-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-home-lanes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-identity-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-data-consent-card {
    grid-template-columns: 1fr;
  }

  .my-pubg-sync-review__head,
  .my-pubg-auto-save__head,
  .my-pubg-performance-timeline__body,
  .my-pubg-sync-board__head,
  .my-pubg-sync-lobby-card,
  .my-pubg-auto-sessions__head,
  .my-pubg-auto-session__main,
  .my-pubg-auto-session__name form {
    grid-template-columns: 1fr;
  }

  .my-pubg-sync-board__primary-action,
  .my-pubg-sync-board__saved-badge {
    justify-self: stretch;
    text-align: center;
  }

  .my-pubg-sync-board__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .my-pubg-sync-review__head dl,
  .my-pubg-auto-save__summary,
  .my-pubg-auto-save__facts,
  .my-pubg-sync-board__summary,
  .my-pubg-sync-board__facts,
  .my-pubg-session-card__stats,
  .my-pubg-auto-sessions__head dl,
  .my-pubg-auto-session__main dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .my-pubg-sync-lobby-card__map {
    min-height: 140px;
    max-height: 180px;
  }

  .my-pubg-sync-lobby-card__top,
  .my-pubg-sync-lobby-card__controls {
    grid-template-columns: 1fr;
  }

  .my-pubg-sync-lobby-card__top dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    min-height: 430px;
  }

  .auth-panel--single {
    grid-template-columns: minmax(0, 560px);
  }

  .match-follow-overview {
    grid-template-columns: 1fr;
  }

  .match-follow-overview__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scouting-board__head,
  .organization-scouting-workflow__head,
  .organization-scouting-workspace__head,
  .trial-tracker-preview__head,
  .compare-board__head,
  .saved-watchlist-board__head,
  .saved-notes-board__head,
  .notification-settings__head,
  .leaderboard-filter-panel__head,
  .leaderboard-signal-strip__head,
  .my-pubg-session-card__head,
  .discord-bot-state-machine__head,
  .premium-feature-matrix__head,
  .public-home-lanes__head,
  .soft-login-ladder__head,
  .zero-admin-pipeline__head,
  .create-lobby-readiness__head,
  .create-lobby-page__intro,
  .create-lobby-preview,
  .discord-bot-alert-section {
    grid-template-columns: 1fr;
  }

  .create-lobby-page__actions {
    justify-content: flex-start;
  }

  .leaderboard-signal-strip__actions {
    justify-content: flex-start;
  }

  .leaderboard-filter-panel__controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .create-lobby-draft__head,
  .create-lobby-draft__handoff {
    grid-template-columns: 1fr;
  }

  .create-lobby-draft__head > p,
  .create-lobby-draft__actions {
    justify-self: start;
    justify-content: flex-start;
  }

  .my-pubg-shell,
  .my-pubg-focus-hero,
  .my-pubg-player-hero,
  .my-pubg-watchlist-strip,
  .my-pubg-hero-card,
  .my-pubg-private-grid,
  .soft-login-save-strip,
  .soft-login-strip,
  .scrim-lobby-actions {
    grid-template-columns: 1fr;
  }

  .soft-login-save-strip__actions {
    justify-content: flex-start;
  }

  .my-pubg-watchlist-strip__actions {
    justify-content: flex-start;
  }

  .my-pubg-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .my-pubg-session-card__head {
    align-items: stretch;
    flex-direction: column;
  }

  .player-timeline-events {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .player-radar-block__header {
    flex-direction: column;
  }

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

  .player-radar-average {
    justify-content: flex-start;
  }

  .player-profile-spotlight {
    grid-template-columns: 1fr;
  }

  .player-profile-mode-strip {
    grid-template-columns: 1fr;
  }

  .player-impact-grid,
  .player-role-section__body,
  .player-advanced-grid {
    grid-template-columns: 1fr;
  }

  .player-role-grid,
  .player-role-reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tournament-hub-grid {
    grid-template-columns: 1fr;
  }

  .tournament-path {
    grid-template-columns: 1fr;
  }

  .tournament-lobby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-home-grid,
  .public-home-lanes__grid,
  .public-home-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-soft-login-feature {
    grid-template-columns: 1fr;
  }

  .home-soft-login-feature__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-soft-login-feature__cards article {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 112px;
  }

  .home-soft-login-feature__icon {
    width: 40px;
    height: 40px;
  }

  .tournament-access-strip {
    grid-template-columns: 1fr;
  }

  .tournament-access-strip__links {
    justify-content: flex-start;
  }

  .match-history-insight {
    grid-template-columns: 1fr;
  }

  .tournament-series-list a {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .tournament-series-list small {
    grid-column: 2;
    text-align: left;
  }

  .player-weapon-list {
    grid-template-columns: repeat(2, minmax(230px, 1fr));
  }

  .team-spotlight__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-spotlight__grid,
  .team-profile-spotlight,
  .match-follow-grid,
  .resource-usage-grid {
    grid-template-columns: 1fr;
  }

  .match-follow-overview__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .match-follow-overview dl {
    grid-template-columns: 1fr;
  }

  .resource-browser__head {
    grid-template-columns: 1fr;
  }

  .resource-browser__head strong {
    width: fit-content;
  }

  .player-profile-filter__head {
    flex-direction: column;
  }

  .player-timeline-section__head,
  .player-timeline-item header {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-tabs {
    display: flex;
    overflow-x: auto;
    padding: 8px;
  }

  .public-tabs a {
    flex: 0 0 220px;
  }

  .scrim-event-item {
    grid-template-columns: 1fr;
  }

  .scrim-event-item__main {
    grid-template-columns: 124px minmax(0, 1fr);
  }

  .pubg-scrim-mark {
    width: 104px;
    height: 72px;
  }

  .scrim-event-item__action {
    grid-column: auto;
    justify-content: flex-start;
  }

  .scrim-event-item__meta {
    grid-template-columns: 1fr 1fr;
  }

  .match-analyzer__header {
    flex-direction: column;
  }

  .match-analyzer__stage {
    grid-template-columns: 1fr;
  }

  .match-analyzer__rail {
    display: flex;
    overflow-x: auto;
    align-content: initial;
  }

  .konva-viewer__layout,
  .konva-viewer__layout.is-panel-hidden {
    grid-template-columns: 1fr;
  }

  .konva-toolbar {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .team-trace-panel {
    max-height: 420px;
    border-left-width: 0;
    border-top: 6px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 640px) {
  body.public::after {
    opacity: 0.16;
    background:
      linear-gradient(110deg, transparent 0 38%, rgba(142, 230, 173, 0.08) 48%, transparent 59%),
      url("/pubg-assets/map-miramar.png?v=1") right -110px top 90px / 320px 320px no-repeat,
      url("/pubg-assets/map-erangel.png?v=1") left -120px bottom -80px / 300px 300px no-repeat;
    animation: none;
  }

  .public-duel-fire {
    display: none;
  }

  body.public main {
    width: min(100% - 20px, 1320px);
    padding-top: 16px;
  }

  .public-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: auto;
    padding-block: 8px;
  }

  .public-header-brand {
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .public-primary-nav {
    grid-column: 1 / -1;
    width: 100%;
    overflow: visible;
    justify-content: flex-start;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .public-primary-nav a:nth-child(n+4) {
    display: none;
  }

  .team-empty-flow {
    grid-template-columns: 1fr;
  }

  .public-hero-feature__actions,
  .team-directory-empty-status__actions {
    align-items: stretch;
  }

  .public-hero-feature__actions .public-button,
  .team-directory-empty-status__actions .public-button {
    justify-content: center;
  }

  .my-pubg-performance-selected-match__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-more-nav nav a[href="/teams"] {
    display: block;
  }

  .public-primary-nav::-webkit-scrollbar {
    display: none;
  }

  .public-more-nav {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .public-header-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
    gap: 6px;
  }

  .public-header-action {
    min-height: 38px;
    padding-inline: 8px;
  }

  .public-header-action--account {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
  }

  .public-soft-login-nav {
    min-width: 0;
    flex: 1 1 auto;
  }

  .public-soft-login-nav summary {
    min-width: 0;
    padding-inline: 8px;
  }

  .public-soft-login-nav summary strong {
    max-width: 92px;
  }

  .public-soft-login-nav__menu {
    left: 0;
    right: auto;
    min-width: min(220px, calc(100vw - 24px));
  }

  .public-header-action--player,
  .public-header-action--logout,
  .public-header-action--create {
    min-width: 0;
    flex: 0 0 auto;
  }

  .public-header-action--player strong,
  .public-header-action--account strong {
    max-width: 88px;
  }

  .auth-shell {
    min-height: auto;
  }

  .auth-visual {
    min-height: 140px;
    padding: 16px;
  }

  .auth-brand-lockup .scrima-brand-logo {
    width: 170px;
    height: 50px;
  }

  .auth-feature-list {
    align-content: end;
  }

  .public-hero {
    padding: 18px;
  }

  .public-hero h1 {
    font-size: 32px;
  }

  .public-hero-feature {
    min-height: 0;
  }

  .public-hero-feature > img {
    max-height: 150px;
    min-height: 120px;
  }

  .public-hero-feature__body {
    padding: 12px;
  }

  .public-hero-feature .player-radar-chart {
    width: min(100%, 148px);
  }

  .public-hero-feature dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .public-home-hero {
    min-height: 0;
    padding: 14px;
  }

  .public-home-hero h1 {
    font-size: 36px;
  }

  .public-home-hero__main {
    gap: 8px;
  }

  .public-home-hero__main > p:not(.public-kicker),
  .public-home-hero__ign p,
  .public-home-player-search p {
    display: none;
  }

  .public-home-login-card,
  .public-home-saved-player,
  .public-home-player-search {
    padding: 8px;
  }

  .public-home-player-search {
    grid-template-columns: 1fr;
  }

  .public-home-hero__board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .public-home-hero__board.has-player-only {
    grid-template-columns: 1fr;
  }

  .public-home-hero__panel--lobby.is-empty {
    display: none;
  }

  .public-home-hero__ign {
    gap: 8px;
    padding: 8px;
  }

  .public-home-hero__ign > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-home-hero__panel {
    gap: 7px;
    padding: 10px;
  }

  .public-home-hero__panel-head strong {
    font-size: 16px;
  }

  .public-home-hero__panel-head small,
  .public-home-hero__panel p {
    font-size: 11px;
  }

  .public-home-hero__panel dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .public-home-hero__panel dl div {
    padding: 5px;
  }

  .public-home-hero__panel dt {
    font-size: 9px;
  }

  .public-home-hero__panel dd {
    font-size: 12px;
  }

  .public-home-hero__panel .player-radar-chart {
    width: min(100%, 122px);
  }

  .my-pubg-focus-hero {
    min-height: 0;
    padding: 14px;
  }

  .my-pubg-focus-hero--profile {
    padding: 0;
  }

  .my-pubg-focus-hero__copy h1 {
    font-size: 34px;
  }

  .my-pubg-player-card,
  .my-pubg-player-radar-card {
    min-height: 300px;
  }

  .my-pubg-player-card {
    padding: 18px;
  }

  .my-pubg-player-card__content h1 {
    font-size: 38px;
  }

  .my-pubg-player-card__weapon {
    right: -80px;
    width: min(78%, 390px);
  }

  .my-pubg-player-picker--banner {
    padding: 10px;
  }

  .my-pubg-player-picker--banner .my-pubg-panel__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .my-pubg-player-picker--banner .my-pubg-identity-form {
    grid-template-columns: 1fr;
  }

  .my-pubg-player-picker--banner .my-pubg-identity-form > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .my-pubg-player-picker--banner .my-pubg-player-picker__list {
    max-height: 132px;
    grid-template-columns: 1fr;
  }

  .my-pubg-performance-story__head {
    align-items: start;
    flex-direction: column;
  }

  .my-pubg-performance-timeline__head {
    align-items: start;
    flex-direction: column;
  }

  .my-pubg-performance-selected-match__head,
  .my-pubg-performance-selected-match__grid {
    grid-template-columns: 1fr;
  }

  .my-pubg-performance-selected-match__score {
    justify-items: start;
  }

  .my-pubg-performance-selected-match__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .my-pubg-performance-story__head p {
    max-width: none;
    text-align: left;
  }

  .my-pubg-performance-story__signals,
  .my-pubg-performance-timeline__signals {
    justify-content: flex-start;
  }

  .my-pubg-performance-timeline__head p {
    max-width: none;
    text-align: left;
  }

  .my-pubg-watchlist-strip dl {
    grid-template-columns: 1fr;
  }

  .my-pubg-live-lookup .my-pubg-panel__head,
  .my-pubg-live-lookup__steps,
  .my-pubg-sync-timeline,
  .my-pubg-auto-save__flow,
  .my-pubg-save-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .my-pubg-sync-review__head,
  .my-pubg-sync-review__head dl,
  .my-pubg-auto-save__head,
  .my-pubg-auto-save__summary,
  .my-pubg-auto-save__facts,
  .my-pubg-auto-save__flow,
  .my-pubg-sync-board__summary,
  .my-pubg-sync-board__facts,
  .my-pubg-auto-sessions--secondary summary,
  .my-pubg-auto-sessions__head,
  .my-pubg-auto-sessions__head dl,
  .my-pubg-auto-session__main,
  .my-pubg-auto-session__main dl,
  .my-pubg-auto-session__name form {
    grid-template-columns: 1fr;
  }

  .my-pubg-focus-hero__radar .player-radar-chart,
  .my-pubg-empty-radar {
    width: min(100%, 206px);
  }

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

  .discord-bot-promo,
  .discord-bot-promo--compact,
  .discord-bot-promo--product {
    grid-template-columns: 1fr;
  }

  .discord-bot-promo__mark {
    width: 96px;
    height: 96px;
  }

  .discord-bot-promo__stats,
  .discord-bot-flow,
  .discord-bot-command-grid,
  .discord-bot-embed-grid,
  .discord-bot-blueprint__grid,
  .player-timeline-events,
  .discord-bot-automation-grid,
  .discord-bot-alert-grid,
  .discord-bot-state-machine__list,
  .discord-bot-handoff,
  .create-lobby-wizard-nav,
  .create-lobby-draft__grid,
  .create-lobby-draft__toggles,
  .create-lobby-draft__handoff,
  .create-lobby-steps,
  .create-lobby-readiness__grid,
  .zero-admin-pipeline__grid,
  .create-lobby-preview,
  .create-lobby-preview__embed dl,
  .create-lobby-safety,
  .my-pubg-summary-grid,
  .my-pubg-map-grid,
  .my-pubg-action-grid,
  .my-pubg-insight-grid,
  .scouting-summary-grid,
  .scouting-grid,
  .organization-scouting-workspace__summary,
  .organization-scouting-workspace__list,
  .org-prospect-card__controls,
  .match-session-group__header,
  .trial-tracker-grid,
  .compare-grid,
  .saved-watchlist-summary,
  .saved-watchlist-actions,
  .saved-notes-board__head,
  .saved-notes-list,
  .saved-watchlist-notes,
  .notification-summary,
  .notification-toggle-grid,
  .auth-panel,
  .premium-access-strip,
  .premium-tier-grid,
  .my-pubg-performance-story,
  .my-pubg-performance-timeline__body,
  .my-pubg-session-card__stats,
  .my-pubg-session-card__matches,
  .my-pubg-team-grid,
  .my-pubg-team-card__stats,
  .my-pubg-team-manage,
  .my-pubg-team-member,
  .soft-login-ladder__steps,
  .leaderboard-filter-panel__controls,
  .leaderboard-signal-grid,
  .match-session-group__stats,
  .organization-premium-grid {
    grid-template-columns: 1fr;
  }

  .match-session-archive__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-form-grid,
  .auth-oauth-card,
  .auth-identity-stack {
    grid-template-columns: 1fr;
  }

  .auth-discord-button {
    width: 100%;
    min-width: 0;
  }

  .auth-panel--single {
    grid-template-columns: 1fr;
  }

  .auth-card--wide {
    grid-column: auto;
  }

  .auth-card--wide .auth-form {
    grid-template-columns: 1fr;
  }

  .auth-identity-stack {
    grid-template-columns: 1fr;
  }

  .auth-data-consent-card {
    grid-template-columns: 1fr;
  }

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

  .auth-team-branding-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .auth-team-logo-preview {
    width: 92px;
  }

  .auth-team-branding-actions {
    justify-content: flex-start;
  }

  .organization-scouting-workflow__steps {
    grid-template-columns: 1fr;
  }

  .tournament-lobby-grid {
    grid-template-columns: 1fr;
  }

  .tournament-path__steps {
    grid-template-columns: 1fr;
  }

  .public-home-grid,
  .public-home-lanes__grid,
  .public-home-split {
    grid-template-columns: 1fr;
  }

  .home-soft-login-feature {
    padding: 14px;
  }

  .home-soft-login-feature__main h2 {
    font-size: 34px;
  }

  .home-soft-login-feature__cards {
    grid-template-columns: 1fr;
  }

  .home-soft-login-feature__cards article {
    min-height: auto;
  }

  .public-home-card {
    min-height: 132px;
  }

  .tournament-lobby-card {
    min-height: 250px;
  }

  .scouting-card dl,
  .compare-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discord-bot-embed-card dl {
    grid-template-columns: 1fr;
  }

  .my-pubg-match-list article {
    grid-template-columns: 1fr 1fr;
  }

  .match-follow-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-usage-guide__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-browser__controls {
    grid-template-columns: 1fr;
  }

  .my-pubg-goal-input,
  .my-pubg-identity-form,
  .my-pubg-goal-list label {
    grid-template-columns: 1fr;
  }

  .my-pubg-identity-form > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .my-pubg-match-list b {
    grid-column: 1 / -1;
  }

  .public-info-grid {
    grid-template-columns: 1fr;
  }

  .tournament-series-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .scrim-map-rotation__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-info-updated {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-note__grid {
    grid-template-columns: 1fr;
  }

  .public-footer__nav {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .public-footer__brand-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .public-footer__inner {
    padding: 26px 0 30px;
  }

  .player-radar-block__header {
    flex-direction: column;
  }

  .player-radar-grid {
    grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  }

  .player-radar-card {
    min-height: auto;
  }

  .player-radar-card__head {
    flex-direction: column;
  }

  .player-radar-card__spr {
    justify-items: start;
  }

  .player-weapon-section__head,
  .player-weapon-card__title {
    align-items: flex-start;
    flex-direction: column;
  }

  .player-timeline-section {
    padding: 12px;
  }

  .player-timeline-item {
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 8px;
  }

  .player-timeline-item article {
    padding: 12px;
  }

  .player-timeline-item dl div {
    min-width: calc(50% - 8px);
    flex-basis: calc(50% - 8px);
  }

  .player-weapon-list {
    grid-template-columns: 1fr;
  }

  .player-weapon-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .match-history-map-breakdown {
    grid-template-columns: 1fr;
  }

  .player-weapon-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .player-weapon-card__icon {
    width: 58px;
    height: 52px;
  }

  .player-weapon-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-spotlight-card__stats,
  .team-card__score-row,
  .team-profile-breakdown {
    grid-template-columns: 1fr;
  }

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

  .public-results-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .public-tabs__label {
    display: none;
  }

  .public-tabs {
    gap: 8px;
    padding: 8px;
  }

  .public-tabs a {
    flex-basis: 190px;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 56px;
  }

  .public-tabs__icon {
    width: 34px;
    height: 34px;
  }

  .public-tabs__text strong {
    font-size: 13px;
  }

  .stats-table-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .scrim-event-list__title {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr;
  }

  .scrim-event-item {
    grid-template-columns: 1fr;
  }

  .scrim-event-item__main {
    grid-template-columns: 1fr;
  }

  .scrim-event-item__mark {
    display: none;
  }

  .scrim-event-item__action {
    grid-column: auto;
  }

  .scrim-event-item__button,
  .scrim-event-item__follow {
    width: 100%;
  }

  .scrim-event-item__action {
    display: grid;
    grid-template-columns: 1fr;
  }

  .scrim-event-item__meta {
    grid-template-columns: 1fr;
  }

  .match-analyzer {
    padding: 12px;
  }

  .match-analyzer__header h2 {
    font-size: 18px;
  }

  .analyzer-counters {
    top: 8px;
    left: 8px;
  }

  .analyzer-counters span {
    min-height: 32px;
    padding: 5px 7px;
    font-size: 11px;
  }

  .analyzer-counters strong {
    min-width: 26px;
    padding: 4px 6px;
  }

  .analyzer-map-labels span {
    font-size: 10px;
  }

  .analyzer-marker {
    width: 28px;
    height: 28px;
    min-height: 28px;
  }

  .match-analyzer__transport {
    flex-wrap: wrap;
  }

  .match-analyzer__transport output {
    width: 100%;
    margin-left: 0;
  }

  .konva-viewer__header {
    flex-direction: column;
  }

  .konva-viewer__header h2 {
    font-size: 18px;
  }

  .konva-viewer__zoom {
    width: 100%;
  }

  .konva-map-hud {
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    gap: 5px;
  }

  .konva-map-hud strong,
  .konva-map-hud span {
    min-height: 28px;
    padding: 5px 7px;
    font-size: 10px;
  }

  .konva-map-hud strong {
    max-width: 100%;
  }

  .konva-map-hud b {
    margin-left: 4px;
    font-size: 13px;
  }

  .konva-playback__row {
    align-items: flex-start;
  }

  .konva-playback output {
    width: 100%;
    margin-left: 0;
  }

  .team-trace-panel__summary {
    grid-template-columns: 46px 38px minmax(0, 1fr) 18px;
    padding: 10px 8px;
  }

  .team-trace-panel__body {
    padding-left: 12px;
  }

  .team-trace-panel__player {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .team-trace-panel__player i {
    display: none;
  }
}

.crate-clicker-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: 18px;
  width: min(1320px, calc(100% - 32px));
  min-height: 330px;
  margin: 26px auto 18px;
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 15, 11, 0.98), rgba(8, 15, 11, 0.82)),
    repeating-linear-gradient(120deg, rgba(142, 230, 173, 0.08) 0 1px, transparent 1px 32px),
    radial-gradient(circle at 80% 18%, rgba(216, 255, 118, 0.18), transparent 30%),
    #080f0b;
}

.crate-clicker-intro::before,
.crate-clicker-intro::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.crate-clicker-intro::before {
  right: 10%;
  bottom: -52px;
  width: 220px;
  aspect-ratio: 1.4;
  border: 3px solid rgba(216, 255, 118, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(216, 255, 118, 0.16) 42% 58%, transparent 58%),
    rgba(142, 230, 173, 0.08);
  transform: rotate(-8deg);
}

.crate-clicker-intro::after {
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
}

.crate-clicker-intro__copy,
.crate-clicker-hero-card {
  position: relative;
  z-index: 1;
}

.crate-clicker-intro h1 {
  max-width: 10ch;
  margin: 8px 0 10px;
  color: #f6fff4;
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.88;
}

.crate-clicker-intro__copy > p:not(.public-kicker) {
  max-width: 56ch;
  margin: 0;
  color: rgba(221, 238, 226, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

.crate-clicker-hero-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(216, 255, 118, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.11), transparent 46%),
    rgba(7, 13, 10, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.crate-clicker-hero-card span,
.crate-panel__head .public-kicker {
  color: rgba(221, 238, 226, 0.72);
}

.crate-clicker-hero-card strong {
  color: #f6fff4;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
}

.crate-clicker-hero-card p {
  max-width: 34ch;
  margin: 0;
  color: rgba(221, 238, 226, 0.7);
}

.crate-clicker {
  width: min(1320px, calc(100% - 32px));
  margin: 18px auto 64px;
  color: #f6fff4;
}

.crate-clicker__topbar {
  position: sticky;
  z-index: 20;
  top: 76px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 8px;
  background: rgba(8, 15, 11, 0.86);
  backdrop-filter: blur(14px);
}

.crate-clicker-timer,
.crate-stat-grid article,
.crate-shop-item,
.crate-inventory span,
.crate-log li {
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background: rgba(17, 28, 21, 0.78);
}

.crate-clicker-timer {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
}

.crate-clicker-timer span,
.crate-stat-grid span,
.crate-shop-item span,
.crate-inventory b,
.crate-meter span,
.crate-log li,
.crate-stage__map span {
  color: rgba(221, 238, 226, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.crate-clicker-timer strong {
  color: #d8ff76;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.crate-clicker-timer--heat strong {
  color: #ff8b6b;
}

.crate-clicker__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(360px, 1.35fr) minmax(310px, 1fr);
  gap: 12px;
  align-items: stretch;
}

.crate-panel,
.crate-stage,
.crate-event {
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(216, 255, 118, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(17, 28, 21, 0.94), rgba(7, 11, 9, 0.96));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.crate-panel {
  padding: 14px;
}

.crate-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.crate-panel__head h2 {
  margin: 2px 0 0;
  color: #f6fff4;
  font-size: 22px;
  line-height: 1;
}

.crate-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.crate-stat-grid article {
  display: grid;
  gap: 6px;
  min-height: 74px;
  padding: 11px;
}

.crate-stat-grid strong {
  min-width: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.crate-meter {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.crate-meter i {
  display: block;
  height: 9px;
  overflow: hidden;
  border: 1px solid rgba(216, 255, 118, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
}

.crate-meter b {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ee6ad, #d8ff76);
  transition: width 220ms ease;
}

.crate-meter--heat b {
  background: linear-gradient(90deg, #f3b35c, #ff6b6b);
}

.crate-danger-button {
  width: 100%;
  min-height: 40px;
  margin-top: 14px;
  border: 1px solid rgba(255, 107, 107, 0.32);
  border-radius: 8px;
  background: rgba(255, 107, 107, 0.08);
  color: #ffd4cc;
  font-weight: 900;
  cursor: pointer;
}

.crate-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  isolation: isolate;
}

.crate-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(142, 230, 173, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 230, 173, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.crate-stage::after {
  content: "";
  position: absolute;
  inset: auto 10% 8% 10%;
  z-index: -1;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 255, 118, 0.17), transparent 66%);
  filter: blur(16px);
}

.crate-stage__map {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.crate-stage__map strong {
  color: #d8ff76;
  font-size: 13px;
  text-transform: uppercase;
}

.crate-box {
  position: relative;
  display: grid;
  width: min(320px, 70vw);
  aspect-ratio: 1.12;
  place-items: center;
  border: 0;
  background: transparent;
  color: #08100b;
  cursor: pointer;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.44));
  transition: transform 140ms ease, filter 140ms ease;
}

.crate-box:hover {
  transform: translateY(-4px) scale(1.015);
  filter: drop-shadow(0 34px 54px rgba(216, 255, 118, 0.14));
}

.crate-box:active {
  transform: translateY(1px) scale(0.985);
}

.crate-box__lid,
.crate-box__body {
  position: absolute;
  left: 8%;
  right: 8%;
  border: 3px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 32%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.14) 0 12px, transparent 12px 28px),
    #d8ff76;
}

.crate-box__lid {
  top: 18%;
  height: 24%;
  transform: skewX(-10deg);
}

.crate-box__body {
  top: 39%;
  bottom: 12%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(90deg, transparent 44%, rgba(0, 0, 0, 0.22) 44% 56%, transparent 56%),
    #8ee6ad;
}

.crate-box strong {
  position: relative;
  z-index: 2;
  align-self: end;
  margin-bottom: 19%;
  padding: 9px 12px;
  border: 2px solid rgba(0, 0, 0, 0.34);
  border-radius: 6px;
  background: rgba(246, 255, 244, 0.88);
  color: #08100b;
  font-size: 14px;
  font-weight: 1000;
  text-transform: uppercase;
}

.crate-floating-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.crate-floating-layer span {
  position: absolute;
  z-index: 4;
  color: #d8ff76;
  font-size: 18px;
  font-weight: 1000;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  animation: crateFloat 950ms ease forwards;
}

.crate-floating-layer span[data-tone="bad"] {
  color: #ff8b6b;
}

.crate-floating-layer span[data-tone="rare"] {
  color: #8fd6ff;
}

@keyframes crateFloat {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  18% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateY(-42px) scale(1.04);
  }
}

.crate-stage__actions {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.crate-stage__actions .public-button {
  min-height: 42px;
  padding: 8px;
  font-size: 11px;
}

.crate-event {
  position: absolute;
  inset: auto 16px 76px 16px;
  z-index: 5;
  display: grid;
  gap: 12px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 139, 107, 0.14), transparent 50%),
    rgba(7, 13, 10, 0.95);
}

.crate-event[hidden] {
  display: none;
}

.crate-event h2 {
  margin: 0;
  font-size: 24px;
}

.crate-event p {
  margin: 4px 0 0;
  color: rgba(221, 238, 226, 0.72);
}

.crate-event__choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.crate-choice-button,
.crate-buy-button,
.crate-tabs button {
  min-height: 40px;
  border: 1px solid rgba(142, 230, 173, 0.24);
  border-radius: 8px;
  background: rgba(8, 15, 11, 0.92);
  color: #f6fff4;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 140ms ease, transform 140ms ease, background 140ms ease;
}

.crate-choice-button {
  display: grid;
  gap: 5px;
  justify-items: start;
  padding: 10px;
  text-align: left;
}

.crate-choice-button strong {
  color: #d8ff76;
}

.crate-choice-button small {
  color: rgba(221, 238, 226, 0.62);
}

.crate-choice-button:hover,
.crate-buy-button:hover,
.crate-tabs button:hover {
  border-color: rgba(216, 255, 118, 0.6);
  background: rgba(29, 43, 31, 0.96);
  transform: translateY(-1px);
}

.crate-choice-button:disabled,
.crate-buy-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

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

.crate-tabs button {
  min-height: 36px;
  padding: 6px;
  color: rgba(221, 238, 226, 0.78);
  font-size: 11px;
}

.crate-tabs button.is-active {
  border-color: rgba(216, 255, 118, 0.7);
  background: rgba(216, 255, 118, 0.15);
  color: #d8ff76;
}

.crate-shop-list {
  display: grid;
  max-height: 548px;
  gap: 8px;
  overflow: auto;
  padding-right: 2px;
}

.crate-shop-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(82px, auto);
  gap: 10px;
  align-items: center;
  padding: 10px;
}

.crate-shop-item strong {
  display: block;
  margin: 4px 0;
  color: #f6fff4;
  font-size: 13px;
  line-height: 1.28;
}

.crate-shop-item small {
  color: rgba(216, 255, 118, 0.72);
  font-weight: 800;
}

.crate-shop-item.is-owned {
  border-color: rgba(216, 255, 118, 0.34);
}

.crate-shop-item--prestige {
  border-color: rgba(143, 214, 255, 0.32);
  background: linear-gradient(135deg, rgba(143, 214, 255, 0.1), rgba(17, 28, 21, 0.78));
}

.crate-buy-button {
  min-width: 82px;
  padding: 8px 10px;
  color: #d8ff76;
}

.crate-clicker__bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 12px;
  margin-top: 12px;
}

.crate-inventory {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.crate-inventory p {
  margin: 0;
  color: rgba(221, 238, 226, 0.68);
}

.crate-inventory span {
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
}

.crate-inventory span[data-rarity="rare"] {
  border-color: rgba(143, 214, 255, 0.36);
}

.crate-inventory span[data-rarity="epic"] {
  border-color: rgba(196, 142, 255, 0.38);
}

.crate-inventory span[data-rarity="legendary"] {
  border-color: rgba(216, 255, 118, 0.54);
  background: rgba(216, 255, 118, 0.1);
}

.crate-inventory strong {
  color: #ffffff;
}

.crate-inventory small {
  grid-column: 1 / -1;
  color: rgba(221, 238, 226, 0.58);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.crate-log {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crate-log li {
  padding: 9px 10px;
  color: rgba(221, 238, 226, 0.76);
  text-transform: none;
}

@media (max-width: 1120px) {
  .crate-clicker__grid {
    grid-template-columns: 1fr;
  }

  .crate-stage {
    min-height: 520px;
  }

  .crate-shop-list {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .crate-clicker-intro {
    grid-template-columns: 1fr;
    width: min(100% - 20px, 1320px);
    min-height: auto;
  }

  .crate-clicker-intro h1 {
    font-size: clamp(48px, 18vw, 72px);
  }

  .crate-clicker {
    width: min(100% - 20px, 1320px);
  }

  .crate-clicker__topbar {
    top: 62px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crate-clicker__bottom,
  .crate-stat-grid,
  .crate-stage__actions {
    grid-template-columns: 1fr;
  }

  .crate-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crate-stage {
    min-height: 590px;
  }

  .crate-event {
    bottom: 210px;
  }

  .crate-shop-item {
    grid-template-columns: 1fr;
  }

  .crate-buy-button {
    width: 100%;
  }
}

.crate-clicker {
  --safe-zone-size: 70%;
  --blue-zone-size: 128%;
  --circle-progress: 0%;
  --health-value: 100%;
  width: min(1800px, calc(100% - 16px));
  min-height: calc(100vh - 112px);
  margin: 8px auto 46px;
  color: #f6fff4;
}

.crate-game-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "map"
    "actions";
  gap: 12px;
  align-items: stretch;
}

.crate-event-card,
.crate-actions-hud {
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 18, 13, 0.9), rgba(6, 10, 8, 0.96)),
    rgba(8, 15, 11, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.crate-event-card {
  position: absolute;
  z-index: 18;
  left: 50%;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  width: min(430px, calc(100% - 36px));
  min-height: 0;
  max-height: min(35vh, 270px);
  overflow: auto;
  padding: 12px;
  border-color: rgba(246, 255, 244, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 139, 107, 0.1), transparent 44%),
    rgba(5, 9, 7, 0.76);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.crate-event-card h2,
.crate-actions-hud h2 {
  margin: 4px 0 0;
  color: #f6fff4;
  font-size: 22px;
  line-height: 1;
}

.crate-event-card p:not(.public-kicker) {
  margin: 8px 0 0;
  color: rgba(221, 238, 226, 0.72);
  line-height: 1.35;
}

.crate-event-card.is-idle {
  width: min(360px, calc(100% - 36px));
  border-color: rgba(142, 230, 173, 0.16);
  background: rgba(5, 9, 7, 0.62);
}

.crate-event-card.is-cleared {
  width: min(420px, calc(100% - 36px));
  border-color: rgba(216, 255, 118, 0.42);
  background:
    radial-gradient(circle at 20% 10%, rgba(216, 255, 118, 0.16), transparent 42%),
    rgba(5, 9, 7, 0.74);
}

.crate-clicker.is-event-active .crate-event-card:not(.is-idle) {
  border-color: rgba(216, 255, 118, 0.44);
  box-shadow:
    inset 0 0 0 1px rgba(216, 255, 118, 0.08),
    0 0 34px rgba(216, 255, 118, 0.14),
    0 24px 70px rgba(0, 0, 0, 0.34);
  animation: crateEventGlow 1400ms ease-in-out infinite;
}

.crate-clicker.is-event-urgent .crate-event-card:not(.is-idle) {
  border-color: rgba(255, 139, 107, 0.7);
  animation-duration: 760ms;
}

.crate-clear-reward {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 9px;
  border: 1px solid rgba(216, 255, 118, 0.2);
  border-radius: 8px;
  background: rgba(8, 15, 11, 0.72);
}

.crate-clear-reward span {
  color: rgba(221, 238, 226, 0.62);
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
}

.crate-clear-reward strong {
  color: #d8ff76;
  font-size: 15px;
}

.crate-clear-reward small {
  color: rgba(221, 238, 226, 0.7);
  font-weight: 850;
}

.crate-event__choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 7px;
  margin-top: auto;
}

.crate-event-timer {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 10px;
  align-items: center;
  margin: 10px 0 2px;
  padding: 9px;
  border: 1px solid rgba(216, 255, 118, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(216, 255, 118, 0.1), transparent 58%),
    rgba(6, 10, 8, 0.72);
}

.crate-event-timer span,
.crate-event-timer small {
  color: rgba(221, 238, 226, 0.62);
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
}

.crate-event-timer strong {
  justify-self: end;
  color: #d8ff76;
  font-size: 18px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.crate-event-timer i {
  display: block;
  grid-column: 1 / -1;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
}

.crate-event-timer b {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d8ff76, #8ee6ad);
  transition: width 220ms ease;
}

.crate-event-timer small {
  grid-column: 1 / -1;
}

.crate-event-timer.is-urgent {
  border-color: rgba(255, 139, 107, 0.48);
  background:
    linear-gradient(90deg, rgba(255, 139, 107, 0.16), transparent 58%),
    rgba(6, 10, 8, 0.78);
}

.crate-event-timer.is-urgent strong {
  color: #ff8b6b;
}

.crate-event-timer.is-urgent b {
  background: linear-gradient(90deg, #ff8b6b, #d8ff76);
}

.crate-event__idle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  background: rgba(142, 230, 173, 0.08);
  color: rgba(221, 238, 226, 0.74);
  font-weight: 900;
}

.crate-event__idle b {
  color: #d8ff76;
}

.crate-choice-button {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 4px 8px;
  align-items: center;
  min-height: 50px;
  justify-items: stretch;
  overflow: hidden;
  padding: 9px;
  text-align: left;
}

.crate-choice-button img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.42));
}

.crate-choice-button span {
  color: #f6fff4;
}

.crate-choice-button strong {
  justify-self: end;
  color: #d8ff76;
}

.crate-choice-button small {
  grid-column: 2 / -1;
  color: rgba(221, 238, 226, 0.58);
}

.crate-map-canvas {
  grid-area: map;
  position: relative;
  --crate-x: 50%;
  --crate-y: 50%;
  --zone-x: 50%;
  --zone-y: 50%;
  --redzone-x: 62%;
  --redzone-y: 32%;
  --redzone-size: 23%;
  min-height: min(780px, calc(100vh - 120px));
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(142, 230, 173, 0.22);
  border-radius: 8px;
  background-color: #111812;
  background-image:
    linear-gradient(180deg, rgba(5, 9, 7, 0.1), rgba(5, 9, 7, 0.54)),
    url("/maps/pubg/erangel.png");
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(246, 255, 244, 0.04), 0 28px 90px rgba(0, 0, 0, 0.45);
}

.crate-map-canvas-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #111812;
}

.crate-clicker[data-crate-map="erangel"] .crate-map-canvas {
  background-image:
    linear-gradient(180deg, rgba(5, 9, 7, 0.1), rgba(5, 9, 7, 0.54)),
    url("/maps/pubg/erangel.png");
}

.crate-clicker[data-crate-map="miramar"] .crate-map-canvas {
  background-image:
    linear-gradient(180deg, rgba(5, 9, 7, 0.08), rgba(5, 9, 7, 0.48)),
    url("/maps/pubg/miramar.png");
}

.crate-clicker[data-crate-map="sanhok"] .crate-map-canvas {
  background-image:
    linear-gradient(180deg, rgba(5, 9, 7, 0.08), rgba(5, 9, 7, 0.48)),
    url("/maps/pubg/sanhok.png");
}

.crate-clicker[data-crate-map="vikendi"] .crate-map-canvas {
  background-image:
    linear-gradient(180deg, rgba(5, 9, 7, 0.08), rgba(5, 9, 7, 0.5)),
    url("/maps/pubg/vikendi.png");
}

.crate-clicker[data-crate-map="taego"] .crate-map-canvas {
  background-image:
    linear-gradient(180deg, rgba(5, 9, 7, 0.08), rgba(5, 9, 7, 0.5)),
    url("/maps/pubg/taego.png");
}

.crate-clicker[data-crate-map="deston"] .crate-map-canvas {
  background-image:
    linear-gradient(180deg, rgba(5, 9, 7, 0.08), rgba(5, 9, 7, 0.5)),
    url("/maps/pubg/deston.png");
}

.crate-clicker[data-crate-map="rondo"] .crate-map-canvas {
  background-image:
    linear-gradient(180deg, rgba(5, 9, 7, 0.08), rgba(5, 9, 7, 0.5)),
    url("/maps/pubg/rondo.png");
}

.crate-map-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--zone-x) var(--zone-y), rgba(216, 255, 118, 0.14), transparent 0 22%, rgba(0, 0, 0, 0.34) 76%),
    linear-gradient(180deg, rgba(246, 255, 244, 0.04), transparent 42%, rgba(0, 0, 0, 0.18));
  mix-blend-mode: screen;
  opacity: 0.34;
}

.crate-map-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(42, 124, 255, 0.38), transparent 18%, transparent 82%, rgba(42, 124, 255, 0.38)),
    linear-gradient(180deg, rgba(42, 124, 255, 0.32), transparent 22%, transparent 78%, rgba(42, 124, 255, 0.32));
  transition: opacity 180ms ease;
}

.crate-clicker.is-zone-danger .crate-map-canvas::after {
  opacity: 1;
  animation: crateBluePulse 900ms ease-in-out infinite;
}

.crate-map-hud {
  position: absolute;
  z-index: 18;
  left: 14px;
  right: 14px;
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) repeat(3, minmax(76px, auto));
  gap: 8px;
  pointer-events: none;
}

.crate-map-hud--top {
  top: 14px;
  grid-template-columns: minmax(160px, 0.92fr) repeat(3, minmax(72px, auto)) minmax(150px, 0.8fr);
}

.crate-map-hud > div {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid rgba(246, 255, 244, 0.16);
  border-radius: 8px;
  background: rgba(6, 10, 8, 0.66);
  backdrop-filter: blur(10px);
}

.crate-map-hud span,
.crate-actions-hud .public-kicker,
.crate-event-card .public-kicker,
.crate-shop-item span,
.crate-quick-actions span {
  color: rgba(221, 238, 226, 0.68);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.crate-map-hud strong {
  display: block;
  margin-top: 3px;
  color: #d8ff76;
  font-size: 14px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.crate-map-hud small {
  display: block;
  margin-top: 5px;
  color: rgba(221, 238, 226, 0.64);
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
}

.crate-map-hud small b {
  color: #f6fff4;
}

.crate-map-hud--bottom-left {
  right: auto;
  bottom: 12px;
  width: min(300px, calc(100% - 24px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.crate-map-hud--bottom-left > div {
  padding: 8px;
  background: rgba(6, 10, 8, 0.7);
}

.crate-map-hud--bottom-left strong {
  color: #f6fff4;
  font-size: 18px;
}

.crate-map-hud i {
  display: block;
  height: 6px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
}

.crate-map-hud i b {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ee6ad, #d8ff76);
  transition: width 220ms ease;
}

.crate-season-hud {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 4px 8px;
  align-items: center;
}

.crate-season-hud img {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.42;
  filter: grayscale(0.4) drop-shadow(0 8px 12px rgba(0, 0, 0, 0.42));
}

.crate-season-hud img.is-earned {
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(216, 255, 118, 0.36));
}

.crate-season-hud small {
  grid-column: 2;
  margin-top: 0;
}

.crate-map-hud--bottom-left > div:last-child i b {
  background: linear-gradient(90deg, #6aa5ff, #ff8b6b);
}

.crate-survival-hud {
  position: absolute;
  z-index: 17;
  top: 92px;
  right: 16px;
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(120px, 0.7fr) minmax(92px, 0.5fr);
  gap: 8px;
  width: min(520px, calc(100% - 32px));
  pointer-events: none;
}

.crate-survival-hud > div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(246, 255, 244, 0.16);
  border-radius: 8px;
  background: rgba(5, 9, 7, 0.72);
  backdrop-filter: blur(12px);
}

.crate-survival-hud span {
  color: rgba(221, 238, 226, 0.68);
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
}

.crate-survival-hud strong {
  display: block;
  margin-top: 4px;
  color: #f6fff4;
  font-size: 20px;
  line-height: 1;
}

.crate-survival-hud i {
  display: block;
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
}

.crate-survival-hud b {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ee6ad, #d8ff76);
  transition: width 220ms ease;
}

.crate-clicker.is-health-critical .crate-survival-hud > div:first-child {
  border-color: rgba(255, 139, 107, 0.58);
  box-shadow: 0 0 28px rgba(255, 107, 107, 0.18);
}

.crate-clicker.is-knocked .crate-survival-hud > div:first-child strong,
.crate-clicker.is-health-critical .crate-survival-hud > div:first-child strong {
  color: #ff8b6b;
}

.crate-bluezone-edge {
  position: absolute;
  inset: -12%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at var(--zone-x) var(--zone-y), transparent 0 var(--blue-zone-size), rgba(57, 126, 255, 0.4) calc(var(--blue-zone-size) + 1%), rgba(15, 62, 154, 0.72) 100%);
  filter: saturate(1.3);
  transition: background 800ms ease;
}

.crate-clicker.is-map-cleared .crate-bluezone-edge {
  opacity: 0.12;
}

.crate-zone-circle {
  position: absolute;
  z-index: 3;
  left: var(--zone-x);
  top: var(--zone-y);
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.crate-zone-circle--blue {
  width: var(--blue-zone-size);
  border: 3px solid rgba(86, 154, 255, 0.84);
  box-shadow: 0 0 38px rgba(61, 128, 255, 0.34), inset 0 0 52px rgba(61, 128, 255, 0.16);
}

.crate-zone-circle--safe {
  width: var(--safe-zone-size);
  border: 3px solid rgba(246, 255, 244, 0.95);
  box-shadow: 0 0 22px rgba(246, 255, 244, 0.26), inset 0 0 42px rgba(246, 255, 244, 0.08);
}

.crate-redzone-field {
  position: absolute;
  z-index: 5;
  left: var(--redzone-x);
  top: var(--redzone-y);
  width: var(--redzone-size);
  aspect-ratio: 1;
  display: none;
  pointer-events: none;
  border: 2px dashed rgba(255, 80, 80, 0.78);
  border-radius: 50%;
  background: rgba(255, 44, 44, 0.18);
  box-shadow: 0 0 42px rgba(255, 44, 44, 0.3);
  transform: translate(-50%, -50%);
}

.crate-clicker.is-redzone-active .crate-redzone-field {
  display: block;
  animation: crateRedzonePulse 800ms ease-in-out infinite;
}

.crate-redzone-field i {
  position: absolute;
  top: -20%;
  width: 8px;
  height: 28px;
  border-radius: 999px;
  background: #ffded8;
  box-shadow: 0 0 18px rgba(255, 97, 80, 0.8);
  animation: crateBombDrop 1500ms ease-in infinite;
}

.crate-redzone-field i:nth-child(1) { left: 22%; animation-delay: 0ms; }
.crate-redzone-field i:nth-child(2) { left: 48%; animation-delay: 260ms; }
.crate-redzone-field i:nth-child(3) { left: 68%; animation-delay: 520ms; }
.crate-redzone-field i:nth-child(4) { left: 36%; animation-delay: 780ms; }

.crate-event-markers {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.crate-event-markers span {
  position: absolute;
  left: var(--marker-x, 50%);
  top: var(--marker-y, 50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 6px 8px;
  border: 1px solid rgba(216, 255, 118, 0.44);
  border-radius: 999px;
  background: rgba(6, 10, 8, 0.78);
  color: #d8ff76;
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
}

.crate-event-markers span::before {
  content: "";
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.crate-event-markers span.is-active {
  color: #ff8b6b;
  border-color: rgba(255, 139, 107, 0.8);
  animation: crateMarkerBlink 620ms ease-in-out infinite;
}

.crate-box {
  position: absolute;
  z-index: 9;
  left: var(--crate-x);
  top: var(--crate-y);
  display: grid;
  width: clamp(180px, 24vw, 300px);
  aspect-ratio: 3 / 2;
  place-items: center;
  border: 0;
  background: transparent;
  color: #08100b;
  cursor: pointer;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.62));
  transition: filter 140ms ease;
}

.crate-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  transform: rotate(-3deg);
  transition: transform 150ms ease;
}

.crate-box strong {
  position: absolute;
  bottom: -8px;
  left: 50%;
  padding: 7px 12px;
  border: 1px solid rgba(8, 16, 11, 0.36);
  border-radius: 999px;
  background: rgba(216, 255, 118, 0.94);
  color: #08100b;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.crate-clicker:not(.has-started):not(.is-dead):not(.is-map-cleared) .crate-box strong {
  background: #d8ff76;
  box-shadow: 0 0 24px rgba(216, 255, 118, 0.34);
}

.crate-map-canvas .crate-box:hover {
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 28px 40px rgba(216, 255, 118, 0.16));
}

.crate-box:hover img {
  transform: rotate(-3deg) scale(1.045);
}

.crate-box:active img,
.crate-clicker.is-crate-hit .crate-box img {
  animation: crateShake 260ms ease;
}

.crate-fx-layer,
.crate-floating-layer {
  position: absolute;
  inset: 0;
  z-index: 14;
  pointer-events: none;
}

.crate-floating-layer span {
  position: absolute;
  z-index: 16;
  color: #d8ff76;
  font-size: 18px;
  font-weight: 1000;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.76);
  animation: crateFloat 950ms ease forwards;
}

.crate-floating-layer span[data-tone="bad"] {
  color: #ff8b6b;
}

.crate-floating-layer span[data-tone="rare"] {
  color: #8fd6ff;
}

.crate-fx {
  position: absolute;
  left: var(--fx-x);
  top: var(--fx-y);
  width: 120px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.crate-fx::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: -18px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(6, 10, 8, 0.72);
  color: #f6fff4;
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.crate-fx--grenade i,
.crate-fx--molotov i,
.crate-fx--panzerfaust i,
.crate-fx--mortar i {
  position: absolute;
  left: -120px;
  top: -70px;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f6fff4;
  box-shadow: 0 0 16px rgba(246, 255, 244, 0.8);
  animation: crateGrenadeArc 720ms cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
}

.crate-fx--grenade b,
.crate-fx--panzerfaust b,
.crate-fx--mortar b,
.crate-fx--explosion b,
.crate-fx--redzone b {
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  background: radial-gradient(circle, #fff4bc 0 10%, #ffb24b 22%, rgba(255, 64, 43, 0.7) 42%, transparent 68%);
  opacity: 0;
  animation: crateExplosion 760ms 520ms ease-out forwards;
}

.crate-fx--smoke b {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 48%, rgba(220, 232, 224, 0.84), transparent 28%),
    radial-gradient(circle at 63% 36%, rgba(220, 232, 224, 0.72), transparent 32%),
    radial-gradient(circle at 50% 65%, rgba(220, 232, 224, 0.62), transparent 35%);
  filter: blur(10px);
  animation: crateSmoke 2400ms ease-out forwards;
}

.crate-fx--molotov b {
  position: absolute;
  inset: 30%;
  border-radius: 48% 52% 45% 55%;
  background:
    radial-gradient(circle, rgba(255, 230, 116, 0.96), transparent 26%),
    radial-gradient(circle, rgba(255, 87, 40, 0.82), transparent 66%);
  box-shadow: 0 0 34px rgba(255, 87, 40, 0.8);
  animation: crateFire 1800ms ease-out forwards;
}

.crate-fx--heal b,
.crate-fx--boost b,
.crate-fx--jammer b {
  position: absolute;
  inset: 25%;
  border: 2px solid rgba(142, 230, 173, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(142, 230, 173, 0.42);
  animation: crateHudPulse 1100ms ease-out forwards;
}

.crate-fx--boost b {
  border-color: rgba(216, 255, 118, 0.96);
}

.crate-fx--brdm b,
.crate-fx--drop b,
.crate-fx--vault b,
.crate-fx--loot b,
.crate-fx--marker b,
.crate-fx--bear b,
.crate-fx--sandstorm b {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: rgba(216, 255, 118, 0.18);
  border: 2px solid rgba(216, 255, 118, 0.8);
  animation: crateMapPing 1000ms ease-out forwards;
}

.crate-fx--sandstorm b {
  border-color: rgba(245, 184, 106, 0.86);
  background: rgba(245, 184, 106, 0.2);
}

.crate-actions-hud {
  grid-area: actions;
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.28fr) minmax(0, 1fr);
  grid-template-areas:
    "head tabs"
    "trader trader"
    "inventory inventory"
    "shop shop";
  align-items: start;
  min-height: 0;
  gap: 10px;
  padding: 14px;
  overflow: hidden;
  border-color: rgba(142, 230, 173, 0.18);
  background:
    linear-gradient(90deg, rgba(142, 230, 173, 0.08), transparent 34%, rgba(216, 255, 118, 0.04)),
    radial-gradient(circle at 18% 0%, rgba(216, 255, 118, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(9, 16, 12, 0.96), rgba(4, 8, 6, 0.98));
}

.crate-actions-hud::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 255, 118, 0.5), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.crate-actions-hud__head {
  grid-area: head;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 5px 0 0;
}

.crate-actions-hud__head > div {
  min-width: 0;
}

.crate-actions-hud__head .public-inline-link {
  align-self: start;
  min-height: 30px;
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(8, 15, 11, 0.72);
  color: #8ee6ad;
  font-size: 11px;
}

.crate-actions-hud__head h2 {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crate-tabs {
  grid-area: tabs;
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  min-width: 0;
  margin: 0;
  padding: 4px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
}

.crate-tabs button,
.crate-buy-button,
.crate-sell-button,
.crate-choice-button,
.crate-quick-actions button,
.crate-map-picker button,
.crate-teammate button,
.crate-prestige-button {
  border: 1px solid rgba(142, 230, 173, 0.24);
  border-radius: 8px;
  background: rgba(8, 15, 11, 0.9);
  color: #f6fff4;
  font-weight: 1000;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, opacity 140ms ease;
}

.crate-tabs button {
  flex: 1 1 132px;
  min-height: 36px;
  padding: 8px 10px;
  border-color: transparent;
  background: transparent;
  color: rgba(221, 238, 226, 0.78);
  font-size: 11px;
  white-space: nowrap;
}

.crate-tabs button.is-active,
.crate-map-picker button.is-active {
  border-color: rgba(216, 255, 118, 0.62);
  background:
    linear-gradient(180deg, rgba(216, 255, 118, 0.2), rgba(216, 255, 118, 0.1));
  color: #d8ff76;
  box-shadow: inset 0 0 0 1px rgba(216, 255, 118, 0.08);
}

.crate-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.crate-quick-actions button {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
  padding: 7px;
  text-align: left;
}

.crate-quick-actions button.is-recommended {
  border-color: rgba(216, 255, 118, 0.56);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.14), transparent 54%),
    rgba(8, 15, 11, 0.92);
  box-shadow: inset 0 0 0 1px rgba(216, 255, 118, 0.08);
}

.crate-clicker.is-event-active .crate-choice-button.is-event-needed,
.crate-clicker.is-event-active .crate-quick-actions button.is-event-needed,
.crate-clicker.is-event-active .crate-trader-card.is-event-needed,
.crate-clicker.is-event-active .crate-teammate.is-event-needed,
.crate-clicker.is-event-active .crate-shop-item.is-event-needed,
.crate-clicker.is-event-active .crate-actions-hud .crate-inventory span.is-event-needed {
  border-color: rgba(216, 255, 118, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(216, 255, 118, 0.14),
    0 0 24px rgba(216, 255, 118, 0.18);
  animation: crateNeededGlow 1100ms ease-in-out infinite;
}

.crate-clicker.is-event-active .crate-choice-button.is-event-needed:disabled,
.crate-clicker.is-event-active .crate-quick-actions button.is-event-needed:disabled {
  opacity: 0.82;
  filter: saturate(1.1);
}

.crate-clicker.is-event-active .crate-choice-button.is-event-needed::after,
.crate-clicker.is-event-active .crate-quick-actions button.is-event-needed::after,
.crate-clicker.is-event-active .crate-trader-card.is-event-needed::after,
.crate-clicker.is-event-active .crate-teammate.is-event-needed::after,
.crate-clicker.is-event-active .crate-shop-item.is-event-needed::after,
.crate-clicker.is-event-active .crate-actions-hud .crate-inventory span.is-event-needed::after {
  content: "NEED";
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  border: 1px solid rgba(216, 255, 118, 0.42);
  border-radius: 999px;
  padding: 2px 5px;
  background: rgba(216, 255, 118, 0.12);
  color: #d8ff76;
  font-size: 8px;
  font-weight: 1000;
  line-height: 1;
  pointer-events: none;
}

.crate-quick-actions img,
.crate-shop-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.44));
}

.crate-quick-actions b {
  display: block;
  color: #f6fff4;
  font-size: 12px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.crate-quick-actions small {
  display: block;
  margin-top: 2px;
  color: rgba(221, 238, 226, 0.54);
  font-size: 9px;
  font-weight: 1000;
  text-transform: uppercase;
}

.crate-quick-actions strong {
  color: #d8ff76;
}

.crate-map-canvas .crate-quick-actions--overlay {
  position: absolute;
  z-index: 19;
  right: 12px;
  bottom: 12px;
  width: min(330px, calc(100% - 24px));
  max-height: min(44vh, 306px);
  margin: 0;
  padding: 8px;
  overflow: auto;
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.06), transparent 42%),
    rgba(5, 9, 7, 0.66);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.crate-map-canvas .crate-quick-actions--overlay button {
  grid-template-columns: 28px minmax(0, 1fr) auto;
  min-height: 38px;
  padding: 6px;
  background: rgba(8, 15, 11, 0.72);
}

.crate-map-canvas .crate-quick-actions--overlay img {
  width: 28px;
  height: 28px;
}

.crate-map-canvas .crate-quick-actions--overlay b {
  font-size: 11px;
}

.crate-map-canvas .crate-quick-actions--overlay small {
  font-size: 8px;
}

.crate-trader-panel {
  grid-area: trader;
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.crate-trader-panel__status,
.crate-trader-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.07), transparent 58%),
    rgba(6, 12, 8, 0.78);
}

.crate-trader-panel__status {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  border-color: rgba(216, 255, 118, 0.2);
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 255, 118, 0.12), transparent 38%),
    rgba(7, 13, 9, 0.82);
}

.crate-trader-panel__status span,
.crate-trader-card span,
.crate-shop-item__trade em {
  display: block;
  color: rgba(221, 238, 226, 0.62);
  font-size: 10px;
  font-style: normal;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.crate-trader-panel__status strong {
  display: block;
  margin-top: 5px;
  color: #f6fff4;
  font-size: 17px;
  line-height: 1.05;
}

.crate-trader-panel__status small {
  display: block;
  margin-top: 7px;
  color: rgba(221, 238, 226, 0.64);
  line-height: 1.35;
}

.crate-trader-panel__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.crate-trader-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-items: center;
  min-height: 86px;
  padding: 9px;
}

.crate-trader-card::before,
.crate-shop-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(142, 230, 173, 0.32);
  opacity: 0.75;
}

.crate-trader-card.is-ready {
  border-color: rgba(216, 255, 118, 0.54);
  box-shadow: inset 0 0 0 1px rgba(216, 255, 118, 0.08), 0 0 30px rgba(216, 255, 118, 0.08);
}

.crate-trader-card.is-ready::before,
.crate-shop-item.is-recommended::before,
.crate-shop-item.is-affordable::before {
  background: #d8ff76;
}

.crate-clicker.is-event-active .crate-trader-card.is-event-needed::before,
.crate-clicker.is-event-active .crate-teammate.is-event-needed::before,
.crate-clicker.is-event-active .crate-shop-item.is-event-needed::before {
  width: 4px;
  background: #d8ff76;
  opacity: 1;
  box-shadow: 0 0 14px rgba(216, 255, 118, 0.62);
}

.crate-trader-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 9px 14px rgba(0, 0, 0, 0.48));
}

.crate-trader-card strong {
  display: block;
  margin-top: 2px;
  color: #f6fff4;
  font-size: 14px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.crate-trader-card small {
  display: block;
  margin-top: 4px;
  color: rgba(221, 238, 226, 0.62);
  font-size: 10px;
  line-height: 1.25;
}

.crate-trader-card em {
  align-self: start;
  color: #d8ff76;
  font-size: 10px;
  font-style: normal;
  font-weight: 1000;
  white-space: nowrap;
}

.crate-trader-card .crate-buy-button {
  grid-column: 1 / -1;
  min-height: 32px;
  padding: 6px 9px;
}

.crate-shop-list {
  grid-area: shop;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 8px;
  overflow: auto;
  padding-right: 2px;
}

.crate-actions-hud .crate-shop-list {
  max-height: none;
}

.crate-actions-hud .crate-inventory {
  grid-area: inventory;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 7px;
  align-items: stretch;
  min-height: 42px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(142, 230, 173, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(142, 230, 173, 0.06), transparent 46%),
    rgba(0, 0, 0, 0.2);
}

.crate-actions-hud .crate-inventory span {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 6px 8px;
  align-items: center;
  min-width: 0;
  padding: 7px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background: rgba(8, 15, 11, 0.74);
}

.crate-actions-hud .crate-inventory span.is-recommended {
  border-color: rgba(216, 255, 118, 0.54);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.12), transparent 50%),
    rgba(8, 15, 11, 0.78);
}

.crate-actions-hud .crate-inventory span.crate-inventory-empty {
  display: flex;
  grid-template-columns: none;
  grid-column: 1 / -1;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-width: 0;
  color: rgba(221, 238, 226, 0.7);
}

.crate-actions-hud .crate-inventory span.crate-inventory-empty b {
  flex: 0 0 auto;
  white-space: nowrap;
}

.crate-actions-hud .crate-inventory span.crate-inventory-empty small {
  margin: 0;
  color: rgba(221, 238, 226, 0.56);
}

.crate-actions-hud .crate-inventory img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.42));
}

.crate-actions-hud .crate-inventory b {
  color: #f6fff4;
  font-size: 12px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.crate-actions-hud .crate-inventory strong {
  color: #d8ff76;
  font-size: 14px;
}

.crate-actions-hud .crate-inventory small {
  grid-column: 2 / -1;
  color: rgba(221, 238, 226, 0.58);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.crate-actions-hud .crate-inventory button {
  min-height: 28px;
  border: 1px solid rgba(142, 230, 173, 0.2);
  border-radius: 7px;
  background: rgba(6, 10, 8, 0.82);
  color: #f6fff4;
  font-size: 10px;
  font-weight: 1000;
  cursor: pointer;
}

.crate-actions-hud .crate-inventory button[data-crate-use] {
  grid-column: 2;
  color: #d8ff76;
}

.crate-actions-hud .crate-inventory button[data-crate-sell] {
  grid-column: 3;
  color: rgba(221, 238, 226, 0.72);
}

.crate-shop-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) minmax(104px, auto);
  gap: 9px;
  align-items: center;
  min-height: 76px;
  padding: 9px 9px 9px 12px;
  overflow: hidden;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), transparent 62%),
    rgba(11, 20, 14, 0.78);
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.crate-shop-item:hover {
  border-color: rgba(142, 230, 173, 0.34);
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.09), transparent 62%),
    rgba(13, 24, 17, 0.86);
  box-shadow: inset 0 0 0 1px rgba(246, 255, 244, 0.03);
  transform: translateY(-1px);
}

.crate-shop-item strong {
  display: block;
  margin: 3px 0;
  color: #f6fff4;
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.crate-shop-item small {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(216, 255, 118, 0.72);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.crate-shop-item.is-owned,
.crate-shop-item--rare {
  border-color: rgba(216, 255, 118, 0.34);
}

.crate-shop-item.is-recommended {
  border-color: rgba(216, 255, 118, 0.56);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.12), transparent 46%),
    rgba(17, 28, 21, 0.82);
}

.crate-shop-item.is-affordable .crate-buy-button {
  background: rgba(216, 255, 118, 0.14);
}

.crate-shop-item[data-rarity="epic"] {
  border-color: rgba(196, 142, 255, 0.42);
}

.crate-shop-item[data-rarity="legendary"] {
  border-color: rgba(216, 255, 118, 0.58);
  background: rgba(216, 255, 118, 0.1);
}

.crate-shop-item--empty {
  grid-column: 1 / -1;
}

.crate-buy-button {
  min-height: 34px;
  padding: 7px 10px;
  border-color: rgba(142, 230, 173, 0.24);
  background:
    linear-gradient(180deg, rgba(216, 255, 118, 0.14), rgba(8, 15, 11, 0.86));
  color: #d8ff76;
}

.crate-sell-button {
  min-height: 30px;
  padding: 6px 8px;
  color: rgba(221, 238, 226, 0.76);
  font-size: 10px;
}

.crate-shop-item__trade {
  display: grid;
  gap: 6px;
  justify-items: stretch;
  min-width: 104px;
}

.crate-shop-item__trade em {
  justify-self: end;
  color: #d8ff76;
}

.crate-tabs button:hover,
.crate-buy-button:hover,
.crate-sell-button:hover,
.crate-choice-button:hover,
.crate-quick-actions button:hover,
.crate-map-picker button:hover,
.crate-teammate button:hover,
.crate-prestige-button:hover {
  border-color: rgba(216, 255, 118, 0.64);
  background: rgba(29, 43, 31, 0.96);
  transform: translateY(-1px);
}

.crate-tabs button:disabled,
.crate-buy-button:disabled,
.crate-sell-button:disabled,
.crate-choice-button:disabled,
.crate-quick-actions button:disabled,
.crate-map-picker button:disabled,
.crate-teammate button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
}

.crate-clicker.is-event-active .crate-choice-button.is-event-needed:disabled,
.crate-clicker.is-event-active .crate-quick-actions button.is-event-needed:disabled {
  opacity: 0.82;
  filter: saturate(1.1);
}

.crate-bottom-hud {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr)) minmax(230px, 1.25fr) minmax(150px, 0.8fr) auto;
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
}

.crate-bottom-hud article,
.crate-run-actions {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(142, 230, 173, 0.16);
  border-radius: 8px;
  background: rgba(17, 28, 21, 0.74);
}

.crate-bottom-hud strong {
  display: block;
  margin-top: 4px;
  color: #f6fff4;
  font-size: 22px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.crate-bottom-hud i {
  display: block;
  height: 7px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
}

.crate-bottom-hud b {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ee6ad, #d8ff76);
  transition: width 220ms ease;
}

.crate-bottom-hud__danger b {
  background: linear-gradient(90deg, #6aa5ff, #ff8b6b);
}

.crate-map-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

.crate-map-picker--overlay {
  position: absolute;
  z-index: 19;
  top: 76px;
  left: 14px;
  width: min(250px, calc(100% - 28px));
  margin-top: 0;
  padding: 7px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  background: rgba(5, 9, 7, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.crate-map-picker button {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 26px;
  padding: 4px 7px;
  font-size: 10px;
}

.crate-map-picker button::after {
  content: attr(data-progress);
  color: rgba(221, 238, 226, 0.54);
  font-size: 8px;
  font-weight: 1000;
  line-height: 1;
}

.crate-map-picker button.is-cleared {
  border-color: rgba(216, 255, 118, 0.72);
  background:
    linear-gradient(135deg, rgba(216, 255, 118, 0.16), transparent 58%),
    rgba(8, 15, 11, 0.92);
}

.crate-map-picker button.is-cleared::after {
  content: "cleared";
  color: #d8ff76;
}

.crate-teammates {
  display: grid;
  gap: 7px;
}

.crate-teammates--overlay {
  position: absolute;
  z-index: 19;
  top: 176px;
  left: 14px;
  width: min(310px, calc(100% - 28px));
  max-height: min(47vh, 390px);
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.08), transparent 58%),
    rgba(5, 9, 7, 0.66);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.crate-teammates__head {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 2px 2px 6px;
}

.crate-teammates__head span,
.crate-teammate span {
  display: block;
  color: rgba(221, 238, 226, 0.62);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.crate-teammates__head strong {
  display: block;
  margin-top: 2px;
  color: #d8ff76;
  font-size: 18px;
  line-height: 1;
}

.crate-teammates__head small {
  color: rgba(221, 238, 226, 0.58);
  font-size: 10px;
  font-weight: 1000;
  white-space: nowrap;
}

.crate-teammates__list {
  display: grid;
  gap: 6px;
}

.crate-teammate {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) minmax(72px, auto);
  gap: 7px;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(142, 230, 173, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(142, 230, 173, 0.055), transparent 58%),
    rgba(8, 15, 11, 0.74);
}

.crate-teammate::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(142, 230, 173, 0.28);
}

.crate-teammate__avatar {
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 255, 118, 0.3);
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 20%, rgba(216, 255, 118, 0.18), transparent 58%),
    rgba(0, 0, 0, 0.42);
  color: #d8ff76;
  font-size: 10px;
  font-weight: 1000;
  box-shadow: inset 0 0 0 1px rgba(216, 255, 118, 0.05);
}

.crate-teammate strong {
  display: block;
  margin-top: 2px;
  color: #f6fff4;
  font-size: 12px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.crate-teammate small,
.crate-teammate em {
  display: block;
  margin-top: 3px;
  color: rgba(221, 238, 226, 0.58);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.18;
}

.crate-teammate em {
  color: rgba(216, 255, 118, 0.7);
  text-transform: uppercase;
}

.crate-teammate__actions {
  display: grid;
  gap: 5px;
  justify-items: end;
  align-self: center;
}

.crate-teammate button {
  min-height: 30px;
  padding: 5px 7px;
  color: #d8ff76;
  font-size: 9px;
  white-space: nowrap;
}

.crate-teammate.is-hired {
  border-color: rgba(216, 255, 118, 0.3);
}

.crate-teammate.is-hired::before {
  background: #d8ff76;
}

.crate-teammate.is-paused,
.crate-teammate.is-benched {
  opacity: 0.72;
}

.crate-teammate.is-debt,
.crate-teammate.is-warning {
  border-color: rgba(255, 139, 107, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 139, 107, 0.12), transparent 58%),
    rgba(8, 15, 11, 0.78);
}

.crate-teammate.is-debt::before,
.crate-teammate.is-warning::before {
  background: #ff8b6b;
  box-shadow: 0 0 18px rgba(255, 139, 107, 0.5);
}

.crate-teammate.is-left {
  border-color: rgba(221, 238, 226, 0.12);
  opacity: 0.64;
}

.crate-run-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-content: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.crate-run-actions--overlay {
  position: absolute;
  z-index: 19;
  top: 76px;
  right: 14px;
  width: 152px;
  padding: 7px;
  border: 1px solid rgba(142, 230, 173, 0.18);
  border-radius: 8px;
  background: rgba(5, 9, 7, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.crate-run-actions--overlay .crate-danger-button,
.crate-run-actions--overlay .crate-prestige-button {
  min-height: 30px;
  padding: 6px 8px;
  font-size: 11px;
}

.crate-danger-button,
.crate-prestige-button {
  min-height: 38px;
  padding: 8px 11px;
}

.crate-danger-button {
  border-color: rgba(255, 107, 107, 0.36);
  background: rgba(255, 107, 107, 0.08);
  color: #ffd4cc;
}

.crate-prestige-button {
  color: #d8ff76;
}

@keyframes crateFloat {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  18% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateY(-42px) scale(1.04);
  }
}

@keyframes crateBluePulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.95; }
}

@keyframes crateEventGlow {
  0%, 100% {
    box-shadow:
      inset 0 0 0 1px rgba(216, 255, 118, 0.08),
      0 0 24px rgba(216, 255, 118, 0.1),
      0 24px 70px rgba(0, 0, 0, 0.34);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(216, 255, 118, 0.16),
      0 0 42px rgba(216, 255, 118, 0.22),
      0 24px 70px rgba(0, 0, 0, 0.34);
  }
}

@keyframes crateNeededGlow {
  0%, 100% {
    filter: brightness(1);
    box-shadow:
      inset 0 0 0 1px rgba(216, 255, 118, 0.12),
      0 0 18px rgba(216, 255, 118, 0.14);
  }
  50% {
    filter: brightness(1.08);
    box-shadow:
      inset 0 0 0 1px rgba(216, 255, 118, 0.22),
      0 0 30px rgba(216, 255, 118, 0.3);
  }
}

@keyframes crateRedzonePulse {
  0%, 100% { opacity: 0.62; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes crateBombDrop {
  0% { opacity: 0; transform: translateY(-40px) scale(0.8); }
  30% { opacity: 1; }
  75% { opacity: 1; transform: translateY(120px) scale(1); }
  100% { opacity: 0; transform: translateY(120px) scale(2.8); }
}

@keyframes crateMarkerBlink {
  0%, 100% { filter: brightness(1); transform: translateY(0); }
  50% { filter: brightness(1.7); transform: translateY(-2px); }
}

@keyframes crateShake {
  0%, 100% { transform: rotate(-3deg) translate(0, 0) scale(1); }
  25% { transform: rotate(-5deg) translate(-3px, 2px) scale(1.03); }
  50% { transform: rotate(0deg) translate(3px, -2px) scale(1.01); }
  75% { transform: rotate(-4deg) translate(-2px, 1px) scale(1.02); }
}

@keyframes crateGrenadeArc {
  0% { opacity: 0; transform: translate(0, 0) scale(0.8); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translate(120px, 70px) scale(1.12); }
}

@keyframes crateExplosion {
  0% { opacity: 0; transform: scale(0.2); }
  24% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.7); }
}

@keyframes crateSmoke {
  0% { opacity: 0; transform: scale(0.2); }
  18% { opacity: 0.9; }
  100% { opacity: 0; transform: scale(2.4); }
}

@keyframes crateFire {
  0% { opacity: 0; transform: scale(0.25) rotate(0deg); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: scale(2) rotate(18deg); }
}

@keyframes crateHudPulse {
  0% { opacity: 0; transform: scale(0.2); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: scale(2.6); }
}

@keyframes crateMapPing {
  0% { opacity: 0; transform: scale(0.25); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: scale(2.4); }
}

@media (max-width: 1180px) {
  .crate-game-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "map"
      "actions";
  }

  .crate-actions-hud,
  .crate-map-canvas {
    min-height: 0;
  }

  .crate-actions-hud {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "tabs"
      "trader"
      "inventory"
      "shop";
  }

  .crate-trader-panel,
  .crate-trader-panel__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .crate-clicker {
    width: min(100% - 16px, 1480px);
    margin-top: 8px;
  }

  .crate-game-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "map"
      "actions";
  }

  .crate-map-canvas {
    min-height: 680px;
  }

  .crate-map-hud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crate-map-picker--overlay {
    top: 126px;
    left: 10px;
    width: min(250px, calc(50% - 15px));
  }

  .crate-teammates--overlay {
    top: 220px;
    left: 10px;
    width: min(270px, calc(50% - 15px));
    max-height: 202px;
  }

  .crate-run-actions--overlay {
    top: 126px;
    right: 10px;
    width: 145px;
  }

  .crate-map-hud--bottom-left {
    left: 10px;
    bottom: 10px;
    width: min(270px, calc(50% - 15px));
  }

  .crate-map-canvas .crate-quick-actions--overlay {
    right: 10px;
    bottom: 10px;
    width: min(270px, calc(50% - 15px));
    max-height: 178px;
  }

  .crate-event-card {
    left: 50%;
    bottom: 198px;
    width: min(420px, calc(100% - 20px));
    max-height: 185px;
    transform: translateX(-50%);
  }

  .crate-actions-hud {
    min-height: auto;
  }

  .crate-tabs {
    justify-content: stretch;
  }

  .crate-tabs button {
    flex-basis: calc(33.333% - 5px);
  }

  .crate-trader-card,
  .crate-shop-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .crate-trader-card em,
  .crate-shop-item__trade {
    grid-column: 1 / -1;
  }

  .crate-actions-hud .crate-shop-list {
    max-height: none;
  }

  .crate-run-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .crate-map-canvas {
    min-height: 760px;
  }

  .crate-map-hud {
    left: 8px;
    right: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .crate-map-picker--overlay {
    top: 128px;
    left: 8px;
    width: calc(100% - 166px);
  }

  .crate-teammates--overlay {
    top: 220px;
    left: 8px;
    width: calc(100% - 16px);
    max-height: 150px;
  }

  .crate-teammate {
    grid-template-columns: 28px minmax(0, 1fr) minmax(64px, auto);
  }

  .crate-run-actions--overlay {
    top: 128px;
    right: 8px;
    width: 142px;
  }

  .crate-map-hud--bottom-left {
    left: 8px;
    right: 8px;
    bottom: 10px;
    width: auto;
  }

  .crate-map-canvas .crate-quick-actions--overlay {
    right: 8px;
    bottom: 134px;
    width: calc(100% - 16px);
    max-height: 142px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crate-event-card {
    bottom: 292px;
    width: calc(100% - 16px);
    max-height: 176px;
  }

  .crate-event-markers span {
    max-width: 112px;
    white-space: normal;
  }

  .crate-shop-item,
  .crate-bottom-hud {
    grid-template-columns: 1fr;
  }

  .crate-actions-hud__head {
    align-items: center;
  }

  .crate-tabs {
    flex-wrap: wrap;
  }

  .crate-tabs button {
    flex-basis: 100%;
  }

  .crate-actions-hud .crate-inventory span.crate-inventory-empty {
    align-items: flex-start;
    flex-direction: column;
  }

  .crate-actions-hud .crate-inventory span,
  .crate-trader-card {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .crate-actions-hud .crate-inventory strong {
    grid-column: 2;
  }

  .crate-actions-hud .crate-inventory button[data-crate-use],
  .crate-actions-hud .crate-inventory button[data-crate-sell],
  .crate-actions-hud .crate-inventory small,
  .crate-trader-card .crate-buy-button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1080px) {
  .pro-event-grid,
  .pro-match-grid,
  .pro-leaderboard-preview {
    grid-template-columns: 1fr;
  }

  .pro-profile-spotlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pro-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .pro-event-card,
  .pro-match-card {
    grid-template-columns: 1fr;
  }

  .pro-event-card img,
  .pro-match-card img {
    height: 150px;
  }

  .pro-event-card dl,
  .pro-match-card dl,
  .pro-profile-spotlight dl {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .public-duel-fire {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }
}
