/* Profile — HOTCS design system */

.hotcs-profile {
  --hotcs-pr-accent: var(--span);
  --hotcs-pr-accent-glow: color-mix(in srgb, var(--span) 45%, transparent);
  --hotcs-pr-border: var(--transparent-10-w, rgba(255, 255, 255, 0.08));
  --hotcs-pr-panel: var(--card);
  --hotcs-pr-surface: var(--input-form);
  --hotcs-pr-blue: #60a5fa;
  --hotcs-pr-purple: #a78bfa;
  color: var(--text-default);
  font-family: var(--font-family-1);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.25rem;
  border: 1px solid var(--hotcs-pr-border);
  border-radius: var(--br-16);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 16px 40px rgb(0 0 0 / 22%);
}

.hotcs-profile__hero {
  position: relative;
  overflow: visible;
  border-bottom: 1px solid var(--hotcs-pr-border);
  background: var(--bg);
  z-index: 2;
  animation: hotcs-pr-enter-up .55s cubic-bezier(.25, 1, .4, 1) both;
}

.hotcs-profile__hero .hotcs-profile__banner {
  overflow: hidden;
}

.hotcs-profile__hero .hotcs-profile__banner {
  position: absolute;
  inset: 0;
  min-height: 0;
  border: none;
  background: var(--bg);
  pointer-events: none;
}

.hotcs-profile__banner-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 12%) 0%, rgb(0 0 0 / 28%) 42%, rgb(0 0 0 / 78%) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 23px, rgb(255 255 255 / 3%) 23px, rgb(255 255 255 / 3%) 24px),
    repeating-linear-gradient(90deg, transparent, transparent 23px, rgb(255 255 255 / 3%) 23px, rgb(255 255 255 / 3%) 24px);
}

.hotcs-profile__hero .hotcs-profile__banner-btn {
  pointer-events: auto;
  z-index: 5;
}

.hotcs-profile__banner {
  position: relative;
  min-height: 11rem;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid var(--hotcs-pr-border);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 10%) 0%, rgb(0 0 0 / 55%) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 23px, rgb(255 255 255 / 3%) 23px, rgb(255 255 255 / 3%) 24px),
    repeating-linear-gradient(90deg, transparent, transparent 23px, rgb(255 255 255 / 3%) 23px, rgb(255 255 255 / 3%) 24px),
    var(--bg);
  box-shadow: none;
}

.hotcs-profile__banner-media,
.hotcs-profile__banner-media video,
.hotcs-profile__banner-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  filter: none;
}

.hotcs-profile__banner-btn {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .75rem;
  border-radius: var(--br-10);
  border: 1px solid var(--hotcs-pr-border);
  background: rgb(0 0 0 / 45%);
  backdrop-filter: blur(8px);
  color: var(--text-default);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-6);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.hotcs-profile__banner-btn svg {
  width: .95rem;
  height: .95rem;
  flex-shrink: 0;
}

.hotcs-profile__banner-btn:hover {
  border-color: color-mix(in srgb, var(--hotcs-pr-accent) 40%, var(--hotcs-pr-border));
  background: rgb(0 0 0 / 62%);
  box-shadow: 0 0 14px var(--hotcs-pr-accent-glow);
}

.hotcs-profile__identity {
  display: grid;
  grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
  grid-template-areas:
    "avatar meta";
  gap: 1rem 1.25rem;
  align-items: center;
  margin-top: 0;
  padding: 5.75rem 1.15rem 1.15rem;
  position: relative;
  z-index: 3;
  overflow: visible;
}

.hotcs-profile__identity--has-tools {
  grid-template-columns: minmax(0, 12rem) minmax(0, 1fr) minmax(11rem, 16rem);
  grid-template-areas: "avatar meta tools";
}

.hotcs-profile__hero .hotcs-profile__identity {
  margin-top: 0;
}

.hotcs-profile__avatar-col {
  grid-area: avatar;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  width: 100%;
  max-width: 12rem;
  min-width: 0;
  flex-shrink: 0;
  animation: hotcs-pr-enter-up .48s cubic-bezier(.25, 1, .4, 1) both;
  animation-delay: .12s;
}

.hotcs-profile__meta {
  grid-area: meta;
  min-width: 0;
  padding-bottom: .15rem;
  animation: hotcs-pr-enter-up .48s cubic-bezier(.25, 1, .4, 1) both;
  animation-delay: .18s;
}

.hotcs-profile__quote {
  margin: 0;
  padding: .45rem .65rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--hotcs-pr-border);
  border-left: 2px solid var(--hotcs-pr-accent);
  border-radius: var(--br-10);
  background: rgb(0 0 0 / 42%);
  backdrop-filter: blur(6px);
  color: var(--text-default);
  font-size: var(--font-size-xs, .72rem);
  font-style: italic;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 1px 8px rgb(0 0 0 / 35%);
  quotes: "\201C" "\201D";
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.hotcs-profile__quote::before {
  content: open-quote;
  margin-right: .12rem;
  color: var(--hotcs-pr-accent);
  font-style: normal;
}

.hotcs-profile__quote::after {
  content: close-quote;
  margin-left: .12rem;
  color: var(--hotcs-pr-accent);
  font-style: normal;
}

.hotcs-profile__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.hotcs-profile__avatar {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--hotcs-pr-accent);
  box-shadow:
    0 0 0 4px rgb(0 0 0 / 55%),
    0 0 24px var(--hotcs-pr-accent-glow);
  background: var(--bg);
}

.hotcs-profile__roles-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  margin-top: .55rem;
}

.hotcs-profile__tools {
  grid-area: tools;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .4rem;
  align-self: center;
  width: 100%;
  min-width: 0;
  max-width: 16rem;
  animation: hotcs-pr-enter-up .48s cubic-bezier(.25, 1, .4, 1) both;
  animation-delay: .22s;
}

