/* [project]/frontend/web/src/app/texture-tokens.css [app-client] (css) */
:root {
  --tex-activity-icon-rank: none;
  --tex-avatar-frame-clean: none;
  --tex-hero-ember: none;
  --tex-level-badge-clean: none;
  --tex-match-panel-frame: none;
  --tex-match-row-texture: none;
  --tex-panel-frame: none;
  --tex-panel-texture: none;
  --tex-panel-texture-clean: none;
  --tex-rank-emblem: none;
  --tex-ribbon-frame: none;
  --tex-tab-active-frame: none;
  --tex-tab-active-texture: none;
  --tex-tab-normal-frame: none;
  --tex-tab-normal-texture: none;
}

/* [project]/frontend/web/src/app/styles/base/00-variables.css [app-client] (css) */
:root {
  --bg: #10110e;
  --panel: #f1eedc14;
  --panel-strong: #f1eedc1f;
  --panel-soft: #ffffff0b;
  --line: #f1eedc29;
  --line-strong: #f1eedc42;
  --text: #f4f0df;
  --muted: #b8b09a;
  --quiet: #827969;
  --accent: #d84b32;
  --accent-strong: #f0613f;
  --green: #23a769;
  --green-soft: #23a76929;
  --gold: #d8a93a;
  --danger: #d84949;
  --font-body: "Segoe UI", sans-serif;
  --font-display: "Segoe UI", sans-serif;
  --shadow: 0 24px 70px #00000052;
  --radius: 8px;
}

/* [project]/frontend/web/src/app/styles/base/01-reset.css [app-client] (css) */
* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-body);
}