.hotcs-profile__tools .hotcs-profile__server {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.hotcs-profile__faceit-grid {
  display: grid;
  gap: .35rem;
}

.hotcs-profile__faceit-cell {
  display: flex;
  flex-direction: column;
  gap: .18rem;
  min-width: 0;
  padding: .35rem .4rem;
  border-radius: var(--br-8);
  background: var(--transparent-3-w);
  border: 1px solid var(--transparent-5-w);
}

.hotcs-profile__faceit-cell-lbl {
  font-size: .58rem;
  line-height: 1.15;
  color: var(--text-secondary);
  opacity: .78;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hotcs-profile__faceit-cell-val {
  font-size: .72rem;
  font-weight: var(--font-weight-7);
  color: var(--text-default);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hotcs-profile__faceit-cell-val--elo {
  color: #fd5a00;
}

.hotcs-profile__faceit-level {
  object-fit: contain;
}

.hotcs-profile__faceit--stats {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 0;
  border: none;
  background: transparent;
}

.hotcs-profile__faceit-level--stats {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  margin-left: 0;
}

.hotcs-profile__faceit-grid--stats {
  flex: 1 1 auto;
  min-width: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .45rem;
}

.hotcs-profile__stats-block--faceit .hotcs-profile__faceit-cell {
  padding: .45rem .55rem;
}

.hotcs-profile__stats-block--faceit .hotcs-profile__faceit-cell-lbl {
  font-size: var(--font-size-xs, .72rem);
}

.hotcs-profile__stats-block--faceit .hotcs-profile__faceit-cell-val {
  font-size: var(--font-size-s);
}

.hotcs-profile__faceit-headlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-left: auto;
  border-radius: var(--br-8);
  background: color-mix(in srgb, #fd5a00 16%, transparent);
  color: #fd5a00;
  text-decoration: none;
  transition: background .2s ease, box-shadow .2s ease;
}

.hotcs-profile__faceit-headlink svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.hotcs-profile__faceit-headlink:hover {
  background: color-mix(in srgb, #fd5a00 28%, transparent);
  box-shadow: 0 0 12px color-mix(in srgb, #fd5a00 24%, transparent);
}

.hotcs-profile__stats-block--faceit .title_head {
  margin-bottom: .65rem;
}

.hotcs-profile__name-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  margin-bottom: .2rem;
}

.hotcs-profile__name-row .hotcs-profile__name {
  margin: 0;
}

.hotcs-profile__steam-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--br-8);
  border: 1px solid var(--hotcs-pr-border);
  background: rgb(0 0 0 / 35%);
  color: var(--text-default);
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.hotcs-profile__steam-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.hotcs-profile__steam-link:hover {
  border-color: color-mix(in srgb, var(--hotcs-pr-accent) 40%, var(--hotcs-pr-border));
  background: rgb(0 0 0 / 52%);
  box-shadow: 0 0 12px var(--hotcs-pr-accent-glow);
}

.hotcs-profile__name {
  margin: 0 0 .2rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: var(--font-weight-7);
  letter-spacing: .01em;
  line-height: 1.15;
  color: var(--text-default);
  text-shadow: 0 1px 12px rgb(0 0 0 / 45%);
}

.hotcs-profile__status-row {
  margin-bottom: .25rem;
}

.hotcs-profile__status-online {
  color: var(--green);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-6);
}

.hotcs-profile__status-link {
  text-decoration: none;
}

.hotcs-profile__status-offline {
  color: var(--text-secondary);
  font-size: var(--font-size-s);
}

.hotcs-profile__steamid-row {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  max-width: 100%;
}

.hotcs-profile__steamid {
  font-size: var(--font-size-s);
  color: var(--text-custom);
  opacity: .85;
  user-select: text;
  word-break: break-all;
}

.hotcs-profile__copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  padding: 0;
  border: 1px solid var(--hotcs-pr-border);
  border-radius: var(--br-8);
  background: rgb(0 0 0 / 30%);
  color: var(--text-custom);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.hotcs-profile__copy-btn svg {
  width: .85rem;
  height: .85rem;
  fill: currentColor;
}

.hotcs-profile__copy-btn:hover {
  border-color: color-mix(in srgb, var(--hotcs-pr-accent) 35%, var(--hotcs-pr-border));
  background: rgb(0 0 0 / 48%);
  color: var(--text-default);
}

.hotcs-profile__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.hotcs-profile__badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: var(--br-8);
  border: 1px solid var(--hotcs-pr-border);
  background: var(--transparent-3-w);
  font-size: var(--font-size-xs, .72rem);
  font-weight: var(--font-weight-6);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hotcs-profile__badge--player { color: var(--text-custom); }
.hotcs-profile__badge--admin { color: var(--hotcs-pr-accent); border-color: color-mix(in srgb, var(--hotcs-pr-accent) 35%, transparent); }
.hotcs-profile__badge--vip { color: #fbbf24; border-color: color-mix(in srgb, #fbbf24 35%, transparent); }
.hotcs-profile__badge--top { color: var(--hotcs-pr-blue); border-color: color-mix(in srgb, var(--hotcs-pr-blue) 35%, transparent); }
.hotcs-profile__badge--banned { color: #ff8f8f; border-color: color-mix(in srgb, #bf0d0d 45%, transparent); background: rgb(191 13 13 / 16%); }
.hotcs-profile__badge--muted { color: #fbbf24; border-color: color-mix(in srgb, #f59e0b 40%, transparent); background: rgb(245 158 11 / 14%); }
.hotcs-profile__badge--clan {
  color: #93c5fd;
  border-color: color-mix(in srgb, #60a5fa 40%, transparent);
  background: rgb(96 165 250 / 12%);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--font-size-xs, .72rem);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotcs-profile__badge--clan:hover {
  color: #bfdbfe;
  border-color: color-mix(in srgb, #60a5fa 55%, transparent);
  background: rgb(96 165 250 / 18%);
}

.hotcs-profile__server {
  min-width: 10rem;
}

.hotcs-profile__server.adaptive-select-wrapper {
  position: relative;
  z-index: 30;
}

.hotcs-profile__server .adaptive-select__dropdown-list {
  z-index: 40;
  width: 100%;
  min-width: 100%;
  max-width: none;
}

.hotcs-profile__server-select {
  min-height: 2.1rem;
  border-radius: var(--br-10);
  border: 1px solid var(--hotcs-pr-border);
  background: var(--hotcs-pr-panel);
}

.hotcs-profile__tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: .75rem 1.15rem;
  padding: 6px;
  border: 1px solid var(--transparent-10-w);
  border-radius: var(--br-12);
  background: var(--card);
  animation: hotcs-pr-enter-up .48s cubic-bezier(.25, 1, .4, 1) both;
  animation-delay: .1s;
}

.hotcs-profile__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: none;
  border-radius: var(--br-10);
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
  animation: hotcs-pr-enter-up .4s cubic-bezier(.25, 1, .4, 1) both;
}

.hotcs-profile__tab:nth-child(1) { animation-delay: .14s; }
.hotcs-profile__tab:nth-child(2) { animation-delay: .18s; }
.hotcs-profile__tab:nth-child(3) { animation-delay: .22s; }
.hotcs-profile__tab:nth-child(4) { animation-delay: .26s; }
.hotcs-profile__tab:nth-child(5) { animation-delay: .3s; }

.hotcs-profile__tab:hover {
  color: var(--text-default);
  background: var(--transparent-5-w);
  transform: none;
  box-shadow: none;
}

.hotcs-profile__tab--active {
  color: #fff;
  background: var(--span);
  box-shadow: 0 6px 16px var(--span-10);
}

.hotcs-profile__tab--active:hover {
  color: #fff;
  background: var(--span);
  box-shadow: 0 6px 16px var(--span-10);
  transform: none;
}

.hotcs-profile__tab--active::after {
  display: none;
}

.hotcs-profile__tab--extra {
  opacity: 1;
}

.hotcs-profile__body {
  padding: 1rem 1.15rem 1.15rem;
  background: var(--bg);
  border: none;
  border-radius: 0;
  animation: hotcs-pr-enter-up .46s cubic-bezier(.25, 1, .4, 1) both;
  animation-delay: .16s;
}

.hotcs-profile__page {
  width: 100%;
}

.hotcs-profile__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.hotcs-profile__grid--summary {
  margin: 0;
}

.hotcs-profile__panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: var(--br-16);
  border: 1px solid var(--hotcs-pr-border);
  background: var(--hotcs-pr-panel);
  box-shadow: 0 12px 32px rgb(0 0 0 / 18%);
}

.hotcs-profile__panel-title {
  margin: 0 0 1.15rem;
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-7);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-default);
  line-height: 1.2;
}

.hotcs-profile__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1.25rem;
  flex: 1;
  align-content: start;
}

.hotcs-profile__stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .35rem;
  min-height: 4.25rem;
}

.hotcs-profile__stat-value {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: var(--font-weight-7);
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.hotcs-profile__stat-label {
  font-size: var(--font-size-xs, .72rem);
  font-weight: var(--font-weight-6);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.25;
  max-width: 10rem;
}

.hotcs-profile__stat--kills .hotcs-profile__stat-value { color: var(--hotcs-pr-accent); }
.hotcs-profile__stat--deaths .hotcs-profile__stat-value { color: var(--text-default); }
.hotcs-profile__stat--assists .hotcs-profile__stat-value { color: var(--hotcs-pr-blue); }
.hotcs-profile__stat--hs .hotcs-profile__stat-value { color: var(--hotcs-pr-purple); }

.hotcs-profile__panel--info .hotcs-profile__info-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  min-height: 9.5rem;
}

.hotcs-profile__info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hotcs-profile__info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.85rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--hotcs-pr-border);
}

.hotcs-profile__info-row:first-child {
  padding-top: 0;
}

.hotcs-profile__info-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hotcs-profile__info-label {
  font-size: var(--font-size-s);
  color: var(--text-secondary);
  flex-shrink: 0;
}

.hotcs-profile__info-value {
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-7);
  color: var(--text-default);
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hotcs-profile__info-value--accent { color: var(--hotcs-pr-accent); }
.hotcs-profile__info-value--blue { color: var(--hotcs-pr-blue); }

/* Profile stats sections (card grid) */

.hotcs-profile__stats-sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hotcs-profile__stats-sections > .hotcs-profile__stats-row,
.hotcs-profile__stats-sections > .hotcs-profile__stats-block {
  animation: hotcs-pr-block-in .44s cubic-bezier(.25, 1, .4, 1) both;
}

.hotcs-profile__stats-sections > .hotcs-profile__stats-block--faceit { animation-delay: .16s; }
.hotcs-profile__stats-sections > .hotcs-profile__stats-row:nth-child(2) { animation-delay: .24s; }
.hotcs-profile__stats-sections > .hotcs-profile__stats-row:nth-child(3) { animation-delay: .32s; }
.hotcs-profile__stats-sections > .hotcs-profile__stats-block:not(.hotcs-profile__stats-block--faceit) { animation-delay: .4s; }

.hotcs-profile__stats-sections .stats_column,
.hotcs-profile__stats-sections .hotcs-profile__rank-inline {
  animation: hotcs-pr-item-in .36s cubic-bezier(.25, 1, .4, 1) both;
}