body {
  background: radial-gradient(circle at 18% 12%, #d23d263d, #0000 26rem), radial-gradient(circle at 92% 4%, #23a76929, #0000 24rem), linear-gradient(135deg, #141510 0%, #0d0f0d 42%, #17130f 100%);
  min-height: 100vh;
  margin: 0;
}

body:before {
  pointer-events: none;
  content: "";
  opacity: .18;
  background-image: linear-gradient(#ffffff0b 1px, #0000 1px), linear-gradient(90deg, #ffffff0b 1px, #0000 1px);
  background-size: 42px 42px;
  position: fixed;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000 0%, #0000 86%);
  mask-image: linear-gradient(#000 0%, #0000 86%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, p {
  margin: 0;
}

h1, h2, .brand strong {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: .92;
}

h2 {
  font-size: 1.15rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.5;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* [project]/frontend/web/src/app/styles/base/02-app-shell.css [app-client] (css) */
.app-shell {
  z-index: 1;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
  position: relative;
}

.sidebar {
  border-right: 1px solid var(--line);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  background: #0d0f0dc7;
  flex-direction: column;
  gap: 28px;
  height: 100vh;
  padding: 28px 22px;
  display: flex;
  position: sticky;
  top: 0;
}

.workspace {
  min-width: 0;
  padding: 30px;
}

/* [project]/frontend/web/src/app/styles/base/02-layout-shell.css [app-client] (css) */
.topbar {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  display: flex;
}

.topbar-actions {
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  display: flex;
}

.dashboard-grid, .page-grid {
  align-items: stretch;
  gap: 16px;
  display: grid;
}

.dashboard-grid {
  grid-template-columns: minmax(280px, 1.08fr) minmax(280px, 1fr) minmax(300px, 1.12fr);
}

.page-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.page-grid.is-two-column {
  grid-template-columns: minmax(300px, 1.1fr) minmax(300px, .9fr);
}

.profile-panel, .calendar-panel, .matches-panel {
  grid-row: span 2;
}

.map-panel, .analytics-panel, .span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.brand {
  align-items: center;
  gap: 12px;
  display: flex;
}

.brand-mark {
  color: #150f0c;
  background: linear-gradient(135deg, var(--accent-strong), var(--gold));
  border-radius: var(--radius);
  place-items: center;
  width: 46px;
  height: 46px;
  font-size: 1.4rem;
  font-weight: 800;
  display: grid;
  box-shadow: 0 14px 30px #d84b3238;
}

.brand strong, .brand small {
  display: block;
}

.brand strong {
  font-size: 1.1rem;
}

.brand small {
  color: var(--muted);
  margin-top: 2px;
  font-size: .76rem;
}

.nav-list {
  gap: 7px;
  display: grid;
}

.nav-item {
  color: var(--muted);
  border-radius: var(--radius);
  border: 1px solid #0000;
  padding: 11px 12px;
  display: block;
}

.nav-item:hover, .nav-item[data-active="true"] {
  color: var(--text);
  background: var(--panel);
  border-color: var(--line);
}

.nav-item.is-locked {
  opacity: .5;
  cursor: not-allowed;
  border-color: var(--line);
  background: #ffffff05;
}

.page-intro {
  gap: 12px;
  padding: 22px;
  display: grid;
}

.sync-panel {
  align-content: start;
  gap: 12px;
  display: grid;
}

/* [project]/frontend/web/src/app/styles/components/card.css [app-client] (css) */
.sidebar-card, .panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), #f1eedc0b);
  box-shadow: var(--shadow);
}

.sidebar-card {
  margin-top: auto;
  padding: 16px;
}

.card {
  border: 1px solid #ffffff0a;
  box-shadow: 0 8px 40px #00000073, inset 0 1px #ffffff08;
}

.sidebar-card strong {
  margin: 6px 0 4px;
  font-size: 1.25rem;
  display: block;
}

.mini-progress, .bar {
  background: #ffffff14;
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
}

.mini-progress {
  margin-top: 14px;
}

.mini-progress span, .bar span {
  background: linear-gradient(90deg, var(--accent), var(--gold));
  height: 100%;
  display: block;
}

.panel {
  min-width: 0;
  padding: 18px;
}

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

.panel-title strong, .queue-time {
  color: var(--gold);
}

.eyebrow {
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: .72rem;
  font-weight: 800;
  display: block;
}

/* [project]/frontend/web/src/app/styles/components/button.css [app-client] (css) */
.sidebar-action-button {
  width: 100%;
  margin-top: 12px;
}

.primary-button, .ghost-button {
  border-radius: var(--radius);
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  font-weight: 800;
  display: inline-flex;
}

.primary-button {
  color: #17110e;
  background: linear-gradient(135deg, var(--accent-strong), var(--gold));
}

.ghost-button {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: #ffffff0a;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

/* [project]/frontend/web/src/app/styles/base/03-profile-core.css [app-client] (css) */
.profile-page {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px;
}

.profile-hub {
  grid-column: span 3;
}

.profile-hub-main {
  gap: 14px;
  display: grid;
}

.profile-hub-topline {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(120deg, #d84b321f, #0000 36%), #ffffff06;
  grid-template-columns: auto minmax(0, 1fr) minmax(240px, 320px);
  align-items: start;
  gap: 16px;
  padding: 16px;
  display: grid;
  position: relative;
}

.profile-hub-topline-main {
  align-content: start;
  gap: 10px;
  min-width: 0;
  display: grid;
}

.profile-hub-topline-main h2 {
  color: var(--text);
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.04;
}

.profile-hub-topline-main p {
  color: var(--muted);
  font-size: .88rem;
}

.profile-hub-topline-actions {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.profile-hub-topline-actions .primary-button, .profile-hub-topline-actions .ghost-button {
  min-height: 38px;
  padding: 0 14px;
}

.profile-hub-metrics {
  gap: 8px;
  display: grid;
}

.profile-hub-metric {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff0b;
  gap: 5px;
  padding: 10px 12px;
  display: grid;
}

.profile-hub-metric span {
  color: var(--muted);
  font-size: .78rem;
}

.profile-hub-metric strong {
  color: var(--gold);
  font-size: 1.18rem;
}

.profile-avatar-button {
  cursor: pointer;
  color: #17110e;
  background: linear-gradient(135deg, #fff6, transparent),
    linear-gradient(135deg, var(--gold), var(--green));
  border: 2px solid #d8a93ab3;
  border-radius: 999px;
  align-self: center;
  place-items: center;
  width: 94px;
  height: 94px;
  font-size: 1rem;
  font-weight: 900;
  display: grid;
  overflow: hidden;
}

.profile-avatar-button img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.profile-nickname-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d84b3224, #0000 58%), #12120eeb;
  grid-column: 1 / -1;
  gap: 5px;
  width: min(560px, 100%);
  padding: 12px;
  display: grid;
}

.profile-nickname-card strong {
  color: var(--text);
  font-size: 1rem;
}

.profile-modal-backdrop {
  z-index: 40;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #080a09b8;
  place-items: center;
  padding: 16px;
  display: grid;
  position: fixed;
  inset: 0;
}

.profile-modal-card {
  border-radius: var(--radius);
  background: linear-gradient(145deg, #d8a93a24, #0000 58%), #10120ef5;
  border: 1px solid #d8a93a70;
  gap: 12px;
  width: min(560px, 100%);
  padding: 18px;
  display: grid;
  box-shadow: 0 24px 64px #00000059;
}

.profile-modal-card h3 {
  color: var(--text);
  margin: 0;
}

.profile-modal-card p {
  color: var(--muted);
  margin: 0;
}

.profile-modal-actions {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.profile-avatar-editor-modal {
  width: min(760px, 100%);
}

.profile-avatar-editor-shell {
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items: start;
  gap: 14px;
  display: grid;
}

.profile-avatar-editor-stage {
  aspect-ratio: 1;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
  border: 1px solid var(--line);
  background-color: #ffffff05;
  background-image: linear-gradient(45deg, #ffffff0a 25%, #0000 25%), linear-gradient(-45deg, #ffffff0a 25%, #0000 25%), linear-gradient(45deg, #0000 75%, #ffffff0a 75%), linear-gradient(-45deg, #0000 75%, #ffffff0a 75%), none;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
  background-repeat: repeat, repeat, repeat, repeat, repeat;
  background-size: 18px 18px;
  background-attachment: scroll, scroll, scroll, scroll, scroll;
  background-origin: padding-box, padding-box, padding-box, padding-box, padding-box;
  background-clip: border-box, border-box, border-box, border-box, border-box;
  border-radius: 14px;
  width: min(100%, 280px);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.profile-avatar-editor-loading {
  height: 100%;
  color: var(--muted);
  place-items: center;
  font-size: .84rem;
  display: grid;
}

.profile-avatar-editor-image {
  pointer-events: none;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
}

.profile-avatar-editor-mask {
  pointer-events: none;
  background: #080a0914;
  position: absolute;
  inset: 0;
}

.profile-avatar-editor-mask:after {
  content: "";
  border: 2px solid #d8a93aeb;
  border-radius: 14px;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 0 1px #00000061, inset 0 0 0 1px #ffffff24;
}

.profile-avatar-editor-preview {
  gap: 8px;
  display: grid;
}

.profile-avatar-editor-preview strong {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}

.profile-avatar-editor-preview-frame {
  border: 1px solid var(--line);
  background: #ffffff08;
  border-radius: 999px;
  width: 96px;
  height: 96px;
  position: relative;
  overflow: hidden;
}

.profile-avatar-editor-preview-frame img {
  pointer-events: none;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
}

.profile-avatar-editor-zoom {
  gap: 8px;
  display: grid;
}

.profile-avatar-editor-zoom span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
}

.profile-avatar-editor-zoom input[type="range"] {
  width: 100%;
  accent-color: var(--accent-strong);
}

.profile-avatar-editor-error {
  color: #f6bb65;
  font-size: .82rem;
}

.profile-day-matches-modal {
  width: min(760px, 100%);
}

.profile-day-match-table {
  max-height: min(58vh, 460px);
  overflow: auto;
}

.profile-day-match-row {
  grid-template-columns: minmax(92px, 118px) minmax(0, 1fr) 86px 150px;
}

.profile-timeline-modal {
  overscroll-behavior: contain;
  width: min(720px, 100%);
  max-height: min(86vh, 820px);
  overflow-y: auto;
}

.profile-timeline-processing {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff08;
  gap: 8px;
  padding: 10px 12px;
  display: grid;
}

.profile-timeline-grid {
  gap: 8px;
  display: grid;
}

.profile-timeline-head, .profile-timeline-row {
  grid-template-columns: minmax(140px, 1.2fr) repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  display: grid;
}

.profile-timeline-head {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff0a;
  padding: 8px 10px;
}

.profile-timeline-head span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
}

.profile-timeline-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff08;
  padding: 9px 10px;
}

.profile-timeline-row span {
  color: var(--text);
  font-size: .82rem;
}

.profile-timeline-row strong {
  color: var(--gold);
  font-size: .84rem;
}

.profile-primary-tabs, .profile-main-tabs {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.profile-primary-tabs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff06;
  width: fit-content;
  padding: 4px;
}

.profile-primary-tabs button, .profile-main-tabs button {
  min-height: 40px;
  color: var(--muted);
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff08;
  padding: 0 14px;
  font-size: .82rem;
  font-weight: 800;
  transition: border-color .2s, background-color .2s, color .2s;
}

.profile-primary-tabs button:disabled, .profile-main-tabs button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.profile-primary-tabs button:hover:not(:disabled), .profile-main-tabs button:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--line-strong);
}

.profile-primary-tabs button.is-active, .profile-main-tabs button.is-active {
  color: var(--text);
  background: #d84b3238;
  border-color: #d84b328f;
  box-shadow: inset 0 0 0 1px #d8a93a33;
}

.profile-main-content {
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 12px;
  display: grid;
}

.profile-lock-note {
  color: var(--muted);
  border-radius: var(--radius);
  background: #d8a93a14;
  border: 1px solid #d8a93a57;
  margin-top: 8px;
  padding: 10px 12px;
  font-size: .82rem;
}

.profile-main-content.is-stats {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
}

.profile-history-alone {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  gap: 12px;
  padding: 14px;
  display: grid;
}

.profile-match-list {
  align-content: start;
  gap: 8px;
  display: grid;
}

.profile-match-item {
  border-radius: var(--radius);
  background: #d84b3214;
  border: 1px solid #d84b326b;
  gap: 6px;
  padding: 11px;
  display: grid;
}

.profile-match-item[type="button"], .match-row[type="button"] {
  text-align: left;
  width: 100%;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.profile-match-item[type="button"]:hover, .match-row[type="button"]:hover {
  filter: brightness(1.08);
}

.profile-match-item b {
  color: var(--text);
  font-size: .82rem;
  line-height: 1.3;
}

.profile-match-outcome, .profile-match-summary {
  text-align: center;
  justify-items: center;
  gap: 4px;
  display: grid;
}

.profile-match-item span {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.3;
}

.profile-match-item small {
  color: var(--gold);
  font-size: .74rem;
  line-height: 1.35;
}

.profile-rating-change {
  min-width: 54px;
  color: var(--muted);
  text-align: center;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  justify-self: center;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.profile-rating-change.is-gold {
  color: #d8a94a;
  text-shadow: 0 0 16px #d8a94a42;
}

.profile-rating-change.is-positive {
  color: var(--green);
  text-shadow: 0 0 14px #58db2433;
}

.profile-rating-change.is-mixed {
  color: #e7c463;
  text-shadow: 0 0 12px #e7c46329;
}

.profile-rating-change.is-negative {
  color: var(--danger);
  text-shadow: 0 0 14px #d84a4a33;
}

.profile-rating-change.is-pending {
  color: #6f7783;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .78rem;
}

.profile-match-item.is-win {
  background: #23a7691a;
  border-color: #23a76961;
}

.profile-history-row {
  grid-template-columns: minmax(86px, 112px) minmax(0, 1fr) 82px 168px;
}

.profile-history-row small {
  font-size: .72rem;
  line-height: 1.35;
}

.profile-main-right {
  gap: 12px;
  display: grid;
}

.profile-summary, .profile-calendar-box, .profile-rank-box, .profile-best-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  gap: 12px;
  padding: 14px;
  display: grid;
}

.profile-summary h3, .profile-calendar-box h3, .profile-rank-box h3, .profile-best-box h3 {
  color: var(--text);
  margin: 0;
  font-size: 1rem;
}

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

.profile-summary-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff08;
  padding: 10px;
}

.profile-summary-grid span {
  color: var(--muted);
  font-size: .79rem;
}

.profile-summary-grid strong {
  color: var(--gold);
  margin-top: 4px;
  font-size: 1.14rem;
  display: block;
}

.profile-sync-box {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff08;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px;
  display: flex;
}

.profile-sync-box span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
}

.profile-rank-head {
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  display: grid;
}

.profile-rank-mark {
  color: #17110e;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-strong), var(--gold));
  place-items: center;
  width: 74px;
  height: 74px;
  font-weight: 900;
  display: grid;
}

.profile-rank-head span {
  color: var(--muted);
  font-size: .8rem;
}

.profile-rank-head strong {
  color: var(--gold);
  margin-top: 6px;
  font-size: 1.18rem;
  display: block;
}

.profile-rank-table {
  gap: 6px;
  display: grid;
}

.profile-rank-table div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff08;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px;
  display: grid;
}

.profile-rank-table div.is-current-rank {
  background: linear-gradient(90deg, #58db2429, #58db2408), #ffffff09;
  border-color: #58db2485;
  box-shadow: inset 0 0 0 1px #58db241f, 0 0 18px #58db241f;
}

.profile-rank-table div.is-current-rank span, .profile-rank-table div.is-current-rank small {
  color: var(--green);
}

.profile-rank-table span {
  color: var(--text);
  font-size: .82rem;
  font-weight: 800;
}

.profile-rank-table small {
  color: var(--muted);
  font-size: .75rem;
}

.profile-rank-name {
  cursor: help;
  width: max-content;
  max-width: 100%;
  position: relative;
}

.profile-rank-name:after {
  z-index: 3;
  pointer-events: none;
  width: max-content;
  max-width: 180px;
  color: var(--text);
  white-space: nowrap;
  content: attr(data-rating-range);
  border: 1px solid var(--line-strong);
  opacity: 0;
  background: #080a09f5;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: .72rem;
  font-weight: 800;
  transition: opacity .16s, transform .16s;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  transform: translateY(4px);
  box-shadow: 0 12px 28px #00000057;
}

.profile-rank-name:hover:after, .profile-rank-name:focus-visible:after {
  opacity: 1;
  transform: translateY(0);
}

.profile-rank-percent {
  cursor: help;
  position: relative;
}

.profile-rank-percent:after {
  z-index: 3;
  pointer-events: none;
  width: max-content;
  max-width: 180px;
  color: var(--text);
  white-space: nowrap;
  content: attr(data-player-count);
  border: 1px solid var(--line-strong);
  opacity: 0;
  background: #080a09f5;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: .72rem;
  font-weight: 800;
  transition: opacity .16s, transform .16s;
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  transform: translateY(4px);
  box-shadow: 0 12px 28px #00000057;
}

.profile-rank-percent:hover:after, .profile-rank-percent:focus-visible:after {
  opacity: 1;
  transform: translateY(0);
}

.profile-best-box ol {
  color: var(--text);
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  display: grid;
}

.profile-best-box li {
  color: var(--text);
}

.profile-stat-tags {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.profile-friends, .profile-performances {
  gap: 12px;
  display: grid;
}

.profile-friends-form {
  grid-template-columns: minmax(200px, 1fr) 140px auto;
  gap: 8px;
  display: grid;
}

.profile-friends-form input, .profile-friends-form select {
  width: 100%;
  min-height: 42px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff0d;
  padding: 0 12px;
}

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

.profile-friend-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px;
  display: flex;
}

.profile-friend-card strong {
  color: var(--text);
  font-size: .94rem;
  display: block;
}

.profile-friend-card span {
  color: var(--muted);
  font-size: .8rem;
}

.profile-upload-card {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff09;
  gap: 8px;
  padding: 14px;
  display: grid;
}

.profile-upload-card strong {
  color: var(--text);
}

.profile-upload-card span {
  color: var(--muted);
  font-size: .84rem;
}

.profile-upload-card input {
  color: var(--muted);
  margin-top: 4px;
}

.profile-clips-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.profile-clip-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  gap: 8px;
  padding: 10px;
  display: grid;
}

.profile-clip-card video {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #0f0f0c;
  width: 100%;
}

.profile-clip-card strong {
  color: var(--text);
  font-size: .85rem;
  display: block;
}

.profile-clip-card span {
  color: var(--muted);
  font-size: .77rem;
}

.page-intro p {
  max-width: 780px;
}

.empty-state {
  color: var(--muted);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff09;
  gap: 6px;
  padding: 14px;
  display: grid;
}

.empty-state strong {
  color: var(--text);
}

.profile-head {
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  display: flex;
}

.avatar {
  color: #16110e;
  background: linear-gradient(135deg, #ffffff61, transparent),
    linear-gradient(135deg, var(--gold), var(--green));
  border-radius: var(--radius);
  flex: none;
  place-items: center;
  width: 68px;
  height: 68px;
  font-size: 1.35rem;
  font-weight: 900;
  display: grid;
}

.stat-strip {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
  display: grid;
}

.stat-strip div, .info-tile, .condition-item, .signal-card, .leader-row, .timeline-row, .slot-card, .team-card, .mission-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.stat-strip div {
  padding: 12px;
}

.stat-strip span, .match-row small, .match-row em, .mode-row strong, .info-tile span, .condition-item span, .signal-card span, .leader-row span, .timeline-row span, .slot-card span, .team-card span, .mission-card span {
  color: var(--muted);
  font-style: normal;
}

.stat-strip strong {
  margin-top: 4px;
  font-size: 1.35rem;
  display: block;
}

.tag-block, .hero-pool, .achievement-list {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.tag, .hero-pool span, .achievement-list span, .status-pill {
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff0d;
  padding: 7px 10px;
  font-size: .82rem;
  font-weight: 800;
}

.hero-pool {
  margin-top: 14px;
}

.hero-pool span {
  border-color: #d84b3257;
}

.match-map {
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #11150f;
  width: 100%;
  min-height: 230px;
}

.match-lineup {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  display: grid;
}

.match-lineup span {
  color: var(--muted);
  text-align: center;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  font-size: .86rem;
  font-weight: 800;
}

/* [project]/frontend/web/src/app/styles/base/04-calendar-match.css [app-client] (css) */
.calendar {
  grid-template-columns: repeat(7, minmax(32px, 1fr));
  gap: 7px;
  display: grid;
}

.weekday {
  color: var(--quiet);
  text-align: center;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 800;
}

.day {
  --day-win-share: 50%;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-content: space-between;
  min-height: 52px;
  padding: 7px;
  display: grid;
  overflow: hidden;
}

.day[type="button"] {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.day[type="button"]:hover {
  filter: brightness(1.08);
}

.day.has-results {
  background: linear-gradient(135deg,
            #23a76942 0,
            #23a76942 var(--day-win-share),
            #d849493d var(--day-win-share),
            #d849493d 100%),
        var(--panel-soft);
}

.day b, .day small {
  display: block;
}

.day b {
  font-size: .9rem;
}

.day small {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-size: .72rem;
  font-weight: 800;
}

.day.has-results small {
  color: var(--text);
}

.day.is-empty {
  opacity: 0;
}

.day.is-today {
  border-color: #f0613fb8;
  box-shadow: inset 0 0 0 2px #f0613f52, 0 0 0 1px #f0613f1f;
}

.day.is-good {
  border-color: #23a7696b;
  box-shadow: inset 0 0 0 1px #23a76924;
}

.day.is-mid {
  border-color: #d8a93a70;
  box-shadow: inset 0 0 0 1px #d8a93a29;
}

.day.is-bad {
  border-color: #d8494970;
  box-shadow: inset 0 0 0 1px #d8494924;
}

.mode-list, .party-list, .match-table, .metric-list, .split-list, .condition-list, .signal-grid, .leaderboard, .timeline-list, .slot-grid, .team-grid, .season-missions {
  gap: 8px;
  display: grid;
}

.mode-row, .party-row, .match-row, .metric-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.mode-row, .match-row, .metric-row {
  align-items: center;
  display: grid;
}

.mode-row {
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
}

.mode-row.is-selected {
  background: #d84b3229;
  border-color: #d84b3270;
}

.mode-row.is-locked {
  opacity: .56;
}

.party-row {
  align-items: center;
  gap: 12px;
  padding: 12px;
  display: flex;
}

.party-row p, .team-card p, .mission-card p {
  margin-top: 3px;
  font-size: .86rem;
}

.party-badge {
  color: #11130f;
  background: var(--green);
  border-radius: var(--radius);
  flex: none;
  place-items: center;
  width: 38px;
  height: 38px;
  font-weight: 900;
  display: grid;
}

.match-row {
  grid-template-columns: 54px 1fr 82px 58px;
  gap: 10px;
  padding: 10px 11px;
}

.match-row span {
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 900;
}

.match-row.is-win span {
  color: var(--green);
}

.match-row.is-loss span {
  color: var(--danger);
}

.metric-row {
  grid-template-columns: 1fr 40px minmax(90px, 180px);
  gap: 12px;
  padding: 12px;
}

.metric-row strong {
  color: var(--gold);
  text-align: right;
}

.status-pill.is-green {
  color: #bff2d6;
  background: #23a7691f;
  border-color: #23a76966;
}

.queue-stage {
  gap: 16px;
  display: grid;
}

.queue-stage-card {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d84b322e, transparent 58%),
        var(--panel-soft);
  border: 1px solid #d84b325c;
  gap: 14px;
  padding: 18px;
  display: grid;
}

.queue-stage-card strong {
  font-size: 2.7rem;
  line-height: 1;
}

.slot-grid {
  grid-template-columns: repeat(5, minmax(84px, 1fr));
}

.slot-card, .team-card, .mission-card, .info-tile, .signal-card {
  padding: 14px;
}

.slot-card {
  min-height: 92px;
}

.slot-card strong, .team-card strong, .mission-card strong, .info-tile strong, .signal-card strong {
  margin: 6px 0;
  display: block;
}

.slot-card.is-filled {
  background: #23a7691f;
  border-color: #23a76966;
}

.slot-card.is-needed {
  background: #d8a93a1a;
  border-color: #d8a93a6b;
}

.condition-item, .timeline-row, .leader-row {
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  display: grid;
}

.condition-item b, .timeline-row b, .leader-row b {
  color: #13140f;
  background: var(--gold);
  border-radius: var(--radius);
  place-items: center;
  width: 30px;
  height: 30px;
  display: grid;
}

.condition-item.is-done b {
  background: var(--green);
}

.condition-item.is-locked {
  opacity: .58;
}

.signal-grid, .split-list, .team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-card strong {
  color: var(--gold);
  font-size: 1.6rem;
}

.leader-row {
  grid-template-columns: 44px 1fr 86px;
}

.leader-row strong {
  color: var(--text);
  font-size: 1rem;
}

.timeline-row {
  grid-template-columns: 82px 1fr auto;
}

.timeline-row b {
  width: auto;
  padding: 0 8px;
}

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

/* [project]/frontend/web/src/app/styles/components/form.css [app-client] (css) */
.auth-form {
  gap: 12px;
  display: grid;
}

.auth-form label {
  gap: 7px;
  display: grid;
}

.auth-form label span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
}

.auth-form input, .auth-form select {
  width: 100%;
  min-height: 44px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff0e;
  padding: 0 12px;
}

.password-input-wrap {
  position: relative;
}

.password-input-wrap input {
  padding-right: 96px;
}

.password-toggle {
  min-height: 30px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff0d;
  padding: 0 10px;
  font-size: .76rem;
  font-weight: 800;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.password-checklist {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff08;
  gap: 4px;
  padding: 10px 12px;
  display: grid;
}

.password-checklist p {
  color: var(--muted);
  font-size: .8rem;
}

.password-checklist p.is-ok {
  color: var(--green);
}

.auth-consent {
  align-items: flex-start;
  gap: 10px;
  display: flex;
}

.auth-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.auth-consent span {
  font-size: .84rem;
  line-height: 1.4;
}

.auth-form select option {
  color: #11130f;
}

/* [project]/frontend/web/src/app/styles/pages/auth.css [app-client] (css) */
.app-shell:has(.auth-page) {
  display: block;
}

.app-shell:has(.auth-page) .sidebar {
  display: none;
}

.app-shell:has(.auth-page) .workspace {
  min-height: 100vh;
  padding: 0;
}

.auth-page {
  isolation: isolate;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(#34120de6 0%, #0c0d0cfa 42%, #050707 100%), #050707;
  position: relative;
  overflow: hidden;
}

.auth-page:before {
  content: "";
  z-index: -1;
  opacity: .28;
  background: radial-gradient(circle at 12% 12%, #d84b323d, #0000 28rem), radial-gradient(circle at 86% 18%, #23a7691f, #0000 24rem);
  position: absolute;
  inset: 0;
}

.auth-page-header, .auth-page-main {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
}

.auth-page-header {
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 10px 0;
  display: flex;
}

.auth-page-logo {
  width: 132px;
  display: block;
}

.auth-page-logo img {
  filter: invert() brightness(1.15);
  width: 100%;
  height: auto;
}

.auth-page-nav-link {
  min-height: 40px;
  color: var(--text);
  text-transform: uppercase;
  background: #ffffff0a;
  border: 1px solid #f1eedc2e;
  align-items: center;
  padding: 0 16px;
  font-size: .84rem;
  font-weight: 900;
  display: inline-flex;
}

.auth-page-main {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  align-items: center;
  gap: 44px;
  min-height: calc(100vh - 104px);
  padding: 32px 0 54px;
  display: grid;
}

.auth-page-copy {
  gap: 20px;
  max-width: 690px;
  display: grid;
}

.auth-page-kicker, .auth-card-head span {
  color: #d84b32;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 950;
}

.auth-page-copy h1 {
  max-width: 760px;
  color: var(--text);
  letter-spacing: -.075em;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: .88;
}

.auth-page-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.auth-page-points {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  display: flex;
}

.auth-page-points span {
  color: #cdd2cb;
  background: #ffffff0a;
  border: 1px solid #f1eedc1c;
  padding: 10px 12px;
  font-size: .78rem;
  font-weight: 850;
}

.auth-card {
  background: linear-gradient(#ffffff0b, #0000 22%), #090a09e6;
  border: 1px solid #f1eedc24;
  border-radius: 28px;
  gap: 18px;
  padding: 28px;
  display: grid;
  box-shadow: inset 0 1px #ffffff0f, 0 26px 90px #00000061;
}

.auth-card-head {
  gap: 8px;
  display: grid;
}

.auth-card-head h2 {
  color: var(--text);
  letter-spacing: -.05em;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.auth-card-head p, .auth-switch {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.auth-status {
  background: #d84b321a;
  border: 1px solid #d84b3257;
  gap: 5px;
  padding: 13px 14px;
  display: grid;
}

.auth-status strong {
  color: var(--text);
  font-size: .9rem;
}

.auth-status p {
  font-size: .84rem;
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
}

.auth-switch {
  text-align: center;
  padding-top: 4px;
}

.auth-switch a {
  color: #d84b32;
  font-weight: 900;
}

.steam-link-card, .auth-note, .auth-result {
  gap: 12px;
  display: grid;
}

.steam-link-card {
  border-radius: var(--radius);
  background: #d8a93a14;
  border: 1px solid #d8a93a57;
  grid-template-columns: 52px 1fr;
  align-items: center;
  margin-bottom: 14px;
  padding: 14px;
}

.steam-mark, .result-mark {
  color: #11130f;
  background: var(--gold);
  border-radius: var(--radius);
  place-items: center;
  width: 48px;
  height: 48px;
  font-weight: 900;
  display: grid;
}

.result-mark {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}

.result-mark.is-good {
  background: var(--green);
}

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

.auth-wide-button {
  width: 100%;
  margin-bottom: 12px;
}

@media (max-width: 980px) {
  .auth-page-main {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .auth-page-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .auth-page-header, .auth-page-main {
    width: min(100%, 100% - 24px);
  }

  .auth-page-header {
    min-height: 72px;
  }

  .auth-page-logo {
    width: 112px;
  }

  .auth-page-copy h1 {
    font-size: clamp(2.45rem, 15vw, 4.2rem);
  }

  .auth-card {
    border-radius: 22px;
    padding: 20px;
  }
}

/* [project]/frontend/web/src/app/styles/base/06-hero-lab.css [app-client] (css) */
.hero-lab-panel {
  overflow: hidden;
}

.hero-lab-control-panel {
  z-index: 30;
  position: relative;
  overflow: visible;
}

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

.hero-lab-field {
  gap: 7px;
  min-width: 0;
  display: grid;
}

.hero-lab-field span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 800;
}

.hero-lab-field select, .hero-lab-field input {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  color: var(--text);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080a0ae6;
  padding: 0 12px;
  font-weight: 800;
}

.hero-lab-field input {
  outline: 0;
}

.hero-lab-field option {
  color: #f4f0df;
  background: #12140f;
}

.hero-lab-combobox {
  z-index: 2;
  position: relative;
}

.hero-lab-combobox:focus-within {
  z-index: 60;
}

.hero-lab-options {
  z-index: 80;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #070909fa;
  gap: 4px;
  max-height: 320px;
  padding: 6px;
  display: grid;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  overflow: auto;
  box-shadow: 0 18px 42px #00000075;
}

.hero-lab-options button, .hero-lab-options-empty {
  width: 100%;
  min-width: 0;
  color: var(--text);
  text-align: left;
  background: none;
  border: 1px solid #0000;
  border-radius: 4px;
  padding: 10px;
}

.hero-lab-options button {
  cursor: pointer;
  gap: 3px;
  display: grid;
}

.hero-lab-options button:hover, .hero-lab-options button.is-selected {
  background: #23a7691f;
  border-color: #23a76961;
}

.hero-lab-options button strong {
  overflow-wrap: anywhere;
}

.hero-lab-options button small, .hero-lab-options-empty {
  color: var(--muted);
  font-size: .78rem;
}

.hero-lab-table, .hero-lab-factor-list, .hero-lab-chip-list {
  gap: 8px;
  display: grid;
}

.hero-lab-rank-row, .hero-lab-factor-row, .hero-lab-matchup-row, .hero-lab-chip, .hero-lab-capability-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.hero-lab-rank-row {
  grid-template-columns: 34px minmax(120px, 1fr) minmax(86px, .42fr) 70px minmax(120px, .7fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 11px 12px;
  display: grid;
}

.hero-lab-rank-row b {
  color: #f4f0df;
  background: #23a769b8;
  border-radius: 2px;
  place-items: center;
  width: 24px;
  height: 24px;
  display: grid;
}

.hero-lab-rank-row span, .hero-lab-rank-row em, .hero-lab-factor-row span, .hero-lab-chip span, .hero-lab-mini-stats span, .hero-lab-capability-row span {
  overflow-wrap: anywhere;
  min-width: 0;
}

.hero-lab-rank-row span {
  font-weight: 900;
}

.hero-lab-rank-row em {
  color: var(--muted);
  font-style: normal;
}

.hero-lab-rank-row strong {
  color: var(--green);
  text-align: right;
}

.hero-lab-rank-row.is-negative strong, .hero-lab-capability-row.is-negative strong, .hero-lab-chip.is-negative em, .hero-lab-mini-stats strong.is-negative {
  color: var(--danger);
}

.hero-lab-rank-row.is-warning strong, .hero-lab-capability-row.is-warning strong, .hero-lab-chip.is-warning em, .hero-lab-mini-stats strong.is-warning {
  color: #f06b55;
}

.hero-lab-rank-row.is-neutral strong, .hero-lab-capability-row.is-neutral strong, .hero-lab-chip.is-neutral em, .hero-lab-mini-stats strong.is-neutral {
  color: var(--muted);
}

.hero-lab-rank-row.is-positive-soft strong, .hero-lab-capability-row.is-positive-soft strong, .hero-lab-chip.is-positive-soft em, .hero-lab-mini-stats strong.is-positive-soft {
  color: #7edaa6;
}

.hero-lab-hero-card {
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  display: grid;
}

.hero-lab-avatar {
  color: #15110d;
  background: linear-gradient(135deg, #23a769eb, #d84949b8);
  border-radius: 2px;
  place-items: center;
  width: 58px;
  height: 58px;
  font-size: 1.1rem;
  font-weight: 950;
  display: grid;
  box-shadow: 0 14px 34px #23a76924;
}

.hero-lab-mini-stats {
  gap: 8px;
  display: grid;
}

.hero-lab-mini-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
  display: flex;
}

.hero-lab-mini-stats strong, .hero-lab-chip strong {
  color: var(--text);
}

.hero-lab-matchup-score {
  border-radius: var(--radius);
  background: #23a76912;
  border: 1px solid #23a76942;
  gap: 4px;
  margin-bottom: 14px;
  padding: 14px;
  display: grid;
}

.hero-lab-matchup-score strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.hero-lab-matchup-score span {
  color: var(--muted);
  font-weight: 800;
}

.hero-lab-factor-row {
  grid-template-columns: minmax(0, 1fr) 70px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  display: grid;
}

.hero-lab-factor-row strong {
  text-align: right;
}

.hero-lab-factor-row .is-positive {
  color: var(--green);
}

.hero-lab-factor-row .is-negative {
  color: var(--danger);
}

.hero-lab-matchup-landscape {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 12px;
  display: grid;
}

.hero-lab-matchup-landscape section {
  align-content: start;
  gap: 8px;
  min-width: 0;
  display: grid;
}

.hero-lab-matchup-landscape h3 {
  color: var(--text);
  text-transform: uppercase;
  margin: 0 0 4px;
  font-size: .9rem;
}

.hero-lab-matchup-row {
  grid-template-columns: 28px minmax(0, 1fr) 82px 64px;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  display: grid;
}

.hero-lab-matchup-row b {
  width: 22px;
  height: 22px;
  color: var(--text);
  background: #ffffff14;
  border-radius: 2px;
  place-items: center;
  display: grid;
}

.hero-lab-matchup-row span, .hero-lab-matchup-row em {
  overflow-wrap: anywhere;
  min-width: 0;
}

.hero-lab-matchup-row span {
  font-weight: 900;
}

.hero-lab-matchup-row em {
  color: var(--muted);
  font-style: normal;
}

.hero-lab-matchup-row strong {
  text-align: right;
}

.hero-lab-matchup-row.is-positive strong, .hero-lab-matchup-row.is-positive-soft strong {
  color: var(--green);
}

.hero-lab-matchup-row.is-negative strong, .hero-lab-matchup-row.is-warning strong {
  color: var(--danger);
}

.hero-lab-matchup-row.is-neutral strong {
  color: var(--muted);
}

.hero-lab-chip {
  gap: 5px;
  padding: 11px 12px;
  display: grid;
}

.hero-lab-chip span, .hero-lab-chip em {
  color: var(--muted);
  font-size: .78rem;
  font-style: normal;
}

.hero-lab-capability-grid {
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 12px;
  display: grid;
}

.hero-lab-capability-group {
  gap: 8px;
  min-width: 0;
  padding: 12px;
  display: grid;
}

.hero-lab-capability-group h3 {
  color: #7edaa6;
  text-transform: uppercase;
  margin: 0 0 4px;
  font-size: .86rem;
}

.hero-lab-capability-row {
  grid-template-columns: minmax(0, 1fr) 54px;
  align-items: center;
  gap: 8px;
  display: grid;
}

.hero-lab-capability-row strong {
  color: var(--green);
  text-align: right;
}

.hero-lab-capability-row .bar {
  grid-column: span 2;
}

.hero-lab-panel .bar span {
  background: linear-gradient(90deg, var(--danger), #f06b55 44%, var(--green) 100%);
}

.hero-lab-panel .status-pill.is-positive, .hero-lab-panel .status-pill.is-positive-soft {
  color: #bff2d6;
  background: #23a7691f;
  border-color: #23a76966;
}

.hero-lab-panel .status-pill.is-negative, .hero-lab-panel .status-pill.is-warning {
  color: #ffd2ca;
  background: #d849491f;
  border-color: #d849496b;
}

/* [project]/frontend/web/src/app/styles/pages/guest-home.css [app-client] (css) */
.app-shell:has(.guest-home) {
  display: block;
}

.app-shell:has(.guest-home) .sidebar {
  display: none;
}

.app-shell:has(.guest-home) .workspace {
  min-height: 100vh;
  padding: 0;
}

.guest-home {
  isolation: isolate;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(#34120ddb 0%, #120d0bf5 38%, #070807 100%), #070807;
  position: relative;
  overflow: hidden;
}

.guest-home:before {
  content: "";
  z-index: -2;
  opacity: .34;
  background: linear-gradient(#d84b321f, #0000 32%, #00000047);
  position: absolute;
  inset: 0;
}

.guest-home:after {
  content: none;
}

.guest-home-orb {
  display: none;
}

.guest-home-orb-one {
  background: #d84b3285;
  top: 150px;
  left: -130px;
}

.guest-home-orb-two {
  background: #23a76942;
  bottom: 130px;
  right: -120px;
}

.guest-home-header, .guest-home-main, .guest-home-footer {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
}

.guest-home-header {
  z-index: 10;
  background: #090a09eb;
  border: 1px solid #f1eedc1f;
  border-radius: 24px 24px 0 0;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  margin-top: 18px;
  padding: 2px 20px;
  display: flex;
  position: relative;
  top: 0;
  box-shadow: 0 18px 70px #00000047;
}

.guest-home-logo, .guest-home-auth, .guest-home-footer-logo, .guest-home-footer span {
  font-size: .88rem;
  font-weight: 900;
}

.guest-home-logo {
  color: var(--text);
  align-self: stretch;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.guest-home-logo-image {
  object-fit: contain;
  filter: invert() brightness(1.15);
  width: auto;
  height: 78px;
  max-height: 78px;
  display: block;
}

.guest-home-auth {
  min-height: 42px;
  color: var(--text);
  text-align: center;
  background: #ffffff09;
  border: 1px solid #f1eedc2e;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  display: inline-flex;
}

.guest-home-auth.is-primary {
  color: var(--text);
  background: #d84b323d;
  border-color: #d84b32b8;
}

.guest-home-auth-actions {
  gap: 10px;
  margin-left: auto;
  display: flex;
}

.guest-home-main {
  gap: 28px;
  padding: 22px 0 36px;
  display: grid;
}

.guest-home-hero {
  background: linear-gradient(135deg, #d84b3212, #0000 40%), #0a0c0adb;
  border: 1px solid #f1eedc1f;
  border-radius: 0 0 34px 34px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
  align-items: stretch;
  gap: 34px;
  min-height: 560px;
  padding: 44px;
  display: grid;
  position: relative;
  box-shadow: 0 28px 90px #00000057;
}

.guest-home-hero:before {
  content: "";
  pointer-events: none;
  border: 1px solid #f1eedc14;
  border-radius: 24px;
  position: absolute;
  inset: 18px;
}

.guest-home-intro {
  z-index: 1;
  align-content: center;
  gap: 18px;
  max-width: 690px;
  display: grid;
  position: relative;
}

.guest-home-kicker {
  color: #d84b32;
  letter-spacing: .16em;
  text-transform: uppercase;
  width: fit-content;
  font-size: .78rem;
  font-weight: 950;
}

.guest-home-intro h1 {
  max-width: 720px;
  color: var(--text);
  letter-spacing: -.075em;
  text-transform: uppercase;
  font-size: clamp(2.65rem, 6.4vw, 5.25rem);
  line-height: .88;
}

.guest-home-intro p, .guest-home-calibration p, .guest-home-feature-card p, .guest-home-rating-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.guest-home-intro p {
  max-width: 620px;
}

.guest-home-cta-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  display: flex;
}

.guest-home-cta {
  width: fit-content;
  box-shadow: 0 16px 34px #d84b322e;
}

.guest-home-ghost-link {
  color: #d84b32;
  font-size: .9rem;
  font-weight: 900;
}

.guest-home-rating-card {
  z-index: 1;
  background: radial-gradient(circle at 50% 0, #23a7691a, #0000 16rem), linear-gradient(#070807eb, #151711e0);
  border: 1px solid #f1eedc29;
  border-radius: 26px;
  align-content: start;
  gap: 14px;
  min-height: 430px;
  padding: 22px;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px #ffffff14, 0 24px 70px #00000052;
}

.guest-home-rating-card:after {
  content: "";
  background: #d84b322e;
  border-radius: 999px;
  width: 230px;
  height: 230px;
  position: absolute;
  bottom: -90px;
  right: -70px;
}

.guest-home-rating-top, .guest-home-hero-line {
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  display: flex;
}

.guest-home-rating-top span, .guest-home-hero-line span, .guest-home-signal span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
}

.guest-home-rating-top strong {
  color: var(--green);
  letter-spacing: -.06em;
  text-shadow: 0 0 24px #23a76933;
  font-size: 2.4rem;
  line-height: 1;
}

.guest-home-hero-line b {
  color: var(--text);
  font-size: 1rem;
}

.guest-home-score-ring {
  background: radial-gradient(circle, #11130f 52%, transparent 53%),
        conic-gradient(from -60deg,
            var(--green) 0 79%,
            #ffffff14 79% 100%);
  border-radius: 999px;
  justify-self: center;
  place-items: center;
  width: 164px;
  height: 164px;
  margin: 10px 0;
  display: grid;
}

.guest-home-score-ring span {
  color: var(--text);
  letter-spacing: -.08em;
  font-size: 3.8rem;
  font-weight: 950;
  line-height: .8;
}

.guest-home-score-ring small {
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: -46px;
  font-size: .72rem;
  font-weight: 900;
}

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

.guest-home-signal {
  text-align: center;
  background: #ffffff0a;
  border: 1px solid #f1eedc1a;
  border-radius: 14px;
  gap: 8px;
  padding: 12px 10px;
  display: grid;
}

.guest-home-signal strong {
  color: var(--text);
  font-size: 1.24rem;
}

.guest-home-signal.is-impact strong {
  color: var(--green);
}

.guest-home-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.guest-home-stat {
  background: #ffffff0b;
  border: 1px solid #f1eedc1f;
  border-radius: 22px;
  gap: 10px;
  padding: 18px;
  display: grid;
}

.guest-home-stat span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}

.guest-home-stat strong {
  color: #d84b32;
  font-size: 1.9rem;
  line-height: 1;
}

.guest-home-calibration {
  background: linear-gradient(135deg, #d84b321a, #0000 38%), #ffffff09;
  border: 1px solid #f1eedc1f;
  border-radius: 28px;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 26px;
  padding: 34px;
  display: grid;
}

.guest-home-calibration h2, .guest-home-feature-card h2 {
  color: var(--text);
  letter-spacing: -.045em;
  margin-top: 8px;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.02;
}

.guest-home-steps {
  counter-reset: steps;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.guest-home-steps li {
  background: #0708076b;
  border: 1px solid #f1eedc1a;
  border-radius: 18px;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 12px 14px;
  display: grid;
}

.guest-home-steps span {
  color: var(--green);
  letter-spacing: .12em;
  font-size: .84rem;
  font-weight: 950;
}

.guest-home-steps strong {
  color: var(--text);
  font-size: .96rem;
}

.guest-home-features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.guest-home-feature-card {
  background: radial-gradient(circle at 10% 0, #23a76914, #0000 13rem), #ffffff0a;
  border: 1px solid #f1eedc1f;
  border-radius: 24px;
  gap: 12px;
  min-height: 230px;
  padding: 24px;
  display: grid;
}

.guest-home-feature-card span {
  color: #d84b32;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 950;
}

.guest-home-footer {
  min-height: 180px;
  color: var(--muted);
  background: linear-gradient(#ffffff06, #0000 54%), #090a09e6;
  border: 1px solid #f1eedc1f;
  border-radius: 24px;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  align-items: start;
  gap: 22px;
  margin-bottom: 22px;
  padding: 26px;
  display: grid;
  box-shadow: 0 18px 70px #0000003d;
}

.guest-home-footer-brand {
  align-content: start;
  gap: 12px;
  display: grid;
}

.guest-home-footer-logo {
  width: 112px;
  display: block;
}

.guest-home-footer-logo img {
  object-fit: contain;
  filter: invert() brightness(1.15);
  width: 100%;
  height: auto;
}

.guest-home-footer-brand span {
  max-width: 260px;
  color: var(--quiet);
  line-height: 1.55;
}

.guest-home-footer-nav {
  grid-column: 2;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  justify-self: center;
  gap: 26px;
  width: min(100%, 760px);
  display: grid;
}

.guest-home-footer-group {
  align-content: start;
  gap: 11px;
  display: grid;
}

.guest-home-footer-group h2 {
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 2px;
  font-size: .95rem;
  line-height: 1.2;
}

.guest-home-footer-group a {
  width: fit-content;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.25;
  transition: color .16s, transform .16s;
}

.guest-home-footer-group a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.guest-home-social {
  grid-column: 3;
  place-self: start end;
  gap: 10px;
  display: grid;
}

.guest-home-social-link {
  color: #d84b32;
  background: #ffffff0a;
  border: 1px solid #f1eedc29;
  border-radius: 999px;
  place-items: center;
  width: 38px;
  height: 38px;
  display: grid;
}

.guest-home-social-link svg {
  width: 18px;
  height: 18px;
}

.guest-home-footer-bottom {
  border-top: 1px solid #f1eedc1a;
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 6px;
  padding-top: 20px;
  display: flex;
}

.guest-home-footer-bottom span {
  color: var(--quiet);
  letter-spacing: .02em;
  font-size: .78rem;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .guest-home-hero, .guest-home-calibration {
    grid-template-columns: 1fr;
  }

  .guest-home-hero {
    min-height: auto;
    padding: 44px;
  }

  .guest-home-features {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .guest-home-rating-card {
    min-height: auto;
  }

  .guest-home-footer {
    grid-template-columns: 1fr;
  }

  .guest-home-footer-nav {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
  }

  .guest-home-social {
    grid-column: 1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .guest-home-header, .guest-home-main, .guest-home-footer {
    width: min(100%, 100% - 20px);
  }

  .guest-home-main {
    gap: 18px;
    min-height: auto;
    padding: 12px 0 24px;
  }

  .guest-home-header {
    border-radius: 18px 18px 0 0;
    min-height: 70px;
    margin-top: 10px;
    padding: 2px 14px;
  }

  .guest-home-hero, .guest-home-calibration {
    padding: 24px;
  }

  .guest-home-hero {
    border-radius: 0 0 22px 22px;
  }

  .guest-home-calibration {
    border-radius: 22px;
  }

  .guest-home-intro h1 {
    font-size: clamp(2.4rem, 15vw, 4.2rem);
  }

  .guest-home-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .guest-home-stats, .guest-home-features, .guest-home-signal-grid {
    grid-template-columns: 1fr;
  }

  .guest-home-score-ring {
    width: 160px;
    height: 160px;
  }

  .guest-home-footer {
    border-radius: 18px;
    min-height: 72px;
    margin-bottom: 12px;
    padding: 16px;
  }

  .guest-home-footer-nav {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .guest-home-social {
    grid-template-columns: repeat(2, 38px);
  }
}

/* [project]/frontend/web/src/app/styles/base/05-responsive.css [app-client] (css) */
@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    height: auto;
    position: static;
  }

  .nav-list {
    grid-template-columns: repeat(8, minmax(120px, 1fr));
    overflow-x: auto;
  }

  .sidebar-card {
    display: none;
  }

  .dashboard-grid, .page-grid, .page-grid.is-two-column {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .hero-lab-controls, .hero-lab-capability-grid, .hero-lab-matchup-landscape {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .hero-lab-rank-row {
    grid-template-columns: 34px minmax(120px, 1fr) 74px;
  }

  .hero-lab-rank-row em {
    display: none;
  }

  .hero-lab-rank-row .bar {
    grid-column: 2 / -1;
  }

  .map-panel, .analytics-panel, .span-2, .span-3 {
    grid-column: span 1;
  }

  .profile-hub-topline {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .profile-hub-metrics {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-avatar-button {
    place-self: start;
  }

  .profile-main-content, .profile-main-content.is-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .workspace, .sidebar {
    padding: 18px;
  }

  .topbar {
    display: grid;
  }

  .topbar-actions {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    display: grid;
  }

  .dashboard-grid, .page-grid, .page-grid.is-two-column, .split-list, .signal-grid, .hero-lab-controls, .hero-lab-capability-grid, .hero-lab-matchup-landscape, .team-grid, .season-missions {
    grid-template-columns: 1fr;
  }

  .profile-panel, .calendar-panel, .matches-panel {
    grid-row: auto;
  }

  .stat-strip, .match-lineup {
    grid-template-columns: 1fr;
  }

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

  .calendar {
    gap: 5px;
  }

  .day {
    min-height: 45px;
    padding: 6px;
  }

  .match-row {
    grid-template-columns: 48px 1fr;
  }

  .profile-timeline-grid {
    overflow-x: auto;
  }

  .profile-timeline-head, .profile-timeline-row {
    min-width: 520px;
  }

  .metric-row {
    grid-template-columns: 1fr 38px;
  }

  .metric-row .bar {
    grid-column: span 2;
  }

  .hero-lab-rank-row {
    grid-template-columns: 30px minmax(0, 1fr) 64px;
    gap: 9px;
  }

  .hero-lab-matchup-row {
    grid-template-columns: 28px minmax(0, 1fr) 62px;
  }

  .hero-lab-matchup-row em {
    display: none;
  }

  .condition-item, .timeline-row, .leader-row {
    grid-template-columns: 34px 1fr;
  }

  .condition-item .status-pill, .timeline-row .status-pill, .leader-row .status-pill {
    grid-column: span 2;
    justify-self: start;
  }

  .profile-hub {
    grid-column: span 1;
  }

  .profile-hub-topline, .profile-avatar-editor-shell {
    grid-template-columns: 1fr;
  }

  .profile-avatar-editor-preview {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .profile-hub-topline-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .profile-hub-topline-actions .primary-button, .profile-hub-topline-actions .ghost-button {
    width: 100%;
  }

  .profile-hub-metrics {
    grid-template-columns: 1fr;
  }

  .profile-primary-tabs {
    width: 100%;
  }

  .profile-primary-tabs button {
    flex: calc(50% - 8px);
  }

  .profile-history-row, .profile-day-match-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .profile-summary-grid, .profile-friends-grid, .profile-clips-grid, .profile-friends-form {
    grid-template-columns: 1fr;
  }

  .profile-sync-box {
    align-items: stretch;
  }

  .profile-sync-box .ghost-button {
    width: 100%;
  }

  .profile-rank-head {
    grid-template-columns: 1fr;
  }

  .profile-rank-mark {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 460px) {
  .topbar-actions {
    grid-template-columns: 1fr;
  }

  .profile-head {
    align-items: flex-start;
  }

  .avatar {
    width: 54px;
    height: 54px;
  }

  .calendar {
    grid-template-columns: repeat(7, minmax(28px, 1fr));
  }

  .day small {
    font-size: .62rem;
  }
}

/* [project]/frontend/web/src/app/styles/globals-base.css [app-client] (css) */


/* [project]/frontend/web/src/app/styles/skin/01-vars-foundation.css [app-client] (css) */
:root {
  --bg: #050707;
  --panel: #0c0f0feb;
  --panel-strong: #141818f5;
  --panel-soft: #101414d6;
  --line: #969d9a24;
  --line-strong: #c0c5be3d;
  --text: #f0f2ee;
  --muted: #9ca19b;
  --quiet: #626966;
  --accent: #d94135;
  --accent-strong: #ff4d43;
  --green: #58db24;
  --green-soft: #58db2421;
  --gold: #d7a74a;
  --danger: #ff3f34;
  --steel: #8fa2c7;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
  --font-display: "Trebuchet MS", "Segoe UI", sans-serif;
  --shadow: 0 22px 80px #0000008f;
  --radius: 3px;
}

html {
  background: #050707;
}

body {
  color: var(--text);
  background: linear-gradient(#ff372612, #0000 260px), repeating-linear-gradient(115deg, #ffffff05 0 1px, #0000 1px 9px), radial-gradient(at 50% 0, #50120c5c, #0000 58%), linear-gradient(#080a0a 0%, #040505 52%, #020303 100%);
}

body:before {
  opacity: .5;
  background-image: linear-gradient(#ffffff06 1px, #0000 1px), linear-gradient(90deg, #ffffff06 1px, #0000 1px);
  background-size: 88px 88px;
  -webkit-mask-image: linear-gradient(#000 0%, #0000 78%);
  mask-image: linear-gradient(#000 0%, #0000 78%);
}

body:after {
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: .32;
  mix-blend-mode: screen;
  background: repeating-radial-gradient(circle at 50% 20%, #ffffff0e 0 1px, #0000 1px 5px), linear-gradient(90deg, #000000b3, #0000 22% 78%, #000000b8);
  position: fixed;
  inset: 0;
}

h1 {
  text-transform: uppercase;
  font-size: 3.35rem;
  line-height: .95;
}

h2 {
  text-transform: uppercase;
  font-size: 1.08rem;
}

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

.app-shell {
  grid-template-columns: 258px minmax(0, 1fr);
}

.sidebar {
  background: linear-gradient(#141818f5, #050707f0), repeating-linear-gradient(135deg, #ffffff05 0 1px, #0000 1px 7px);
  border-right: 1px solid #ffffff17;
  gap: 24px;
  padding: 22px 18px;
  box-shadow: inset -1px 0 #ffffff0a, 18px 0 60px #00000047;
}

.workspace {
  padding: 26px;
}

.topbar {
  border-bottom: 1px solid #ffffff14;
  align-items: center;
  min-height: 76px;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.topbar h1 {
  letter-spacing: 0;
  font-size: 2.05rem;
}

.brand {
  border-bottom: 1px solid #ffffff14;
  padding-bottom: 18px;
}

.brand-mark {
  color: #f5d88b;
  background: linear-gradient(135deg, #ffffff29, #0000 42%), linear-gradient(145deg, #42100d, #0b0d0d 62%);
  border: 1px solid #d7a74a75;
  border-radius: 2px;
  width: 48px;
  height: 48px;
  box-shadow: inset 0 0 18px #000000c2, 0 0 22px #d941352e;
}

.brand strong {
  color: #fff;
  font-size: 1.16rem;
}

.brand small {
  color: var(--quiet);
  text-transform: uppercase;
}

.nav-list {
  gap: 4px;
}

.nav-item {
  color: #b6bbb4;
  text-transform: uppercase;
  background: linear-gradient(#ffffff09, #00000026), #0b0e0eb8;
  border-color: #ffffff0a;
  border-radius: 2px;
  min-height: 44px;
  padding: 12px 13px;
  font-size: .82rem;
  font-weight: 800;
}

.nav-item:hover, .nav-item[data-active="true"] {
  color: #fff;
  box-shadow: inset 3px 0 0 var(--accent-strong);
  background: linear-gradient(90deg, #d941353d, #d9413508), #0c0f0ff0;
  border-color: #ff4d4361;
}

.panel, .sidebar-card, .profile-summary, .profile-calendar-box, .profile-rank-box, .profile-best-box, .profile-history-alone, .profile-activity-box, .profile-trophies-box, .profile-conduct-box, .profile-international-panel {
  box-shadow: inset 0 1px 0 #ffffff0d,
    inset 0 -1px 0 #000000c2,
    var(--shadow);
  background: linear-gradient(#ffffff09, #0000 18%), repeating-linear-gradient(135deg, #ffffff04 0 1px, #0000 1px 6px), #080b0be6;
  border: 1px solid #a6aca621;
  border-radius: 3px;
  position: relative;
}

.panel:before, .sidebar-card:before, .profile-summary:before, .profile-calendar-box:before, .profile-history-alone:before, .profile-activity-box:before, .profile-trophies-box:before, .profile-conduct-box:before, .profile-international-panel:before {
  pointer-events: none;
  content: "";
  border-radius: inherit;
  opacity: .62;
  background: linear-gradient(135deg, #ff4d4329, #0000 15%), linear-gradient(315deg, #d7a74a1f, #0000 18%);
  position: absolute;
  inset: 0;
}

.profile-hub-main.panel {
  box-shadow: none;
  background: none;
  border: 0;
  gap: 14px;
  padding: 0;
}

.profile-hub-main.panel:before {
  display: none;
}

.eyebrow, .panel-title strong, .queue-time {
  color: #b5b9b3;
  letter-spacing: .04em;
  font-size: .76rem;
}

.primary-button, .ghost-button, .sidebar-action-button, .text-link {
  transition: border-color .16s, filter .16s, color .16s, background-color .16s;
}

.primary-button, .ghost-button {
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 2px;
  min-height: 39px;
}

.primary-button {
  color: #fff;
  background: linear-gradient(#ff65596b, #87191494), #32110f;
  border: 1px solid #ff4d4394;
  box-shadow: inset 0 1px #ffffff21, 0 0 20px #d941352e;
}

.ghost-button {
  color: #d7dad5;
  background: linear-gradient(#ffffff0d, #0000002e), #0a0d0dd1;
  border: 1px solid #b4bcb52e;
}

.primary-button:hover, .ghost-button:hover {
  filter: brightness(1.12);
}

.text-link {
  color: #ff594e;
}

/* [project]/frontend/web/src/app/styles/skin/02-profile-theme.css [app-client] (css) */
.page-grid, .dashboard-grid {
  gap: 14px;
}

.page-intro {
  min-height: 118px;
  padding: 20px 22px;
}

.profile-dota-hero {
  background: linear-gradient(90deg, #000000eb, #040606b8 34%, #2c0b085c 68%, #000000db), repeating-linear-gradient(155deg, #ff4d430d 0 1px, #0000 1px 12px), #050606;
  border: 1px solid #9ba09a1f;
  border-radius: 3px;
  grid-template-columns: 240px minmax(300px, 1fr) minmax(390px, .96fr);
  align-items: center;
  gap: 24px;
  min-height: 284px;
  padding: 26px 26px 20px;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px #ffffff0f, 0 24px 90px #00000080;
}

.profile-dota-hero:after {
  pointer-events: none;
  content: "";
  background: linear-gradient(0deg, #d9413529, #0000);
  height: 88px;
  position: absolute;
  inset: auto 0 0;
}

.profile-dota-avatar {
  color: #f2d88b;
  background: linear-gradient(135deg, #ffffff14, #0000 40%), linear-gradient(145deg, #202423, #050606);
  border: 1px solid #b2b2a63d;
  border-radius: 2px;
  align-self: stretch;
  width: 236px;
  height: 236px;
  font-size: 3.2rem;
  position: relative;
  overflow: visible;
  box-shadow: inset 0 0 0 5px #000000b8, inset 0 0 42px #000000db, 0 14px 44px #00000094;
}

.profile-dota-avatar:before, .profile-dota-avatar:after {
  pointer-events: none;
  content: "";
  border: 1px solid #d7a74a38;
  position: absolute;
}

.profile-dota-avatar:before {
  inset: 8px;
}

.profile-dota-avatar:after {
  border-color: #ff4d4329;
  inset: 16px;
}

.profile-dota-avatar img, .profile-dota-avatar > span:not(.profile-avatar-level) {
  grid-area: 1 / 1;
}

.profile-dota-avatar img {
  object-fit: cover;
  filter: contrast(1.08) saturate(.9);
  border-radius: 1px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.profile-avatar-level {
  z-index: 2;
  color: #f7d17b;
  background: radial-gradient(circle, #d7a74a2e, #0000 58%), linear-gradient(145deg, #24150e, #070707);
  border: 1px solid #d7a74a9e;
  border-radius: 50%;
  place-items: center;
  width: 62px;
  height: 62px;
  font-size: 1.25rem;
  font-weight: 900;
  display: grid;
  position: absolute;
  bottom: -18px;
  left: 18px;
  box-shadow: 0 0 0 4px #000000bd, 0 0 24px #d7a74a33;
}

.profile-dota-identity {
  z-index: 1;
  grid-template-columns: auto auto auto 1fr;
  align-content: center;
  gap: 10px 12px;
  min-width: 0;
  display: grid;
  position: relative;
}

.profile-dota-identity h2 {
  color: #fff;
  text-transform: none;
  grid-column: 1;
  font-size: 2.05rem;
  line-height: 1.05;
}

.profile-dota-edit, .profile-dota-shield {
  color: #b8beb8;
  background: #ffffff0a;
  border: 1px solid #ffffff2e;
  border-radius: 2px;
  place-items: center;
  width: 30px;
  height: 30px;
  font-weight: 900;
  display: grid;
}

.profile-dota-shield {
  color: #e89dff;
  border-color: #c956ff6b;
}

.profile-dota-identity p {
  color: var(--green);
  grid-column: 1 / -1;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
}

.profile-dota-id {
  color: #888f8a !important;
  font-weight: 700 !important;
}

.profile-status-dot {
  background: #777;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  box-shadow: 0 0 14px #ffffff24;
}

.profile-status-dot.is-online {
  background: var(--green);
  box-shadow: 0 0 14px #58db2499;
}

.profile-dota-identity .profile-hub-topline-actions {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.profile-dota-rank {
  z-index: 1;
  grid-template-columns: minmax(0, 1fr);
  justify-self: stretch;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  display: grid;
  position: relative;
}

.rank-emblem {
  color: #fff;
  filter: drop-shadow(0 0 24px #456bff42);
  background: radial-gradient(circle, #8c48ff 0 14%, #242b4e 15% 24%, #0000 25%), conic-gradient(#335dff, #e8eefc, #d7a74a, #62320b, #335dff);
  border-radius: 50%;
  place-items: center;
  width: 108px;
  height: 108px;
  font-size: 2.1rem;
  font-weight: 900;
  display: grid;
  position: relative;
}

.rank-emblem:before, .rank-emblem:after {
  content: "";
  clip-path: polygon(50% 0, 100% 100%, 50% 82%, 0 100%);
  background: linear-gradient(#f7e7a2, #a2601d);
  position: absolute;
}

.rank-emblem:before {
  width: 38px;
  height: 52px;
  top: -18px;
}

.rank-emblem:after {
  width: 30px;
  height: 48px;
  bottom: -20px;
  transform: rotate(180deg);
}

.rank-emblem span {
  background: radial-gradient(circle, #7d32ff, #111526 72%);
  border-radius: 50%;
  place-items: center;
  width: 48px;
  height: 48px;
  display: grid;
  box-shadow: inset 0 0 18px #ffffff38;
}

.profile-dota-rank-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  display: grid;
}

.profile-dota-rank-stats div {
  gap: 4px;
  display: grid;
}

.profile-dota-rank-stats span, .profile-dota-rank-stats small, .profile-dota-rank-name strong, .profile-dota-ribbon span {
  color: #9ea49d;
  font-size: .8rem;
  font-weight: 800;
}

.profile-dota-rank-stats strong {
  color: #fff;
  font-size: 1.22rem;
}

.profile-dota-rank-stats small {
  color: #aaa;
}

.profile-dota-rank-name {
  grid-column: 2;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.mini-rank {
  color: #f0f6ff;
  background: radial-gradient(circle, #7d32ff 0 30%, #0000 32%), conic-gradient(#8fa8ff, #f4f6ff, #2e5eff, #8fa8ff);
  border-radius: 50%;
  place-items: center;
  width: 34px;
  height: 34px;
  font-size: .82rem;
  font-weight: 900;
  display: grid;
  box-shadow: 0 0 16px #4e6fff38;
}

.mini-rank.is-green {
  background: radial-gradient(circle, #173b10 0 34%, #0000 36%), conic-gradient(#70ff40, #d7ffd1, #2c7c1b, #70ff40);
}

.mini-rank.is-red {
  background: radial-gradient(circle, #3b100c 0 34%, #0000 36%), conic-gradient(#ff4d43, #ffd5cd, #8d1d16, #ff4d43);
}

.profile-dota-ribbon {
  background: linear-gradient(#ffffff0a, #00000057), #070a0aeb;
  border: 1px solid #9ca39c21;
  border-radius: 3px;
  grid-template-columns: repeat(6, minmax(120px, 180px));
  justify-content: center;
  width: 100%;
  margin-inline: 0;
  display: grid;
  overflow: hidden;
}

.profile-dota-ribbon div {
  text-align: center;
  border-right: 1px solid #ffffff14;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 78px;
  padding: 12px 22px;
  display: grid;
}

.profile-dota-ribbon strong {
  color: #fff;
  font-size: 1.26rem;
}

.profile-rank-number-button {
  white-space: nowrap;
  font-size: clamp(1.45rem, 2vw, 2.4rem);
}

.profile-dota-ribbon strong.is-green {
  color: var(--green);
}

.profile-ribbon-rank {
  justify-content: center;
  align-items: center;
  gap: 12px !important;
  display: flex !important;
}

.profile-primary-tabs {
  background: #050707e0;
  border: 1px solid #a6aca624;
  border-radius: 3px;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 0;
  width: 100%;
  padding: 0;
  display: grid;
}

.profile-primary-tabs button, .profile-main-tabs button {
  color: #aaa;
  background: linear-gradient(#ffffff09, #00000047), #0a0d0ddb;
  border: 0;
  border-right: 1px solid #ffffff14;
  border-radius: 0;
  min-height: 54px;
  padding: 0 16px;
  font-size: .88rem;
}

.profile-primary-tabs button:last-child {
  border-right: 0;
}

.profile-primary-tabs button:hover:not(:disabled), .profile-main-tabs button:hover:not(:disabled), .profile-primary-tabs button.is-active, .profile-main-tabs button.is-active {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--accent-strong), inset 0 0 30px #d941351a;
  background: linear-gradient(#ff4d4333, #500d0a6b), #0c0e0ef2;
  border-color: #ffffff14;
}

.profile-primary-tabs button:disabled {
  opacity: .48;
}

.profile-main-content {
  grid-template-columns: minmax(210px, .72fr) minmax(430px, 1.25fr) minmax(260px, .8fr);
  align-items: stretch;
  gap: 14px;
}

.profile-left-stack, .profile-center-stack, .profile-right-stack {
  align-content: start;
  gap: 14px;
  display: grid;
}

.profile-center-stack {
  align-content: stretch;
}

.profile-summary, .profile-calendar-box, .profile-rank-box, .profile-best-box, .profile-history-alone, .profile-activity-box, .profile-trophies-box, .profile-conduct-box, .profile-international-panel {
  padding: 18px;
}

.profile-best-heroes-box {
  min-height: 242px;
}

.profile-hero-win-list {
  gap: 8px;
  display: grid;
}

.profile-hero-win-row {
  background: #ffffff06;
  border: 1px solid #ffffff12;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  display: grid;
}

.profile-hero-win-row span {
  color: var(--gold);
  font-weight: 900;
}

.profile-hero-win-row strong {
  color: #fff;
}

.profile-hero-win-row small {
  color: var(--quiet);
}

.profile-recent-panel {
  min-height: 520px;
}

.profile-match-list {
  gap: 0;
}

.profile-match-item {
  background: none;
  border: 0;
  border-bottom: 1px solid #ffffff0f;
  border-radius: 0;
  grid-template-columns: 118px minmax(72px, 1fr) 64px 58px minmax(168px, 1.35fr);
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 12px 14px;
}

.profile-match-item:hover {
  background: #ffffff09;
}

.profile-match-item b {
  color: var(--danger);
  font-size: .88rem;
}

.profile-match-outcome {
  text-align: center;
  justify-items: center;
}

.profile-match-item.is-win b {
  color: var(--green);
}

.profile-match-item span, .profile-match-item em, .profile-match-item small {
  color: #a4aaa3;
  font-size: .78rem;
  font-style: normal;
}

.profile-match-item strong {
  color: #d9ddd8;
  font-size: .82rem;
}

.profile-match-summary {
  text-align: center;
  justify-items: center;
}

.profile-international-panel {
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 146px;
  display: grid;
}

.dota-stone-mark {
  color: #202827;
  text-shadow: 0 1px #ffffff14;
  background: linear-gradient(145deg, #232928, #090b0b);
  border: 1px solid #ffffff14;
  place-items: center;
  width: 72px;
  height: 58px;
  font-size: 2.6rem;
  font-weight: 900;
  display: grid;
}

.profile-progress-line {
  background: #ffffff0f;
  height: 6px;
  margin-top: 16px;
  overflow: hidden;
}

.profile-progress-line span {
  background: linear-gradient(90deg, var(--accent), var(--gold));
  height: 100%;
  display: block;
}

.profile-activity-list {
  display: grid;
}

.profile-activity-list div {
  border-bottom: 1px solid #ffffff0f;
  grid-template-columns: 46px 1fr;
  gap: 10px 14px;
  padding: 15px 0;
  display: grid;
}

.profile-activity-list div:last-child {
  border-bottom: 0;
}

.profile-activity-list .mini-rank {
  grid-row: span 2;
  width: 42px;
  height: 42px;
}

.profile-activity-list p {
  color: #b8bdb7;
  font-size: .92rem;
}

.profile-activity-list p strong {
  color: #fff;
}

.profile-activity-list small {
  color: #7b837d;
  justify-self: end;
}

.profile-trophy-row {
  grid-template-columns: repeat(5, minmax(44px, 1fr));
  align-items: end;
  gap: 14px;
  display: grid;
}

.profile-trophy {
  color: #fff;
  place-items: center;
  min-height: 72px;
  display: grid;
  position: relative;
}

.profile-trophy b {
  color: #f7e0a0;
  clip-path: polygon(50% 0, 88% 14%, 100% 58%, 50% 100%, 0 58%, 12% 14%);
  background: radial-gradient(circle at 50% 22%, #ffffff52, #0000 18%), linear-gradient(145deg, #56211c, #100b0a);
  border: 1px solid #ffffff29;
  place-items: center;
  width: 48px;
  height: 58px;
  font-size: .9rem;
  display: grid;
}

.profile-trophy.is-2 b {
  background: linear-gradient(145deg, #f4e0a0, #3d310e);
}

.profile-trophy.is-3 b {
  background: linear-gradient(145deg, #1ee5b7, #0f4239);
}

.profile-trophy.is-4 b {
  background: linear-gradient(145deg, #7da8ff, #162342);
}

.profile-trophy.is-5 b {
  background: linear-gradient(145deg, #d58b35, #351608);
}

.profile-trophy small {
  color: #ddd;
  font-size: .76rem;
  position: absolute;
  bottom: 0;
}

.profile-conduct-box {
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 16px;
  display: grid;
}

.profile-conduct-content {
  grid-column: 2;
  gap: 4px;
  display: grid;
}

.profile-conduct-face {
  width: 64px;
  height: 64px;
  color: var(--green);
  background: #58db2414;
  border: 3px solid #58db247a;
  border-radius: 50%;
  place-items: center;
  font-size: 2.4rem;
  display: grid;
  box-shadow: 0 0 26px #58db242e;
}

.profile-conduct-box strong {
  color: #38b52b;
  font-size: 2.45rem;
  line-height: 1;
}

.profile-conduct-box p {
  color: #69716c;
  margin-top: 8px;
  font-size: .82rem;
}

.profile-sync-box {
  background: linear-gradient(90deg, #d7a74a14, #0000), #080a0ad1;
  border-style: solid;
  border-color: #d7a74a38;
}

.profile-calendar-box .calendar {
  grid-template-columns: repeat(7, minmax(32px, 1fr));
  gap: 5px;
}

.weekday {
  color: #6f7671;
  font-size: .68rem;
}

.day {
  background: linear-gradient(#ffffff0a, #00000038), #0f1212e0;
  border-color: #ffffff12;
  border-radius: 2px;
  min-height: 43px;
  padding: 6px;
}

.day b {
  color: #dde1dc;
  font-size: .88rem;
}

.day.is-today {
  border-color: #ff4d43e6;
  box-shadow: inset 0 0 0 1px #ff4d436b, 0 0 14px #ff4d4333;
}

.day.has-results {
  background: linear-gradient(135deg,
      #58db2438 0,
      #58db2438 var(--day-win-share),
      #ff3f3438 var(--day-win-share),
      #ff3f3438 100%),
    #0f1212e0;
}

.profile-year-runes {
  grid-template-columns: repeat(5, minmax(42px, 1fr));
  gap: 12px;
  margin-top: 18px;
  display: grid;
}

.profile-season-badge {
  color: #838b84;
  cursor: pointer;
  background: none;
  border: 0;
  justify-items: center;
  gap: 6px;
  padding: 0;
  display: grid;
}

.profile-season-badge:focus-visible {
  outline-offset: 3px;
  outline: 1px solid #c9f87fbf;
}

.profile-year-runes span {
  color: #838b84;
  justify-items: center;
  gap: 6px;
  display: grid;
}

.profile-year-runes b {
  color: #111;
  background: conic-gradient(#48da30, #cfffc4, #247d17, #48da30);
  border-radius: 50%;
  place-items: center;
  width: 44px;
  height: 44px;
  display: grid;
}

.profile-season-label {
  color: #d7dfd8;
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: .78rem;
}

.profile-year-runes .is-locked {
  opacity: .32;
}

.empty-state {
  background: #ffffff05;
  border-color: #ffffff0f;
  place-content: center;
  min-height: 122px;
}

/* [project]/frontend/web/src/app/styles/skin/03-shared-widgets.css [app-client] (css) */
.match-row, .mode-row, .party-row, .metric-row, .slot-card, .team-card, .mission-card, .info-tile, .signal-card, .condition-item, .timeline-row, .leader-row, .profile-friend-card, .profile-upload-card, .profile-clip-card {
  background: linear-gradient(#ffffff09, #0000002b), #0c0f0fcc;
  border-color: #ffffff14;
  border-radius: 2px;
}

.bar, .mini-progress {
  background: #ffffff0f;
}

.bar span, .mini-progress span {
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.profile-hub-topline {
  border-radius: 3px;
}

.profile-hub-topline-main h2 {
  font-size: 1.8rem;
}

.profile-avatar-button:not(.profile-dota-avatar) {
  border-radius: 2px;
}

/* [project]/frontend/web/src/app/styles/skin/04-responsive.css [app-client] (css) */
@media (max-width: 1120px) {
  .profile-dota-hero {
    grid-template-columns: 190px minmax(260px, 1fr);
  }

  .profile-dota-rank {
    grid-column: 2 / -1;
    justify-self: stretch;
    width: min(100%, 560px);
  }

  .profile-dota-ribbon {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    width: 100%;
  }

  .profile-ribbon-rank {
    grid-column: span 3;
  }

  .profile-main-content {
    grid-template-columns: minmax(260px, .9fr) minmax(360px, 1.1fr);
  }

  .profile-right-stack {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .profile-sync-box {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 1fr;
    width: 100%;
    overflow-x: hidden;
  }

  .sidebar {
    height: auto;
    position: static;
    overflow: hidden;
  }

  .nav-list {
    max-width: 100%;
    display: flex;
    overflow-x: auto;
  }

  .nav-item {
    flex: none;
    min-width: 132px;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: 2.2rem;
  }

  .workspace, .sidebar {
    padding: 16px;
  }

  .workspace {
    width: 100%;
    overflow-x: hidden;
  }

  .topbar {
    align-items: start;
    display: grid;
  }

  .profile-dota-hero, .profile-main-content, .profile-main-content.is-stats, .profile-right-stack {
    grid-template-columns: 1fr;
  }

  .profile-dota-hero {
    min-height: auto;
    padding: 18px;
  }

  .profile-dota-avatar {
    aspect-ratio: 1;
    width: min(100%, 240px);
    height: auto;
  }

  .profile-dota-rank {
    grid-column: auto;
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
  }

  .rank-emblem {
    width: 94px;
    height: 94px;
  }

  .profile-dota-rank-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .profile-dota-rank-name {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .profile-dota-ribbon, .profile-primary-tabs {
    grid-template-columns: 1fr;
  }

  .profile-dota-ribbon {
    width: 100%;
  }

  .profile-ribbon-rank {
    grid-column: auto;
  }

  .profile-primary-tabs button {
    border-bottom: 1px solid #ffffff14;
    border-right: 0;
  }

  .profile-match-item {
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
  }

  .profile-match-outcome, .profile-match-summary {
    grid-column: 1 / -1;
  }

  .profile-international-panel, .profile-conduct-box {
    grid-template-columns: 1fr;
  }

  .profile-conduct-content {
    grid-column: 1;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 1.82rem;
  }

  .topbar-actions {
    grid-template-columns: 1fr;
  }

  .profile-dota-identity {
    grid-template-columns: auto auto;
  }

  .profile-dota-identity p {
    overflow-wrap: anywhere;
    flex-wrap: wrap;
    line-height: 1.45;
  }

  .profile-dota-id {
    word-break: break-word;
    display: block !important;
  }

  .profile-dota-identity .profile-hub-topline-actions {
    grid-template-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .profile-dota-identity .profile-hub-topline-actions .primary-button, .profile-dota-identity .profile-hub-topline-actions .ghost-button {
    width: 100%;
  }

  .profile-dota-identity h2 {
    grid-column: 1 / -1;
    font-size: 1.7rem;
  }

  .profile-dota-edit, .profile-dota-shield {
    grid-row: 2;
  }

  .profile-dota-ribbon div {
    min-height: 64px;
    padding: 10px 14px;
  }

  .profile-trophy-row, .profile-year-runes {
    grid-template-columns: repeat(3, minmax(44px, 1fr));
  }
}

/* [project]/frontend/web/src/app/styles/globals-dota-skin.css [app-client] (css) */


/* [project]/frontend/web/src/app/styles/reference/01-pass-foundation.css [app-client] (css) */
body {
  background: radial-gradient(at 48% 0, #78160d33, #0000 34rem), radial-gradient(at 82% 22%, #46060438, #0000 24rem), repeating-linear-gradient(0deg, #ffffff03 0 1px, #0000 1px 4px), linear-gradient(#070908 0%, #030404 58%, #010202 100%);
}

body:after {
  opacity: .16;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 25% 16%, #ff502a24, #0000 18rem), radial-gradient(circle at 78% 10%, #ff3c221a, #0000 16rem), repeating-radial-gradient(circle at 50% 18%, #ffffff09 0 1px, #0000 1px 7px);
}

.panel, .sidebar-card, .profile-summary, .profile-calendar-box, .profile-rank-box, .profile-best-box, .profile-history-alone, .profile-activity-box, .profile-trophies-box, .profile-conduct-box, .profile-international-panel {
  background-color: #080b0b;
  background-image: linear-gradient(#ffffff08, #00000047), radial-gradient(circle at 15% 8%, #ffffff07, #0000 13rem), radial-gradient(circle at 82% 16%, #9122150e, #0000 12rem), repeating-linear-gradient(126deg, #ffffff02 0 1px, #0000 1px 5px), repeating-linear-gradient(34deg, #0003 0 1px, #0000 1px 8px);
  border-color: #8086802e;
  box-shadow: inset 0 1px #ffffff0b, inset 0 0 0 1px #0000009e, 0 18px 56px #0000007a;
}

.panel:before, .sidebar-card:before, .profile-summary:before, .profile-calendar-box:before, .profile-history-alone:before, .profile-activity-box:before, .profile-trophies-box:before, .profile-conduct-box:before, .profile-international-panel:before {
  opacity: .38;
  background: linear-gradient(135deg, #8e2a1e33, #0000 82px), linear-gradient(315deg, #6352321f, #0000 78px);
}

.profile-dota-hero {
  background-color: #050707;
  background-image: linear-gradient(90deg, #000000f2, #060808b8 38%, #400a0730 72%, #000000e0), radial-gradient(circle at 58% 45%, #aa201229, #0000 20rem), radial-gradient(circle at 92% 85%, #b42a182e, #0000 13rem), repeating-linear-gradient(116deg, #ffffff03 0 1px, #0000 1px 6px), repeating-linear-gradient(38deg, #0000003d 0 1px, #0000 1px 9px);
  border-color: #7b807b33;
}

.profile-dota-hero:after {
  background: radial-gradient(at 80% 100%, #b32b163d, #0000 22rem), linear-gradient(0deg, #570f0a38, #0000);
  height: 120px;
}

.profile-dota-avatar {
  background-color: #111515;
  background-image: linear-gradient(#ffffff0e, #0000 24%), radial-gradient(circle at 48% 32%, #ffffff09, #0000 7rem), repeating-linear-gradient(90deg, #ffffff05 0 1px, #0000 1px 10px), repeating-linear-gradient(0deg, #0000002e 0 1px, #0000 1px 8px), linear-gradient(145deg, #202524, #050606);
  border: 1px solid #373a37f2;
  align-self: center;
  width: 226px;
  height: 226px;
  box-shadow: inset 0 0 0 6px #000000b8, inset 0 0 0 7px #5e221875, inset 0 0 44px #000000db, 0 18px 46px #000000ad;
}

.profile-dota-avatar:before {
  border-color: #8c382652;
  inset: 10px;
  box-shadow: 0 0 0 1px #000000b8, inset 0 0 18px #0000008c;
}

.profile-dota-avatar:after {
  background: linear-gradient(45deg, #0000 0 42%, #4e504ae6 42% 58%, #0000 58%) 0 / 22px 42px no-repeat, linear-gradient(225deg, #0000 0 42%, #4e504ae6 42% 58%, #0000 58%) 100% / 22px 42px no-repeat, linear-gradient(135deg, #0000 0 42%, #4e504acc 42% 58%, #0000 58%) top / 42px 22px no-repeat, linear-gradient(315deg, #0000 0 42%, #4e504acc 42% 58%, #0000 58%) bottom / 42px 22px no-repeat;
  border-color: #0000;
  inset: -10px;
}

.profile-avatar-level {
  color: #d9a245;
  text-shadow: 0 0 9px #d7a74a52;
  background: radial-gradient(circle at 50% 46%, #492612c7 0 44%, #090806fa 45% 100%), conic-gradient(from 22deg, #7a4a20, #1a100a, #b07736, #20120a, #7a4a20);
  border: 1px solid #ab6c2bd9;
  width: 62px;
  height: 62px;
  font-size: 1.22rem;
  bottom: -22px;
  left: 18px;
  box-shadow: 0 0 0 4px #000000c7, inset 0 0 0 2px #000000b3, 0 0 18px #8f552347;
}

.profile-avatar-level:before, .profile-avatar-level:after {
  content: "";
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: linear-gradient(135deg, #b47a36, #27170b);
  width: 16px;
  height: 16px;
  position: absolute;
}

.profile-avatar-level:before {
  left: -10px;
}

.profile-avatar-level:after {
  right: -10px;
}

.profile-primary-tabs {
  background-color: #070909;
  background-image: linear-gradient(#ffffff08, #00000061), radial-gradient(circle at 4% 22%, #6f1d1338, #0000 5rem), radial-gradient(circle at 96% 22%, #6f1d1329, #0000 5rem), repeating-linear-gradient(135deg, #ffffff03 0 1px, #0000 1px 7px);
  border-color: #434844e6;
  min-height: 52px;
  box-shadow: inset 0 1px #ffffff0a, inset 0 -1px #000000c7;
}

.profile-primary-tabs button, .profile-main-tabs button {
  color: #b7b7b3;
  text-transform: uppercase;
  text-shadow: 0 1px #000;
  background-color: #080a0a;
  background-image: linear-gradient(#ffffff07, #00000059), radial-gradient(circle at 12% 14%, #7a2b1e14, #0000 6rem), repeating-linear-gradient(132deg, #ffffff03 0 1px, #0000 1px 7px);
  border-right-color: #4a504cb8;
  min-height: 52px;
  font-size: .98rem;
  font-weight: 900;
  position: relative;
}

.profile-primary-tabs button:before, .profile-primary-tabs button:after {
  pointer-events: none;
  content: "";
  opacity: .16;
  background: linear-gradient(45deg, #0000 0 45%, #70746e9e 45% 58%, #0000 58%), linear-gradient(135deg, #0000 0 45%, #70746e61 45% 58%, #0000 58%);
  width: 18px;
  height: 18px;
  position: absolute;
}

.profile-primary-tabs button:before {
  top: 8px;
  left: 8px;
}

.profile-primary-tabs button:after {
  bottom: 8px;
  right: 8px;
  transform: rotate(180deg);
}

.profile-primary-tabs button.is-active:before, .profile-primary-tabs button.is-active:after {
  opacity: .22;
  background: linear-gradient(45deg, #0000 0 45%, #772d23bf 45% 58%, #0000 58%), linear-gradient(135deg, #0000 0 45%, #772d237a 45% 58%, #0000 58%);
}

.profile-primary-tabs button:hover:not(:disabled), .profile-main-tabs button:hover:not(:disabled) {
  color: #dededb;
  background-image: linear-gradient(#ffffff09, #00000047), radial-gradient(circle at 50% 100%, #a12d1f24, #0000 7rem), repeating-linear-gradient(132deg, #ffffff03 0 1px, #0000 1px 7px);
}

.profile-primary-tabs button.is-active, .profile-main-tabs button.is-active {
  color: #ff4b43;
  text-shadow: 0 0 8px #ff41376b, 0 1px #000;
  background-color: #100b0b;
  background-image: linear-gradient(#50130e6b, #090908eb), radial-gradient(at 50% 100%, #ff2d2333, #0000 72%), repeating-linear-gradient(132deg, #ffffff03 0 1px, #0000 1px 7px);
  box-shadow: inset 0 -1px #ff382ee6, inset 0 0 26px #a0231929, 0 0 12px #ff382e24;
}

.profile-recent-panel, .profile-activity-box, .profile-calendar-box, .profile-best-heroes-box {
  background-color: #070909;
  background-image: linear-gradient(#ffffff07, #00000052), radial-gradient(circle at 0 0, #7f211617, #0000 8rem), radial-gradient(circle at 100% 0, #ffffff05, #0000 8rem), repeating-linear-gradient(128deg, #ffffff03 0 1px, #0000 1px 6px), repeating-linear-gradient(0deg, #00000047 0 1px, #0000 1px 9px);
}

.profile-match-item {
  border-bottom-color: #61676229;
  grid-template-columns: 104px 76px 70px 92px minmax(92px, 1fr);
  min-height: 64px;
  background: none !important;
}

.profile-match-item:hover {
  background: #ffffff06 !important;
}

.profile-match-item.is-win {
  background: none !important;
}

.profile-match-item b {
  text-shadow: 0 0 8px #ff3f3429;
  font-size: .96rem;
}

.profile-match-item.is-win b {
  color: #54d91e;
  text-shadow: 0 0 8px #54d91e2e;
}

.profile-match-item span, .profile-match-item em, .profile-match-item small {
  color: #a9aaa7;
  font-size: .91rem;
}

.profile-match-item strong {
  color: #d2d5d0;
  white-space: nowrap;
  font-size: .94rem;
}

@media (max-width: 1280px) and (min-width: 861px) {
  .profile-match-item {
    grid-template-columns: 94px 68px 62px 82px minmax(72px, 1fr);
    gap: 8px;
  }

  .profile-match-item span, .profile-match-item em, .profile-match-item small, .profile-match-item strong {
    font-size: .82rem;
  }
}

/* [project]/frontend/web/src/app/styles/reference/02-pass-cropped-assets.css [app-client] (css) */
.profile-dota-hero {
  background-image: linear-gradient(90deg, #000000f5, #040606e6 30%, #1206059e 58%, #070404e0),
    linear-gradient(180deg, #0000003d, #57100a2e 82%, #29070552),
    var(--tex-hero-ember),
    radial-gradient(ellipse at 70% 54%, #82180e29, transparent 30rem);
  background-position: center, center, 50% 22px, center;
  background-repeat: no-repeat, no-repeat, repeat-x, no-repeat;
  background-size: auto, auto, auto 150px, auto;
}

.profile-dota-hero:before {
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, #00000038, #0000 32% 72%, #00000047), linear-gradient(#0000002e, #0000 42%, #00000024);
  position: absolute;
  inset: 0;
}

.profile-summary, .profile-calendar-box, .profile-rank-box, .profile-best-box, .profile-history-alone, .profile-activity-box, .profile-trophies-box, .profile-conduct-box, .profile-international-panel {
  border: 10px solid #0000;
  border-image: var(--tex-panel-frame) 18 stretch;
  background-color: #070909;
  background-image: linear-gradient(180deg, #ffffff05, #00000038),
    var(--tex-panel-texture);
  background-repeat: no-repeat, repeat;
  background-size: auto, 120px 96px;
}

.profile-recent-panel {
  border-image-source: var(--tex-match-panel-frame);
  background-image: linear-gradient(180deg, #ffffff05, #0000002e),
    var(--tex-match-row-texture),
    var(--tex-panel-texture);
  background-repeat: no-repeat, repeat, repeat;
  background-size: auto, 90px 74px, 120px 96px;
}

.profile-dota-ribbon {
  border: 10px solid #0000;
  border-image: var(--tex-ribbon-frame) 14 stretch;
  background-color: #070909;
  background-image: linear-gradient(180deg, #ffffff03, #00000042),
    var(--tex-panel-texture);
  background-repeat: no-repeat, repeat;
  background-size: auto, 120px 96px;
}

.profile-primary-tabs {
  box-shadow: none;
  background: none;
  border: 0;
  gap: 0;
}

.profile-primary-tabs button, .profile-main-tabs button {
  border: 8px solid #0000;
  border-image: var(--tex-tab-normal-frame) 14 stretch;
  background-color: #080a0a;
  background-image: linear-gradient(180deg, #ffffff03, #0000003d),
    var(--tex-tab-normal-texture);
  background-repeat: no-repeat, repeat;
  background-size: auto, 44px 38px;
  min-height: 54px;
}

.profile-primary-tabs button.is-active, .profile-main-tabs button.is-active {
  color: #ff4d43;
  border-image-source: var(--tex-tab-active-frame);
  background-color: #110b0a;
  background-image: radial-gradient(ellipse at 50% 100%, #ff362c38, transparent 68%),
    var(--tex-tab-active-texture);
  background-repeat: no-repeat, repeat;
  background-size: auto, 44px 38px;
}

.profile-primary-tabs button:before, .profile-primary-tabs button:after {
  display: none;
}

.profile-dota-avatar {
  border: 18px solid #0000;
  border-image: var(--tex-avatar-frame-clean) 30 stretch;
  background-clip: padding-box;
}

.profile-dota-avatar:before, .profile-dota-avatar:after {
  display: none;
}

.profile-avatar-level {
  background: radial-gradient(circle at 50% 50%, #2c190cfa 0 25%, transparent 26%),
    var(--tex-level-badge-clean) center / contain no-repeat;
  width: 70px;
  height: 70px;
  box-shadow: none;
  border: 0;
  bottom: -24px;
  left: -2px;
}

.profile-avatar-level:after {
  z-index: -1;
  content: "";
  background: linear-gradient(145deg, #2c190c, #070604);
  border-radius: 50%;
  display: block;
  position: absolute;
  inset: 17px;
}

.profile-avatar-level:before, .profile-avatar-level:after {
  display: none;
}

.rank-emblem {
  color: #0000;
  background: var(--tex-rank-emblem) center / contain no-repeat;
  filter: drop-shadow(0 0 18px #526bff42);
}

.rank-emblem:before, .rank-emblem:after, .rank-emblem span {
  display: none;
}

.profile-activity-list .mini-rank:first-child, .profile-activity-list div:first-child .mini-rank {
  background: var(--tex-activity-icon-rank) center / contain no-repeat;
}

/* [project]/frontend/web/src/app/styles/reference/03-pass-final-cleanup.css [app-client] (css) */
.profile-hub-main.panel {
  background: linear-gradient(#050607, #090909);
}

.profile-dota-hero:after {
  background: radial-gradient(at 75% 56%, #78180e33, #0000 35rem), linear-gradient(#0000 0%, #4b0d091a 68%, #23060433 100%);
  height: 100%;
}

.profile-dota-hero > * {
  z-index: 1;
  position: relative;
}

.profile-dota-hero {
  background-image: linear-gradient(90deg, #000000c2, #05060670 38%, #14060457 68%, #000000ad),
    var(--tex-hero-ember),
    linear-gradient(180deg, #00000014, #2d08052e);
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, cover, 100% 100%;
}

.profile-dota-hero:before {
  background: linear-gradient(90deg, #0000001f, #0000 32% 72%, #00000029);
}

.profile-dota-hero:after {
  background: linear-gradient(#0000 0%, #26060424 100%);
}

.profile-dota-ribbon {
  box-sizing: border-box;
  grid-template-columns: repeat(6, minmax(140px, 170px));
  justify-content: center;
  width: 100%;
  padding-inline: clamp(20px, 4vw, 96px);
}

.profile-dota-ribbon > div:first-child {
  border-left: 1px solid #ffffff14;
}

.profile-page .profile-dota-ribbon > div {
  isolation: isolate;
  background: linear-gradient(#10141c94 0%, #06090edb 100%), radial-gradient(circle at 50% -25%, #ffffff0f 0%, #0000 56%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 18px #00000057, 0 0 12px #ff50281a, inset 0 1px #ffffff0a, inset 0 -26px 34px #00000075;
}

.profile-page .profile-dota-ribbon > div:before {
  pointer-events: none;
  content: "";
  border: 1px solid #ffffff0f;
  position: absolute;
  inset: 0;
}

.profile-page .profile-dota-ribbon > div:after {
  pointer-events: none;
  content: "";
  opacity: .08;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 20% 30%, #ffffff14 .5px, #0000 .8px) 0 0 / 4px 4px, radial-gradient(circle at 80% 70%, #ffffff0f .5px, #0000 .8px) 0 0 / 5px 5px;
  position: absolute;
  inset: 0;
}

.profile-page .profile-dota-ribbon > div > * {
  z-index: 1;
  position: relative;
}

.profile-avatar-level {
  background: radial-gradient(circle at 50% 50%, #1d1008 0 38%, transparent 39%),
    var(--tex-level-badge-clean) center / contain no-repeat;
}

.profile-rank-number-button {
  cursor: pointer;
  color: #58db24;
  width: 96px;
  height: 96px;
  font: 900 3rem/1 var(--font-body);
  text-shadow: 0 0 14px #58db2480, 0 1px #000;
  filter: none;
  border: 0;
  border-radius: 0;
  place-items: center;
  display: grid;
  background: none !important;
}

.profile-rank-number-button:hover {
  text-shadow: 0 0 18px #58db24b8, 0 1px #000;
}

.profile-streak-button {
  cursor: pointer;
  width: fit-content;
  min-width: 0;
  color: var(--green);
  font: 900 1.26rem/1 var(--font-body);
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
}

.profile-streak-button:hover {
  text-shadow: 0 0 10px #58db246b;
}

.profile-activity-soon {
  cursor: pointer;
  color: #d6d9d4;
  width: 100%;
  min-height: 86px;
  font: 900 1rem/1 var(--font-body);
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff05, #0000002e),
    var(--tex-panel-texture-clean),
    #070909;
  background-repeat: no-repeat, repeat;
  background-size: auto, 96px 80px;
  border: 1px solid #7479741f;
  border-radius: 2px;
  place-items: center;
  display: grid;
}

.profile-activity-soon:hover {
  color: #fff;
  border-color: #ff4d433d;
  box-shadow: inset 0 -1px #ff4d4361;
}

.profile-activity-soon span {
  pointer-events: none;
}

.profile-dota-rank-name {
  display: none !important;
}

.profile-dota-avatar-shell {
  align-self: center;
  width: 226px;
  height: 226px;
  position: relative;
}

.profile-dota-avatar-shell .profile-dota-avatar {
  align-self: auto;
  width: 100%;
  height: 100%;
}

.profile-avatar-level {
  z-index: 5;
  cursor: pointer;
  color: #d5a044;
  font: 900 1.28rem/1 var(--font-body);
  text-shadow: 0 1px #000, 0 0 8px #d7a0445c;
  place-items: center;
  display: grid;
  position: absolute;
}

.profile-avatar-level:hover, .profile-dota-edit:hover, .profile-dota-shield:hover {
  filter: brightness(1.16);
}

.profile-dota-edit, .profile-dota-shield {
  cursor: pointer;
  font: 900 .95rem/1 var(--font-body);
  padding: 0;
}

.profile-mini-card {
  z-index: 8;
  width: min(230px, 100% - 32px);
  color: var(--text);
  background: linear-gradient(180deg, #ffffff09, #0000003d),
    var(--tex-panel-texture-clean),
    #080a0a;
  background-repeat: no-repeat, repeat;
  background-size: auto, 96px 80px;
  border: 1px solid #9a825357;
  border-radius: 2px;
  gap: 5px;
  padding: 12px 14px;
  display: grid;
  position: absolute;
  box-shadow: inset 0 0 0 1px #000000b8, 0 14px 34px #00000075;
}

.profile-mini-card strong {
  text-transform: uppercase;
  font-size: .84rem;
}

.profile-mini-card p {
  color: #aeb2ab;
  font-size: .88rem;
}

.profile-mini-card.is-edit, .profile-mini-card.is-badge {
  top: 82px;
  left: 520px;
}

.profile-mini-card.is-badge {
  left: 562px;
}

.profile-mini-card.is-streak {
  top: 172px;
  right: 280px;
}

.profile-edit-menu {
  z-index: 8;
  background: linear-gradient(180deg, #ffffff09, #0000003d),
    var(--tex-panel-texture-clean),
    #080a0a;
  background-repeat: no-repeat, repeat;
  background-size: auto, 96px 80px;
  border: 1px solid #9a825357;
  border-radius: 2px;
  gap: 10px;
  width: min(320px, 100% - 34px);
  padding: 14px;
  display: grid;
  position: absolute;
  top: 82px;
  left: 520px;
  box-shadow: inset 0 0 0 1px #000000b8, 0 14px 34px #00000075;
}

.profile-edit-menu strong {
  color: var(--text);
  text-transform: uppercase;
  font-size: .84rem;
}

.profile-edit-menu label {
  gap: 6px;
  display: grid;
}

.profile-edit-menu label span {
  color: #aeb2ab;
  font-size: .8rem;
  font-weight: 800;
}

.profile-edit-menu input {
  min-height: 40px;
  color: var(--text);
  background: #00000075;
  border: 1px solid #888c8847;
  border-radius: 2px;
  padding: 0 12px;
}

.profile-edit-menu-actions {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.profile-avatar-preview-modal {
  width: min(620px, 100%);
}

.profile-nickname-trigger {
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
  background: none;
  border: 0;
  transition: color .18s, text-shadow .18s;
}

.profile-nickname-trigger:hover {
  color: #fff;
  text-shadow: 0 0 8px #ff5a2d3d, 0 0 12px #6a96dc24;
}

.profile-page .profile-identity-modal {
  background: linear-gradient(#ffffff08, #00000052), radial-gradient(circle at 12% 0, #ff5f3224, #0000 56%), radial-gradient(circle at 88% 100%, #6a96dc1c, #0000 62%), #0a0e16e0;
  border-color: #ffffff14;
  border-radius: 6px;
  gap: 14px;
  width: min(640px, 100%);
  position: relative;
  box-shadow: 0 22px 64px #0000008f, 0 0 20px #ff582a1a, inset 0 1px #ffffff0a;
}

.profile-modal-close {
  z-index: 2;
  cursor: pointer;
  color: #b7c0ce;
  background: #080c12d1;
  border: 1px solid #ffffff24;
  border-radius: 4px;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 1.18rem;
  font-weight: 900;
  transition: color .18s, border-color .18s, box-shadow .18s, transform .18s;
  display: grid;
  position: absolute;
  top: 10px;
  right: 10px;
}

.profile-modal-close:hover {
  color: #fff;
  border-color: #ff785070;
  transform: translateY(-1px);
  box-shadow: 0 0 12px #ff582a2e;
}

.profile-identity-grid {
  gap: 10px;
  display: grid;
}

.profile-identity-grid > div {
  background: linear-gradient(#ffffff05, #0000002e), #080c12b8;
  border: 1px solid #ffffff0f;
  border-radius: 4px;
  gap: 4px;
  padding: 10px 12px;
  display: grid;
}

.profile-identity-grid span {
  color: #8f99a8;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 800;
}

.profile-identity-grid strong, .profile-identity-grid a {
  color: #f1f4f8;
  word-break: break-word;
  font-size: .98rem;
  font-weight: 700;
}

.profile-avatar-preview-image {
  object-fit: contain;
  background: #00000080;
  border: 1px solid #888c8847;
  border-radius: 2px;
  width: min(100%, 460px);
  max-height: 70vh;
  margin: 0 auto;
}

.profile-recent-panel {
  background-image: linear-gradient(180deg, #ffffff04, #00000038),
    var(--tex-panel-texture-clean) !important;
  background-repeat: no-repeat, repeat !important;
  background-size: auto, 96px 80px !important;
}

.profile-match-item, .profile-match-item:hover, .profile-match-item.is-win {
  background-image: linear-gradient(180deg, #ffffff03, #00000014),
    var(--tex-panel-texture-clean) !important;
  background-repeat: no-repeat, repeat !important;
  background-size: auto, 96px 80px !important;
}

.profile-match-item:hover {
  box-shadow: inset 0 0 0 1px #91805824;
}

.profile-page {
  --bg: #05070a;
  --panel: #0a0e16c2;
  --panel-strong: #0a0e16c7;
  --line: #ffffff0d;
  --text: #f5f5f5;
  --muted: #7e8794;
  --accent: #c63a1e;
  --accent-strong: #d84a4a;
  --green: #5fd35f;
  --danger: #d84a4a;
}

.profile-page .profile-hub-main.panel {
  isolation: isolate;
  background: radial-gradient(circle at top, #1a0d0d 0%, #050505 55%);
  border: 1px solid #ffffff0d;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 64px #c63a1e1c, 0 26px 90px #4268aa14, inset 0 0 250px #000000e6, 0 12px 40px #0000008c;
}

.profile-page .profile-hub-main.panel:before {
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: .03;
  mix-blend-mode: screen;
  background: repeating-radial-gradient(circle at 40% 35%, #ffffffbf 0 1px, #0000 1px 4px), repeating-radial-gradient(circle at 60% 65%, #ffffff73 0 1px, #0000 1px 5px);
  position: absolute;
  inset: 0;
}

.profile-page .profile-hub-main.panel:after {
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: .42;
  background: radial-gradient(circle at 55% 18%, #b4281454 0%, #500f0a29 28%, #0000 62%), radial-gradient(circle at 38% 2%, #ff823c29 0%, #0000 36%), radial-gradient(circle at 52% 108%, #5884d029 0%, #121c2e14 24%, #0000 60%);
  position: absolute;
  inset: 0;
}

.profile-page .profile-hub-main.panel > * {
  z-index: 1;
  position: relative;
}

.profile-page .profile-main-content, .profile-page .profile-left-stack, .profile-page .profile-center-stack, .profile-page .profile-right-stack, .profile-page .profile-hub-main {
  gap: 12px;
}

.profile-page .profile-summary, .profile-page .profile-calendar-box, .profile-page .profile-rank-box, .profile-page .profile-best-box, .profile-page .profile-history-alone, .profile-page .profile-activity-box, .profile-page .profile-trophies-box, .profile-page .profile-conduct-box, .profile-page .profile-international-panel, .profile-page .profile-recent-panel {
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  background: #0a0e16c7;
  border: 1px solid #ffffff0d;
  border-radius: 5px;
  box-shadow: 0 12px 40px #0000008c, 0 0 24px #00000073, inset 0 1px #ffffff08;
}

.profile-page .profile-dota-hero {
  background: linear-gradient(90deg, #000000b8 0%, #0000005c 35%, #000000a8 100%), #0a0e16b8;
  border: 1px solid #ffffff0d;
  border-radius: 5px;
  box-shadow: 0 12px 40px #0000008c, inset 0 1px #ffffff08;
}

.profile-page .profile-primary-tabs, .profile-page .profile-dota-ribbon {
  background: #0a0e16b8;
  border-color: #ffffff0d;
  border-radius: 5px;
}

.profile-page .profile-primary-tabs button, .profile-page .profile-main-tabs button {
  color: #7e8794;
  min-height: 50px;
  transition: box-shadow .18s, border-color .18s, transform .18s, color .18s;
}

.profile-page .profile-primary-tabs button:hover:not(:disabled), .profile-page .profile-main-tabs button:hover:not(:disabled) {
  box-shadow: 0 0 10px #ff6c3838, 0 0 18px #608cdc14, inset 0 -1px #ff502829;
}

.profile-page .profile-primary-tabs button.is-active, .profile-page .profile-main-tabs button.is-active {
  color: #f5f5f5;
  box-shadow: 0 0 14px #ff542c2e, 0 0 20px #6694de17, inset 0 -1px #d84a4a66;
}

.profile-page .primary-button, .profile-page .ghost-button, .profile-page .profile-activity-soon, .profile-page .profile-match-item {
  transition: box-shadow .18s, border-color .18s, transform .18s;
}

.profile-page .primary-button:hover, .profile-page .ghost-button:hover, .profile-page .profile-activity-soon:hover, .profile-page .profile-match-item:hover {
  box-shadow: 0 0 10px #ff603429, 0 0 18px #5a84d014, inset 0 1px #ffffff0a;
}

.profile-page .profile-dota-identity h2, .profile-page .panel-title h3, .profile-page .profile-rank-head strong, .profile-page .profile-best-box h3 {
  color: #f5f5f5;
  letter-spacing: -.02em;
  text-shadow: 0 0 6px #ffffff0f;
  font-weight: 700;
}

.profile-page p, .profile-page .profile-dota-id, .profile-page .profile-match-item span, .profile-page .profile-match-item em, .profile-page .profile-match-item small, .profile-page .eyebrow, .profile-page .profile-rank-table small {
  color: #7e8794;
}

.profile-page .profile-status-dot.is-online, .profile-page .profile-dota-ribbon strong.is-green, .profile-page .profile-conduct-box strong {
  color: #5fd35f;
}

.profile-page .rank-emblem, .profile-page .profile-rank-number-button {
  filter: drop-shadow(0 0 20px #78b4ff47);
}

.profile-page .profile-recent-panel {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.profile-page .profile-history-alone.profile-recent-panel {
  background: linear-gradient(#ffffff09, #0000004d), radial-gradient(circle at 18% 0, #ff5a2d1f, #0000 52%), radial-gradient(circle at 84% 100%, #628cd617, #0000 58%), #0a0e16c7;
  border-color: #ffffff0f;
  box-shadow: 0 14px 36px #0000008a, 0 0 18px #ff582a1a, inset 0 1px #ffffff0a, inset 0 -28px 42px #00000057;
}

.profile-page .profile-recent-panel .profile-match-list {
  grid-auto-rows: min-content;
  place-content: start stretch;
  width: 100%;
  margin-top: 0;
}

.profile-page .profile-recent-panel .profile-match-item {
  isolation: isolate;
  background: linear-gradient(#121826cc 0%, #050910f5 100%), radial-gradient(circle at 55% -70%, #ffffff1a 0%, #0000 58%);
  border-bottom-color: #ffffff14;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px #ffffff0d, inset 0 -22px 32px #0006;
}

.profile-page .profile-recent-panel .profile-match-item:before {
  pointer-events: none;
  content: "";
  border: 1px solid #ffffff0f;
  border-left: 0;
  border-right: 0;
  position: absolute;
  inset: 0;
}

.profile-page .profile-recent-panel .profile-match-item:after {
  pointer-events: none;
  content: "";
  opacity: .1;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 16% 26%, #ff5e363d 0%, #0000 42%), radial-gradient(circle at 84% 74%, #6a96dc38 0%, #0000 46%), radial-gradient(circle at 20% 30%, #ffffff17 .5px, #0000 .8px) 0 0 / 4px 4px;
  position: absolute;
  inset: 0;
}

.profile-page .profile-recent-panel .profile-match-item > * {
  z-index: 1;
  position: relative;
}

.profile-page .profile-recent-panel .profile-match-item:hover {
  box-shadow: 0 0 18px #ff603426, inset 0 1px #ffffff0d, inset 0 -24px 34px #00000070;
}

.search-view .page-grid.search-page {
  isolation: isolate;
  position: relative;
}

.search-view .search-page .search-queue-span {
  grid-column: span 2;
}

.search-view .search-page .search-map-full {
  grid-column: 1 / -1;
}

.search-view .page-grid.search-page:before {
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 20% 4%, #ff5e341f, #0000 36%), radial-gradient(circle at 82% 94%, #6694de1a, #0000 40%);
  position: absolute;
  inset: -10px -8px;
}

.search-view .search-page .panel {
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  background: linear-gradient(#ffffff08, #0000004d), #0a0e16c2;
  border: 1px solid #ffffff0d;
  border-radius: 5px;
  box-shadow: 0 12px 40px #0000008c, 0 0 22px #0000006b, inset 0 1px #ffffff08;
}

.search-view .search-page .panel-title h2, .search-view .search-page .page-intro h2 {
  color: #f5f5f5;
  letter-spacing: -.02em;
  text-shadow: 0 0 6px #ffffff0f;
}

.search-view .search-page .panel-title strong, .search-view .search-page .queue-stage-card strong, .search-view .search-page .signal-card strong {
  color: #f5f5f5;
}

.search-view .search-page .queue-stage-card, .search-view .search-page .slot-card, .search-view .search-page .mode-row, .search-view .search-page .condition-item, .search-view .search-page .signal-card, .search-view .search-page .info-tile {
  background: linear-gradient(#101622b3, #060a11e6), radial-gradient(circle at 60% -60%, #ffffff14, #0000 60%);
  border-color: #ffffff0f;
  box-shadow: inset 0 1px #ffffff0a, inset 0 -20px 30px #00000059;
}

.search-view .search-page .queue-stage-card {
  background: linear-gradient(#121824c7, #070a10eb), radial-gradient(circle at 16% 0, #ff5c3026, #0000 48%);
  box-shadow: 0 0 18px #ff582a1f, inset 0 1px #ffffff0a, inset 0 -22px 34px #00000061;
}

.search-view .search-page .slot-card.is-filled {
  background: linear-gradient(#112316b8, #08120ce6), radial-gradient(circle at 50% -40%, #60d2602e, #0000 52%);
  border-color: #5fd35f57;
}

.search-view .search-page .mode-row.is-selected {
  background: linear-gradient(#2c1614b3, #110a0ce6), radial-gradient(circle at 16% 6%, #ff663c29, #0000 56%);
  border-color: #ff6a4157;
  box-shadow: 0 0 14px #ff5a2d24, inset 0 1px #ffffff0a;
}

.search-view .search-page .mode-row:hover, .search-view .search-page .condition-item:hover, .search-view .search-page .slot-card:hover {
  border-color: #ffffff1f;
  box-shadow: 0 0 12px #ff60341f, 0 0 16px #6694de14, inset 0 1px #ffffff0d;
}

.search-view .search-page .status-pill {
  color: #f0f4fb;
  background: #0c121cbd;
  border-color: #ffffff1a;
}

.search-view .search-page .match-map {
  background: linear-gradient(#0d121cc2, #05080ee6), #080c12b3;
  border-color: #ffffff12;
  box-shadow: 0 12px 30px #00000080, inset 0 1px #ffffff08;
}

.search-view .search-page .match-map-shell {
  isolation: isolate;
  position: relative;
}

.search-view .search-page .match-map-shell .match-map {
  display: block;
}

.search-view .search-page .match-team-label {
  z-index: 2;
  color: #d8dee9;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #060a10ad;
  border: 1px solid #ffffff24;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: .72rem;
  font-weight: 800;
  position: absolute;
  top: 12px;
}

.search-view .search-page .match-team-label--radiant {
  left: 14px;
}

.search-view .search-page .match-team-label--dire {
  right: 14px;
}

.search-view .search-page .match-side-slots {
  z-index: 2;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: calc(50% - 28px);
  height: calc(50% - 36px);
  display: grid;
  position: absolute;
}

.search-view .search-page .match-side-slots--radiant {
  bottom: 14px;
  left: 14px;
}

.search-view .search-page .match-side-slots--dire {
  top: 54px;
  right: 14px;
}

.search-view .search-page .match-slot {
  color: #d8e0ee;
  text-align: center;
  background: linear-gradient(#121824d6, #060a11eb), #0a0e16d6;
  border: 1px solid #ffffff1f;
  border-radius: 6px;
  grid-template-rows: auto 1fr auto auto;
  align-content: start;
  justify-items: center;
  gap: 4px;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 10px 6px;
  display: grid;
  box-shadow: 0 8px 18px #00000057, inset 0 1px #ffffff0a;
}

.search-view .search-page .match-slot .match-slot-label {
  color: #9aa5b6;
  text-transform: uppercase;
  font-size: .62rem;
  font-weight: 800;
}

.search-view .search-page .match-slot .match-slot-avatar {
  background: radial-gradient(circle at 50% 26%, #b4c0d63d, #0000 36%), linear-gradient(#1c2434e6, #0c101af0);
  border: 1px solid #ffffff24;
  border-radius: 16px;
  width: 36px;
  height: 44px;
  display: block;
}

.search-view .search-page .match-slot .match-slot-value {
  color: #f4f7fb;
  font-size: 1.06rem;
  line-height: 1;
}

.search-view .search-page .match-slot .match-slot-meta {
  color: #7f8a9a;
  text-transform: lowercase;
  font-size: .58rem;
  font-weight: 700;
  line-height: 1.1;
}

.search-view .search-page .match-slot.is-radiant {
  background: linear-gradient(#102218cc, #08120ce6), #09100cd1;
  border-color: #5fd35f52;
}

.search-view .search-page .match-slot.is-dire {
  background: linear-gradient(#241416d1, #100a0ceb), #100a0cd6;
  border-color: #ff6c4457;
}

.search-view .search-page .match-lineup span {
  background: linear-gradient(#111724b8, #060a10e6), #090d14bd;
  border-color: #ffffff14;
}

.search-view .search-page .sandbox-debug-panel {
  grid-column: span 2;
  gap: 12px;
  display: grid;
}

.search-view .search-page .sandbox-debug-title {
  align-items: flex-start;
}

.search-view .search-page .sandbox-debug-controls {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  display: grid;
}

.search-view .search-page .sandbox-debug-controls label {
  gap: 6px;
  display: grid;
}

.search-view .search-page .sandbox-debug-controls span {
  color: #8793a6;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 800;
}

.search-view .search-page .sandbox-debug-controls select, .search-view .search-page .sandbox-debug-controls input {
  color: #e6edf8;
  background: #050910c2;
  border: 1px solid #ffffff1f;
  border-radius: 4px;
  width: 100%;
  min-height: 36px;
  padding: 0 10px;
}

.search-view .search-page .sandbox-debug-actions {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.search-view .search-page .sandbox-debug-actions .ghost-button {
  min-height: 36px;
  padding: 0 12px;
}

.search-view .search-page .sandbox-debug-message {
  color: #99a6b8;
  margin: 0;
  font-size: .84rem;
}

.search-view .search-page .sandbox-debug-events {
  gap: 6px;
  display: grid;
}

.search-view .search-page .sandbox-debug-event {
  background: linear-gradient(#141b29bf, #070a10e6), #090d14b8;
  border: 1px solid #ffffff14;
  border-radius: 4px;
  grid-template-columns: minmax(0, 1.6fr) auto auto;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  display: grid;
}

.search-view .search-page .sandbox-debug-event span {
  color: #cfd6e4;
  font-size: .78rem;
}

.search-view .search-page .sandbox-debug-event strong {
  color: #f4f7fb;
  font-size: .74rem;
}

.search-view .search-page .sandbox-debug-event em {
  color: #8793a6;
  font-size: .72rem;
  font-style: normal;
}

@media (max-width: 860px) {
  .search-view .search-page .search-queue-span, .search-view .search-page .search-map-full, .search-view .search-page .sandbox-debug-panel {
    grid-column: span 1;
  }

  .search-view .search-page .sandbox-debug-controls {
    grid-template-columns: 1fr;
  }

  .search-view .search-page .match-side-slots {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    width: calc(50% - 16px);
    height: calc(50% - 22px);
  }

  .search-view .search-page .match-slot {
    height: 100%;
    min-height: 0;
    padding: 5px 4px 6px;
  }

  .search-view .search-page .match-slot .match-slot-label {
    font-size: .56rem;
  }

  .search-view .search-page .match-slot .match-slot-avatar {
    width: 28px;
    height: 34px;
  }

  .search-view .search-page .match-slot .match-slot-value {
    font-size: .92rem;
  }

  .search-view .search-page .match-slot .match-slot-meta {
    font-size: .54rem;
  }
}

/* [project]/frontend/web/src/app/styles/reference/04-responsive.css [app-client] (css) */
@media (max-width: 860px) {
  .profile-dota-avatar-shell {
    aspect-ratio: 1;
    width: min(100%, 240px);
    height: auto;
  }

  .profile-mini-card, .profile-edit-menu {
    grid-column: 1 / -1;
    width: 100%;
    position: static;
  }
}

/* [project]/frontend/web/src/app/styles/globals-dota-reference.css [app-client] (css) */


/* [project]/frontend/web/src/app/globals.css [app-client] (css) */
.brand-mark, .brand-avatar, .profile-dota-shield {
  overflow: hidden;
}

.brand-mark img, .brand-avatar img, .profile-dota-shield img {
  object-fit: contain;
  filter: invert() brightness(1.15) drop-shadow(0 0 10px #d7a74a38);
  width: 82%;
  height: 82%;
  display: block;
}

.brand-mark img {
  width: 88%;
  height: 88%;
}

.brand-avatar img {
  width: 78%;
  height: 78%;
}

.profile-dota-shield img {
  width: 24px;
  height: 24px;
}

.profile-page .profile-match-item .profile-rating-change {
  text-align: center;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  justify-self: center;
  min-width: 54px;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.profile-page .profile-match-item .profile-rating-change.is-gold {
  color: #d8a94a;
  text-shadow: 0 0 16px #d8a94a42;
}

.profile-page .profile-match-item .profile-rating-change.is-positive {
  color: var(--green);
  text-shadow: 0 0 14px #58db2433;
}

.profile-page .profile-match-item .profile-rating-change.is-mixed {
  color: #e7c463;
  text-shadow: 0 0 12px #e7c46329;
}

.profile-page .profile-match-item .profile-rating-change.is-negative {
  color: var(--danger);
  text-shadow: 0 0 14px #d84a4a33;
}

.profile-page .profile-match-item .profile-rating-change.is-pending {
  color: #6f7783;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow: none;
  font-size: .78rem;
}

.search-view .search-page .sandbox-debug-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  display: grid;
}

.search-view .search-page .sandbox-debug-events h3 {
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .82;
  margin: 0 0 8px;
  font-size: 12px;
}

/*# sourceMappingURL=frontend_web_src_app_0q8f51~._.css.map*/