.hotcs-profile__stats-sections .stats_column:nth-child(1),
.hotcs-profile__stats-sections .hotcs-profile__rank-inline { animation-delay: .26s; }
.hotcs-profile__stats-sections .stats_column:nth-child(2) { animation-delay: .3s; }
.hotcs-profile__stats-sections .stats_column:nth-child(3) { animation-delay: .34s; }
.hotcs-profile__stats-sections .stats_column:nth-child(4) { animation-delay: .38s; }
.hotcs-profile__stats-sections .stats_column:nth-child(5) { animation-delay: .42s; }
.hotcs-profile__stats-sections .stats_column:nth-child(6) { animation-delay: .46s; }
.hotcs-profile__stats-sections .stats_column:nth-child(7) { animation-delay: .5s; }
.hotcs-profile__stats-sections .stats_column:nth-child(8) { animation-delay: .54s; }

@keyframes hotcs-pr-enter-up {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hotcs-pr-block-in {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hotcs-pr-item-in {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hotcs-profile__hero,
  .hotcs-profile__avatar-col,
  .hotcs-profile__meta,
  .hotcs-profile__tabs,
  .hotcs-profile__tab,
  .hotcs-profile__body,
  .hotcs-profile__stats-sections > .hotcs-profile__stats-row,
  .hotcs-profile__stats-sections > .hotcs-profile__stats-block,
  .hotcs-profile__stats-sections .stats_column,
  .hotcs-profile__stats-sections .hotcs-profile__rank-inline {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hotcs-profile__page > .card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hotcs-profile__tab:hover,
  .hotcs-profile__tab--active:hover {
    transform: none;
  }
}

.hotcs-profile__stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  width: 100%;
}

.hotcs-profile__stats-row .hotcs-profile__stats-block {
  width: 100%;
}

.hotcs-profile__stats-row .stats_container {
  width: 100%;
}

.hotcs-profile__stats-row--rank-effectiveness {
  grid-template-columns: minmax(0, 12.5rem) minmax(0, 1fr);
  align-items: stretch;
}

.hotcs-profile__stats-row .hotcs-profile__metrics--4 .stats_column {
  flex: 1 1 calc(25% - .3rem);
  min-width: 0;
  max-width: none;
}

.hotcs-profile__stats-row .hotcs-profile__metrics--3 .stats_column {
  flex: 1 1 calc(33.333% - .3rem);
  min-width: 0;
  max-width: none;
}

.hotcs-profile__stats-row .hotcs-profile__metrics--5 .stats_column {
  flex: 1 1 calc(50% - .25rem);
  max-width: none;
}

.hotcs-profile__stats-row--rank-effectiveness .hotcs-profile__metrics--5 .stats_column {
  flex: 1 1 calc(20% - .3rem);
  min-width: 0;
  max-width: none;
}

.hotcs-profile__stats-row .hotcs-profile__metrics--8 .stats_column {
  flex: 1 1 calc(50% - .25rem);
  max-width: none;
}

.hotcs-profile__stats-block {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  min-width: 0;
}

.hotcs-profile__privileges {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.hotcs-profile__privilege-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  padding: .55rem .7rem;
  border-radius: var(--br-10);
  border: 1px solid var(--hotcs-pr-border);
  background: var(--hotcs-pr-surface);
}

.hotcs-profile__privilege-row--current {
  border-color: color-mix(in srgb, var(--span) 28%, transparent);
  background: color-mix(in srgb, var(--span) 6%, var(--hotcs-pr-surface));
}

.hotcs-profile__privilege-server {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-6);
  color: var(--text-default);
  min-width: 4.5rem;
}

.hotcs-profile__privilege-roles {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: flex-end;
  margin-left: auto;
}

.hotcs-profile__privilege-roles .hotcs-profile__badge {
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--font-size-xs, .72rem);
}

.hotcs-profile__privilege-expires {
  opacity: .78;
  font-weight: var(--font-weight-5);
  margin-left: .25rem;
}

.hotcs-profile__overview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: hotcs-pr-block-in .44s cubic-bezier(.25, 1, .4, 1) both;
}

.hotcs-profile__overview-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .65rem;
}

.hotcs-profile__overview-stat {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-width: 0;
  padding: .85rem 1rem;
  border-radius: var(--br-12);
  border: 1px solid var(--hotcs-pr-border);
  background: var(--hotcs-pr-panel);
}

.hotcs-profile__overview-stat-lbl {
  font-size: var(--font-size-xs, .72rem);
  color: var(--text-secondary);
  line-height: 1.2;
}

.hotcs-profile__overview-stat-val {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: 1.35rem;
  font-weight: var(--font-weight-7);
  color: var(--text-default);
  line-height: 1;
}

.hotcs-profile__overview-stat-val svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: var(--red, #ff4940);
  flex-shrink: 0;
}

.hotcs-profile__overview-stat-val--kd {
  font-style: normal;
}

.hotcs-profile__overview-kd-val {
  font-style: italic;
  font-size: 1.25rem;
}

.hotcs-profile__overview-stat-val--rank {
  flex-direction: row;
  align-items: center;
  gap: .5rem;
  font-style: normal;
  line-height: 1.25;
  min-width: 0;
  width: 100%;
}

.hotcs-profile__overview-rank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.hotcs-profile__overview-rank-icon img,
.hotcs-profile__overview-rank-icon .hotcs-profile__rank-icon,
.hotcs-profile__overview-rank-icon .rank,
.hotcs-profile__overview-rank-icon .custom-rank {
  width: auto !important;
  height: 1.75rem !important;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.hotcs-profile__overview-rank-title {
  font-size: 1rem;
  font-weight: var(--font-weight-7);
  color: var(--text-default);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.hotcs-profile__overview-vips {
  display: grid;
  grid-template-columns: repeat(var(--vip-cols, 5), minmax(0, 1fr));
  gap: .65rem;
  width: 100%;
  overflow: visible;
}

.hotcs-profile__stats-block--privileges {
  margin-top: .15rem;
  overflow: visible;
}

.hotcs-profile__overview-stat--vip {
  gap: .35rem;
  transition: transform .28s cubic-bezier(.33, 1, .68, 1), box-shadow .28s ease, border-color .28s ease;
}

.hotcs-profile__overview-stat--vip:hover {
  transform: scale(1.04);
  border-color: color-mix(in srgb, #fbbf24 28%, var(--hotcs-pr-border));
  box-shadow: 0 8px 20px rgb(0 0 0 / 28%);
  z-index: 1;
}

.hotcs-profile__overview-stat-val--vip {
  color: #fbbf24;
  font-size: 1.05rem;
  font-weight: var(--font-weight-7);
  line-height: 1.15;
  white-space: normal;
  word-break: break-word;
}

.hotcs-profile__overview-stat-sub {
  font-size: .68rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

.hotcs-profile__overview-empty {
  padding: 1.1rem .85rem;
  border-radius: var(--br-10);
  border: 1px dashed var(--hotcs-pr-border);
  background: var(--transparent-2-w);
  color: var(--text-secondary);
  font-size: var(--font-size-s);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .hotcs-profile__overview-stat--vip {
    transition: none;
  }

  .hotcs-profile__overview-stat--vip:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .hotcs-profile__overview-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hotcs-profile__overview-vips {
    grid-template-columns: repeat(min(var(--vip-cols, 5), 3), minmax(0, 1fr));
  }

  .hotcs-profile__overview-stat:nth-child(4),
  .hotcs-profile__overview-stat:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .hotcs-profile__overview-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hotcs-profile__overview-stat:nth-child(5) {
    grid-column: 1 / -1;
  }

  .hotcs-profile__privilege-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hotcs-profile__privilege-roles {
    justify-content: flex-start;
    margin-left: 0;
  }
}

.hotcs-profile__stats-block .title_head {
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-7);
  color: var(--text-default);
  flex-direction: row;
  gap: .55rem;
}

.hotcs-profile__stats-block .title_head__text {
  order: 1;
  flex-shrink: 0;
}

.hotcs-profile__stats-block .title_head svg {
  order: 2;
  width: .95rem;
  height: .95rem;
  fill: var(--text-custom);
  flex-shrink: 0;
}

.hotcs-profile__stats-block .title_head::before {
  order: 3;
  background-color: var(--hotcs-pr-border);
}

.hotcs-profile__stats-sections .stats_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .35rem;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.hotcs-profile__metrics--4 .stats_column {
  flex: 1 1 calc(25% - .3rem);
  min-width: 6.25rem;
  max-width: 10rem;
}

.hotcs-profile__metrics--3 .stats_column {
  flex: 1 1 calc(33.333% - .3rem);
  min-width: 6.25rem;
  max-width: 10rem;
}

.hotcs-profile__metrics--5 .stats_column {
  flex: 1 1 calc(20% - .3rem);
  min-width: 5.75rem;
  max-width: 9rem;
}

.hotcs-profile__metrics--8 .stats_column {
  flex: 1 1 calc(12.5% - .35rem);
  min-width: 6rem;
  max-width: 10rem;
}

.hotcs-profile__stats-sections .stats_column {
  flex: 1 1 6.5rem;
  min-width: 6.25rem;
  max-width: 10rem;
  gap: .2rem;
  padding: .5rem .6rem;
  border-radius: var(--br-10);
  border: 1px solid var(--hotcs-pr-border);
  background: var(--hotcs-pr-surface);
}

.hotcs-profile__stats-sections .title_column {
  font-size: var(--font-size-xs, .72rem);
  font-weight: var(--font-weight-5);
  color: var(--text-secondary);
  line-height: 1.2;
}

.hotcs-profile__rank-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
  min-height: 2.85rem;
  padding: .45rem .55rem;
  border-radius: var(--br-10);
  border: 1px solid var(--hotcs-pr-border);
  background: var(--hotcs-pr-surface);
}

.hotcs-profile__rank-inline-label {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-7);
  color: var(--text-default);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.hotcs-profile__rank-inline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.hotcs-profile__rank-inline-icon > img,
.hotcs-profile__rank-inline-icon > img.custom-rank,
.hotcs-profile__rank-inline-icon > .hotcs-profile__rank-icon {
  width: auto !important;
  height: 2rem !important;
  max-width: none !important;
  object-fit: contain;
  display: block;
}

.hotcs-profile__rank-inline-icon > .rank {
  width: 3.5rem;
  height: 1.35rem;
  transform: none;
  scale: 1;
}

.hotcs-profile__stats-block--rank {
  min-width: 0;
  max-width: 12.5rem;
}

.hotcs-profile__stats-sections .content_column {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-7);
  color: var(--text-default);
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}

@media (max-width: 1100px) {
  .hotcs-profile__metrics--5 .stats_column {
    flex: 1 1 calc(33.333% - .3rem);
    max-width: none;
  }

  .hotcs-profile__metrics--8 .stats_column {
    flex: 1 1 calc(25% - .3rem);
    max-width: none;
  }
}

@media (max-width: 900px) {
  .hotcs-profile__stats-row {
    grid-template-columns: 1fr;
  }

  .hotcs-profile__stats-row--rank-effectiveness .hotcs-profile__stats-block--rank {
    max-width: none;
  }

  .hotcs-profile__metrics--3 .stats_column,
  .hotcs-profile__metrics--4 .stats_column,
  .hotcs-profile__metrics--5 .stats_column,
  .hotcs-profile__metrics--8 .stats_column {
    flex: 1 1 calc(50% - .25rem);
    max-width: none;
  }
}

@media (max-width: 520px) {
  .hotcs-profile__stats-sections .stats_column {
    flex: 1 1 100%;
    max-width: none;
  }
}

.hotcs-profile__page > .card {
  border: 1px solid var(--hotcs-pr-border);
  border-radius: var(--br-16);
  background: var(--hotcs-pr-panel);
  box-shadow: 0 12px 32px rgb(0 0 0 / 18%);
  overflow: hidden;
  animation: hotcs-pr-block-in .44s cubic-bezier(.25, 1, .4, 1) both;
  animation-delay: .22s;
}

.hotcs-profile__page .card-header {
  border-bottom: 1px solid var(--hotcs-pr-border);
  background: var(--transparent-2-w);
}

.hotcs-profile__page .card-container {
  padding: 1rem;
}

@media (max-width: 900px) {
  .hotcs-profile__identity,
  .hotcs-profile__identity--has-tools {
    grid-template-columns: minmax(0, 7.5rem) minmax(0, 1fr);
    grid-template-areas:
      "avatar meta"
      "tools tools";
    align-items: center;
    row-gap: .85rem;
  }

  .hotcs-profile__avatar-col {
    max-width: 7.5rem;
  }

  .hotcs-profile__tools {
    max-width: none;
    align-self: stretch;
  }

  .hotcs-profile__faceit-grid--stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hotcs-profile__tabs {
    margin: .65rem .75rem;
    padding: 5px;
  }

  .hotcs-profile__grid {
    grid-template-columns: 1fr;
  }

  .hotcs-profile__panel--info .hotcs-profile__info-list {
    min-height: auto;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .hotcs-profile__hero .hotcs-profile__identity {
    padding-top: 4.25rem;
    padding-inline: .85rem;
  }

  .hotcs-profile__avatar {
    width: 5rem;
    height: 5rem;
  }

  .hotcs-profile__tabs {
    padding-inline: .85rem;
    gap: .35rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .hotcs-profile__tabs::-webkit-scrollbar {
    display: none;
  }

  .hotcs-profile__tab {
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 14px;
  }

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

  .hotcs-profile__faceit-grid--stats .hotcs-profile__faceit-cell:nth-child(5) {
    grid-column: 1 / -1;
  }

  .hotcs-profile__faceit--stats {
    flex-direction: column;
    align-items: stretch;
  }

  .hotcs-profile__faceit-level--stats {
    align-self: flex-start;
  }

  .hotcs-profile__body {
    padding: .85rem;
  }
}

.avatar_frame {
  position: absolute !important;
  transform: scale(1.18);
  border-radius: 0 !important;
  z-index: 2;
  box-shadow: none !important;
  outline: none !important;
}

.back_content {
  display: block;
  filter: grayscale(1);
  height: 130px;
  width: auto;
  background-size: cover !important;
  background-position: center !important;
  transition: var(--transition-duration);
  cursor: pointer;
  border-radius: var(--br-12);
  border: 2px solid transparent;
}

.back_content:hover {
  transition: var(--transition-duration);
  filter: none;
}

.back_content video {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-duration);
  border-radius: var(--br-12);
  position: relative !important;
}

input[name="background"]:checked+label {
  border: 2px solid var(--span);
  transition: var(--transition-duration);
  filter: none;
}

.profile_settings_inputs {
  display: flex;
  justify-items: stretch;
  flex-direction: column;
  width: 40%;
  gap: 15px;
}

.background {
  position: absolute;
  visibility: hidden;
}

.profile_settings_backs_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11em, 1fr)) !important;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 450px;
  margin: 7px 0 10px;
  width: 100%;
  grid-gap: 10px;
  gap: 10px;
}

/* NEW PROFILES STYLE */

.profile_user_card {
  overflow: hidden;
  border-radius: var(--br-16);
  padding: 5px;
}

.user_back,
.user_back video,
.user_back img {
  display: block;
  width: 100%;
  height: 8em;
  border-radius: var(--br-10) 11px 0 0;
  position: relative;
}

.user_back video,
.user_back img {
  position: absolute !important;
  object-fit: cover;
  display: block;
  width: 100%;
  border-radius: var(--br-10) 11px 0 0;
}

.user_settings {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.user_settings svg {
  fill: white;
  width: 17px;
  height: 17px;
  opacity: 0.5;
  transition: var(--transition-duration);
}

.user_settings:hover svg {
  opacity: 1;
}

.user_socials {
  width: max-content;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  background: var(--bg-modal);
  border-radius: var(--br-6);
}

.header_user_info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 100%;
  padding: 15px;
  position: relative;
  justify-content: flex-end;
}

.social__button-profile {
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--br-24);
  cursor: pointer;
  background-color: transparent;
}

.social__button-profile svg {
  width: auto;
  height: 20px;
  transition: var(--transition-duration);
}

.header_user_info img {
  position: absolute;
  left: 6%;
  height: 80px;
  width: 80px;
  border-radius: var(--br-4);
  bottom: -25%;
  outline: 5px solid var(--card);
  box-shadow: inset 5em 5em var(--card), 0px 0px 0px 4px var(--card);
}

.user_balance {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  background: var(--money-bg);
  border-radius: var(--br-8);
  padding: 8px 10px;
  cursor: pointer;
  justify-content: center;
}

.user_sec_block {
  display: flex !important;
  flex-direction: row;
  height: max-content !important;
  justify-content: flex-end;
  padding: 15px 20px;
  gap: .5rem;
}

.user_sec_block img {
  width: 60px;
  height: auto;
  cursor: help;
}

.balance_info {
  display: flex;
}

.balance_count {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-5);
  color: var(--money);
}

.user_balance svg {
  width: 14px;
  height: auto;
  fill: var(--money);
}

.user_menu_short {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: space-between;
}

.user_menu_short a {
  background: var(--span-low);
  border-radius: var(--br-8);
  padding: 10px;
  transition: var(--transition-duration);
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user_menu_short a svg {
  width: 20px;
  height: auto;
  fill: var(--span);
}

.a_active {
  background: var(--span) !important;
}

.a_active svg {
  fill: var(--text-default) !important;
}

.user_menu_short a:hover {
  background: var(--span-middle);
}

.user_third_block {
  height: 100% !important;
  background: var(--transparent-2-w);
  padding: 20px;
  margin: 0 10px 10px;
  display: flex !important;
  flex-direction: column;
  border-radius: var(--br-12);
  gap: 15px;
}

.user_nickname {
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-7);
  color: var(--text-default);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.user_status_server {
  color: var(--green);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-4);
}

.user_status {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.status_title {
  font-size: var(--font-size-xs);
  opacity: 0.5;
  color: var(--text-custom);
}

.status_content {
  color: var(--text-custom);
  font-size: var(--font-size-m);
}

.user_badge {
  display: flex;
  width: max-content;
  padding: 5px 10px 5px 8px;
  border-radius: var(--br-24);
  background: var(--transparent-2-w);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-6);
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.user_badge span {
  display: flex;
  height: 12px;
  width: 12px;
  background: var(--span);
  border-radius: var(--br-24);
}

.user_roles {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex-direction: row;
}

.badge_player {
  color: var(--text-custom);
  background: rgb(152 158 202 / 20%);
}

.badge_player_circle {
  background: var(--text-custom) !important;
}

.badge_admin {
  color: var(--span);
  background: rgb(126 157 255 / 10%);
}

.badge_admin_circle {
  background: var(--span) !important;
}

.badge_vip {
  color: #ffd12d;
  background: rgb(255 209 45 / 10%);
}

.badge_vip_circle {
  background: #ffd12d !important;
}

.badge_top-1 {
  color: var(--top-one);
  background: rgb(255 219 92 / 20%);
}

.badge_top-2 {
  color: var(--top-two);
  background: rgb(191 224 255 / 20%);
}

.badge_top-3 {
  color: var(--top-three);
  background: rgb(248 167 133 / 20%);
}

.badge_top_circle-1 {
  background: var(--top-one) !important;
}

.badge_top_circle-2 {
  background: var(--top-two) !important;
}

.badge_top_circle-3 {
  background: var(--top-three) !important;
}

.badge_banned {
  color: #bf0d0d;
  background: rgb(191 13 13 / 20%);
}

.badge_banned_circle {
  background: #bf0d0d !important;
}

.title_head {
  display: flex;
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-5);
  color: var(--text-custom);
  align-items: center;
  position: relative;
  gap: .5rem;
  width: 100%;
  flex-direction: row-reverse;
}

.title_head svg {
  width: .8rem;
  height: .8rem;
  fill: currentColor;
}

.title_head:before {
  content: '';
  flex: 1;
  /* Линии займут все доступное пространство */
  height: 1px;
  background-color: var(--transparent-5-w);
}

@media (max-width: 768.9px) {

  .country_container,
  .faceit_container,
  .adm_container,
  .steam_container,
  .stats_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .3rem;
    background: var(--transparent-2-w);
    padding: .3rem;
    border-radius: var(--br-12);
    margin: .3rem 0;
    flex-wrap: wrap;
  }

  .country_column,
  .faceit_column,
  .adm_column,
  .steam_column,
  .stats_column {
    min-width: 9rem;
  }
}

@media (min-width: 769px) {

  .country_container,
  .faceit_container,
  .adm_container,
  .steam_container,
  .stats_container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .3rem;
    background: var(--transparent-2-w);
    padding: .3rem;
    border-radius: var(--br-12);
    margin: .3rem 0;
  }
}

.country_column,
.faceit_column,
.adm_column,
.steam_column,
.stats_column {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  align-items: flex-start;
  flex: 1;
  background-color: var(--transparent-2-w);
  padding: .5rem;
  border-radius: var(--br-10);
  border: 1px solid var(--transparent-2-w);
}

.title_column {
  font-size: var(--font-size-s);
  color: var(--text-secondary);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .content_column {
    display: flex;
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-5);
    align-items: center;
    gap: 5px;
    color: var(--text-custom);
    white-space: nowrap;
  }
}

@media (min-width: 769px) {
  .content_column {
    display: flex;
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-7);
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: var(--text-custom);
    white-space: nowrap;
  }
}

.content_column img {
  width: 19px;
  height: auto;
}

.hotcs-profile__rank-inline-icon img {
  width: auto !important;
  height: 2rem !important;
  max-width: none !important;
}

.content_column svg {
  width: 16px;
  height: auto;
  fill: var(--text-custom);
}

@media (max-width: 1299px) {
  .general_info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

@media (min-width: 1300px) {
  .general_info {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
}

.tables_info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fill_blocks {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.adm_warn_content {
  background: rgb(246 185 73 / 10%);
  width: 100%;
  border-radius: var(--br-8);
  padding: 10px;
  color: var(--orange);
  font-size: var(--font-size-m);
}

.bans_comms_header li span,
.bans_comms_content li span,
.transaction_header li span,
.transaction_content li span {
  color: var(--text-custom);
}

.transaction_content li span img {
  height: 22px;
  width: auto;
}

.comms_svg svg,
.trans_svg svg {
  fill: var(--text-custom);
  opacity: 0.5;
  width: 14px;
  height: 14px;
}

@media (max-width: 768.9px) {

  .bans_comms_content li,
  .transaction_content li {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    background-color: var(--input-form);
    border-radius: var(--br-8);
    user-select: none;
    justify-items: start;
    width: 100%;
    padding: 10px;
    font-size: var(--font-size-s);
    align-items: center;
  }

  .bans_comms_header li,
  .transaction_header li {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    background-color: var(--transparent-2-w);
    border-radius: var(--br-8);
    user-select: none;
    justify-items: start;
    width: 100%;
    padding: 10px 20px;
    font-size: var(--font-size-s);
  }

  .hide_this {
    display: none !important;
  }
}

@media (min-width: 769px) {

  .bans_comms_content li,
  .transaction_content li {
    display: grid;
    grid-template-columns: 0.5fr 2fr 0.8fr 0.5fr 0.7fr;
    background-color: var(--input-form);
    border-radius: var(--br-8);
    user-select: none;
    justify-items: start;
    width: 100%;
    padding: 10px;
    font-size: var(--font-size-s);
    align-items: center;
  }

  .bans_comms_header li,
  .transaction_header li {
    display: grid;
    grid-template-columns: 0.5fr 2fr 0.8fr 0.5fr 0.7fr;
    background-color: var(--transparent-2-w);
    border-radius: var(--br-8);
    user-select: none;
    justify-items: start;
    width: 100%;
    padding: 10px 20px;
    font-size: var(--font-size-s);
  }

  .hide_this {
    display: block;
  }
}

.bans_comms_container,
.transaction_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bans_comms_content ul,
.transaction_content ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.exp_badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: rgb(152 158 202 / 20%);
  border-radius: var(--br-24);
  color: var(--text-custom);
}

.perm {
  color: var(--red) !important;
  background: rgb(255 73 64 / 20%) !important;
}

.expired {
  text-decoration: line-through;
}

.unbanned {
  color: var(--green) !important;
  background: rgb(100 206 130 / 20%) !important;
}

.empty_blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-family: var(--font-family-1);
  font-weight: var(--font-weight-7);
  border-radius: var(--br-12);
  width: 100%;
  border: 1px solid var(--transparent-2-w);
  height: 187px;
  color: var(--text-custom);
}

.friends_list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(14em, 1fr)) !important;
  grid-gap: 0.8rem;
  gap: 0.5rem;
  overflow: initial;
  align-content: flex-start;
  align-items: center;
}

.friend_card img {
  width: 30px;
  height: 30px;
  border-radius: var(--br-7);
}

.friend_card {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  background: var(--input-form);
  border: 1px solid var(--transparent-4-w);
  padding: 3px 5px;
  border-radius: var(--br-10);
  cursor: pointer;
  transition: var(--transition-duration);
}

.friend_info {
  display: flex;
  flex-direction: column;
}

.friend_nick {
  font-size: var(--font-size-m);
  color: var(--span);
}

.friend_lc {
  font-size: var(--font-size-xs);
  opacity: 0.5;
  color: var(--text-custom);
}

.user_online_status {
  position: relative;
  display: none;
}

.user_online_status::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-radius: var(--br-50);
  background: var(--green);
}

.empty_friends {
  height: 486px;
  font-size: var(--font-size-xl);
  font-family: var(--font-family-1);
  font-weight: var(--font-weight-7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-custom);
}

.settings_container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}

.settings_inp_inf {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.profile_settings_backs {
  width: 60%;
}

.online_pos {
  position: absolute;
  left: 15px;
  top: 20px;
}

.adm_info_string {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--transparent-2-w);
  padding: 10px;
  border-radius: var(--br-6);
}

.adm_info_title {
  font-size: var(--font-size-m);
  color: var(--text-custom);
  opacity: 0.7;
}

.adm_info_content {
  display: flex;
  font-size: var(--font-size-m);
  color: var(--text-default);
  font-weight: var(--font-weight-6);
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
  transition: all 0.25s;
}

.adm_content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.adm_info_content span {
  display: flex;
  flex-direction: row;
  gap: 5px;
  color: var(--green);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-6);
}

.adm_info_content span svg {
  width: 10px;
  height: auto;
  fill: var(--text-default);
  opacity: 0.5;
  transition: all 0.25s;
}

.bans_count {
  cursor: help;
}

.bans_count:hover svg {
  opacity: 1;
}

.admin_bdg {
  color: var(--span);
  background: var(--span-low);
  padding: 3px 10px;
  border-radius: var(--br-24);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-5);
}

.hide-ip {
  filter: blur(5px);
  transition: var(--transition-duration);
}

.hide-ip:hover {
  filter: none;
}

.user__head-detalis {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.discord svg {
  fill: var(--brand-discord-color);
}

.telegram svg {
  fill: var(--brand-telegram-color);
}

.vkontakte svg {
  fill: var(--brand-vkontakte-color);
}

.hotcs-profile__pagination {
  display: flex;
  justify-content: center;
  padding: .85rem .75rem .25rem;
}

.hotcs-profile__pagination.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: center;
}

.hotcs-profile__pagination .button_pagination {
  min-width: 2rem;
  height: 2rem;
  padding: 0 .55rem;
  border-radius: var(--br-8);
  border: 1px solid var(--hotcs-pn-border, var(--transparent-10-w));
  background: var(--hotcs-pn-surface, var(--card));
  color: var(--text-custom);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hotcs-profile__pagination .button_pagination:hover {
  color: var(--text-default);
  border-color: color-mix(in srgb, var(--hotcs-pn-accent, var(--span)) 28%, var(--hotcs-pn-border, var(--transparent-10-w)));
  background: color-mix(in srgb, var(--hotcs-pn-accent, var(--span)) 8%, var(--hotcs-pn-surface, var(--card)));
}

.hotcs-profile__pagination .button_pagination.active {
  color: var(--text-default);
  background: var(--hotcs-pn-accent, var(--span));
  border-color: transparent;
  box-shadow: 0 0 16px var(--hotcs-pn-accent-glow, color-mix(in srgb, var(--span) 35%, transparent));
}

.hotcs-profile__pagination .button_pagination svg {
  width: .85rem;
  height: .85rem;
  fill: currentColor;
}