:root {
  --bg: #05060b;
  --bg2: #090b13;
  --surface: rgba(16, 18, 28, .86);
  --surface2: rgba(24, 27, 40, .78);
  --surface3: rgba(255, 255, 255, .055);
  --line: rgba(255, 255, 255, .105);
  --line2: rgba(253, 190, 0, .34);
  --text: #fff9ec;
  --soft: #b4b3bd;
  --muted: #777b8d;
  --accent: #fdbe00;
  --accent2: #ffdd67;
  --danger: #ff5771;
  --ok: #45ec8d;
  --shadow: rgba(0, 0, 0, .58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Unbounded", "Montserrat Alternates", "Bahnschrift", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 19% 22%, rgba(253, 190, 0, .18), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(255, 221, 103, .12), transparent 24rem),
    radial-gradient(circle at 66% 74%, rgba(253, 190, 0, .08), transparent 32rem),
    linear-gradient(135deg, var(--bg), var(--bg2) 56%, #050912);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  opacity: .32;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

body::after {
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(253, 190, 0, .055) 44.2% 44.7%, transparent 45%),
    radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, .42) 100%);
}

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

button {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 17px;
  color: var(--text);
  background: rgba(255, 255, 255, .052);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}

button:hover,
button.active {
  transform: translateY(-2px);
  border-color: rgba(253, 190, 0, .76);
  color: #171100;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 18px 48px rgba(253, 190, 0, .22);
}

button:disabled {
  opacity: .38;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.toast {
  position: fixed;
  z-index: 50;
  top: 24px;
  left: 50%;
  width: min(540px, calc(100% - 28px));
  transform: translate(-50%, -18px) scale(.98);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  padding: 15px 18px;
  color: #171100;
  background: linear-gradient(135deg, var(--accent), #ffe9a4);
  box-shadow: 0 24px 80px rgba(253, 190, 0, .34);
  font-weight: 950;
  text-align: center;
  transition: opacity .2s ease, transform .2s ease;
}

.toast.show {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
}

.site-nav {
  position: sticky;
  z-index: 30;
  top: 18px;
  width: min(1340px, calc(100% - 36px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .105);
  border-radius: 26px;
  padding: 12px;
  background: rgba(8, 10, 17, .72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .34);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 6px 12px 6px 6px;
  border-radius: 20px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  overflow: hidden;
  color: #171100;
  background: transparent;
  box-shadow: none;
  font-size: 15px;
  font-weight: 950;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand-name {
  color: var(--accent);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.045em;
}

.brand-copy small {
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
  transition: color .18s ease, background .18s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .07);
}

.nav-account {
  position: fixed;
  z-index: 24;
  top: 104px;
  left: max(24px, calc((100vw - 1340px) / 2));
  width: 116px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(253, 190, 0, .35);
  border-radius: 22px;
  padding: 12px 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(253, 190, 0, .23), transparent 5.4rem),
    linear-gradient(180deg, rgba(18, 18, 28, .88), rgba(12, 13, 22, .82));
  box-shadow: 0 18px 50px rgba(253, 190, 0, .12), 0 20px 70px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .075);
  backdrop-filter: blur(18px);
}

.nav-account-head {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(253, 190, 0, .28);
  border-radius: 15px;
  padding: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035)),
    rgba(253, 190, 0, .08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.nav-account-head:disabled {
  opacity: 1;
  cursor: default;
}

.nav-account-head:not(:disabled):hover {
  transform: translateY(-2px) scale(1.03);
}

.nav-account-head img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 11px;
  object-fit: cover;
  image-rendering: pixelated;
  background: rgba(255, 255, 255, .08);
}

.nav-account strong {
  width: 100%;
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-account button:not(.nav-account-head) {
  min-width: 72px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--accent);
  background: rgba(253, 190, 0, .08);
  font-size: 13px;
  font-weight: 950;
}

.nav-account button:not(.nav-account-head):hover {
  color: #171100;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  background: rgba(255, 255, 255, .055);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(253, 190, 0, .6);
  filter: brightness(1.1);
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrap {
  position: relative;
  z-index: 2;
  width: min(1340px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 54px;
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 5% auto auto 5%;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(253, 190, 0, .14);
  filter: blur(70px);
}

.hero-grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .72fr);
  align-items: center;
  gap: clamp(30px, 6vw, 78px);
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: -24px;
  bottom: -28px;
  width: 190px;
  height: 190px;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(253, 190, 0, .18), transparent),
    rgba(255, 255, 255, .035);
  transform: rotate(-10deg);
  z-index: -1;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 26px rgba(253, 190, 0, .8);
}

.hero-copy h1,
.player-head h1 {
  margin: 18px 0 0;
  max-width: 780px;
  font-size: clamp(60px, 8.2vw, 124px);
  line-height: .82;
  letter-spacing: -.075em;
}

.hero-copy h1 strong,
.player-head h1 {
  display: block;
  color: var(--accent);
  text-shadow: 0 0 50px rgba(253, 190, 0, .21);
}

.hero-copy h1 span {
  position: relative;
  width: fit-content;
  display: block;
  color: var(--text);
}

.hero-copy h1 span::after {
  content: "";
  display: block;
  width: clamp(86px, 10vw, 138px);
  height: 6px;
  margin: 20px 0 0 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(253, 190, 0, .24));
  box-shadow: 0 0 26px rgba(253, 190, 0, .34);
}

.hero-text {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--soft);
  font-size: clamp(16px, 1.42vw, 20px);
  line-height: 1.55;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
}

.copy-ip {
  color: #171100;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 18px 56px rgba(253, 190, 0, .24);
}

.copy-ip:hover {
  color: #171100;
  background: linear-gradient(135deg, #ffd44e, #fff0a8);
}

.copy-ip.copied {
  animation: copiedPulse .7s ease 2;
  box-shadow: 0 0 0 7px rgba(253, 190, 0, .16), 0 24px 78px rgba(253, 190, 0, .38);
}

@keyframes copiedPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.045); }
  100% { transform: scale(1); }
}

.copy-status {
  color: var(--soft);
  font-size: 14px;
  font-weight: 900;
}

.hero-stats {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-stats::before {
  content: "";
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(253, 190, 0, .12);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .04), transparent);
  transform: rotate(1deg);
  z-index: -1;
}

.stat-row,
.compact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card,
.card,
.panel,
.social-section,
.recent-section {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 34%),
    var(--surface);
  box-shadow: 0 28px 90px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(20px);
}

.stat-card,
.card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 26px;
  padding: 25px;
}

.stat-card::after,
.card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(253, 190, 0, .08);
  filter: blur(3px);
}

.stat-card-main {
  min-height: 184px;
  border-color: var(--line2);
  background:
    radial-gradient(circle at 88% 22%, rgba(253, 190, 0, .32), transparent 15rem),
    linear-gradient(135deg, rgba(253, 190, 0, .19), rgba(19, 22, 32, .92));
}

.stat-card span,
.card span {
  display: block;
  color: var(--soft);
  font-size: 14px;
  font-weight: 850;
}

.stat-card b,
.card b {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 16px;
  color: var(--text);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
}

.stat-card-main b,
.accent-card b {
  color: var(--accent);
}

.panel {
  margin-top: 20px;
  border-radius: 30px;
  overflow: hidden;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
}

.panel-top h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.055em;
}

.panel-top h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(253, 190, 0, .22));
  box-shadow: 0 0 22px rgba(253, 190, 0, .28);
}

.refresh-status {
  width: min(290px, 100%);
  display: grid;
  gap: 10px;
  border: 1px solid rgba(253, 190, 0, .2);
  border-radius: 20px;
  padding: 13px 15px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
  background:
    radial-gradient(circle at 5% 10%, rgba(253, 190, 0, .2), transparent 8rem),
    rgba(255, 255, 255, .045);
}

.refresh-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .095);
}

.refresh-track progress {
  display: block;
  width: 100%;
  height: 100%;
  appearance: none;
  border: 0;
  border-radius: inherit;
  background: transparent;
}

.refresh-track progress::-webkit-progress-bar {
  border-radius: inherit;
  background: transparent;
}

.refresh-track progress::-webkit-progress-value {
  border-radius: inherit;
  background: linear-gradient(90deg, #8b6400, var(--accent), #fff0ad);
  box-shadow: 0 0 26px rgba(253, 190, 0, .42);
  transition: width .08s linear;
}

.refresh-track progress::-moz-progress-bar {
  border-radius: inherit;
  background: linear-gradient(90deg, #8b6400, var(--accent), #fff0ad);
  box-shadow: 0 0 26px rgba(253, 190, 0, .42);
  transition: width .08s linear;
}

.table {
  overflow-x: auto;
}

.row {
  width: 100%;
  min-width: 860px;
  display: grid;
  grid-template-columns: 74px 1.62fr repeat(5, 1fr);
  gap: 12px;
  align-items: center;
  padding: 17px 24px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  border-radius: 0;
  text-align: left;
  background: transparent;
}

.row.head {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
  background: rgba(255, 255, 255, .035);
}

.row.staff {
  cursor: pointer;
}

.row.staff:hover {
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(253, 190, 0, .13), transparent 62%),
    rgba(255, 255, 255, .025);
  transform: none;
  box-shadow: inset 4px 0 0 var(--accent);
}

.place {
  color: var(--accent);
  font-weight: 950;
}

.name strong {
  display: block;
  font-weight: 950;
}

.name small,
.player-group,
.recent-card em {
  width: fit-content;
  margin-top: 6px;
  display: inline-flex;
  border: 1px solid rgba(253, 190, 0, .27);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--accent);
  background: rgba(253, 190, 0, .09);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.player-group:empty {
  display: none;
}

.copy-buffer {
  position: fixed;
  left: -9999px;
  top: -9999px;
  opacity: 0;
}

.staff-pagination {
  justify-content: flex-end;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

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

.pager span {
  color: var(--soft);
  font-weight: 900;
}

.empty {
  padding: 42px;
  color: var(--soft);
  text-align: center;
}

.social-section,
.recent-section {
  margin-top: 34px;
  border-radius: 30px;
  padding: 28px;
}

.social-section h2,
.recent-section h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1;
  letter-spacing: -.055em;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.social-card {
  position: relative;
  min-height: 156px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 26px;
  padding: 20px;
  color: #fff;
  overflow: hidden;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.08;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  filter: brightness(1.08);
  border-color: rgba(255, 255, 255, .24);
}

.social-card img {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  object-fit: cover;
}

.social-card-vk { background: radial-gradient(circle at 90% 8%, rgba(255, 255, 255, .28), transparent 7rem), linear-gradient(135deg, #087fff, #005fda); }
.social-card-telegram { background: radial-gradient(circle at 90% 8%, rgba(255, 255, 255, .28), transparent 7rem), linear-gradient(135deg, #37b9ef, #168fc8); }
.social-card-discord { background: radial-gradient(circle at 90% 8%, rgba(255, 255, 255, .22), transparent 7rem), linear-gradient(135deg, #6870ff, #4e58df); }
.social-card-tiktok { background: radial-gradient(circle at 90% 8%, rgba(255, 255, 255, .18), transparent 7rem), linear-gradient(135deg, #151515, #030303); }

.recent-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.recent-grid {
  display: flex;
  gap: 16px;
}

.recent-grid.scrolling {
  width: max-content;
  animation: recentScroll 42s linear infinite;
}

.recent-marquee:hover .recent-grid.scrolling {
  animation-play-state: paused;
}

@keyframes recentScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.recent-card {
  width: min(315px, 72vw);
  min-height: 238px;
  flex: 0 0 min(315px, 72vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .095);
  border-radius: 26px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(253, 190, 0, .12), transparent 9rem),
    rgba(255, 255, 255, .04);
}

.recent-card img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .34));
}

.recent-card b {
  font-size: 25px;
  letter-spacing: -.045em;
}

.recent-card span {
  margin-top: 6px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 850;
}

.recent-card small {
  margin-top: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.recent-empty {
  grid-column: 1 / -1;
}

.hero-small {
  min-height: auto;
  display: block;
  padding-top: 36px;
}

.player-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 16% 10%, rgba(253, 190, 0, .21), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: 0 26px 90px var(--shadow);
}

.player-head h1 {
  font-size: clamp(48px, 6.4vw, 96px);
}

.back-link {
  border: 1px solid rgba(253, 190, 0, .5);
  border-radius: 18px;
  padding: 13px 18px;
  color: #171100;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-weight: 950;
  white-space: nowrap;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.35fr;
  gap: 16px;
  margin-top: 20px;
}

.compact-cards .card {
  min-height: 126px;
}

.wide-card b {
  font-size: clamp(28px, 3vw, 42px);
}

.punishments {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.punishment {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, .095);
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(253, 190, 0, .075), transparent 42%),
    rgba(255, 255, 255, .035);
}

.punishment-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 15px;
  color: #171100;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-weight: 950;
}

.punishment-type.mute {
  color: var(--text);
  background: rgba(255, 255, 255, .12);
}

.punishment-content b {
  display: block;
  font-size: 20px;
}

.punishment-content p {
  margin: 8px 0 6px;
  color: var(--soft);
  line-height: 1.45;
}

.punishment-content small {
  color: var(--accent);
  font-weight: 900;
}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%, rgba(253, 190, 0, .09), transparent 18rem),
    rgba(5, 6, 11, .68);
}

.footer-inner {
  width: min(1340px, calc(100% - 36px));
  min-height: 210px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  border-bottom: 1px dashed rgba(255, 255, 255, .08);
}

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

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.footer-brand b,
.footer-links b {
  display: block;
  margin-bottom: 6px;
}

.footer-brand span,
.footer-links a {
  color: var(--soft);
  font-weight: 800;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent);
}

.made-by {
  min-height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, .025);
  font-weight: 850;
}

.made-by b {
  color: var(--accent);
}

.login-wrap {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(460px, 100%);
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 8%, rgba(253, 190, 0, .2), transparent 14rem),
    rgba(16, 18, 28, .9);
  box-shadow: 0 28px 90px var(--shadow);
}

.login-card h1 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(34px, 7vw, 56px);
  line-height: .9;
  letter-spacing: -.055em;
  text-align: center;
}

.login-card p,
.login-card small {
  margin: 0;
  color: var(--soft);
  line-height: 1.45;
  font-weight: 850;
}

.login-card label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.login-card input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, .055);
  font: inherit;
  outline: none;
}

.login-card input:focus {
  border-color: rgba(253, 190, 0, .76);
  box-shadow: 0 0 0 4px rgba(253, 190, 0, .12);
}

.login-card input::placeholder {
  color: rgba(180, 179, 189, .76);
}

.anonymous-button {
  display: inline-flex;
  justify-content: center;
  margin-top: 4px;
  border: 1px solid rgba(253, 190, 0, .24);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--accent);
  background: rgba(253, 190, 0, .075);
  font-weight: 900;
  text-align: center;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.anonymous-button:hover {
  border-color: rgba(253, 190, 0, .72);
  color: #171100;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.login-card small {
  min-height: 20px;
  text-align: center;
}

.login-card small[data-state="wait"] {
  color: var(--soft);
}

.login-card small[data-state="success"] {
  color: var(--ok);
}

.login-card small[data-state="error"] {
  color: var(--danger);
}

@media (max-width: 1080px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .social-grid,
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-card {
    grid-column: 1 / -1;
  }

  .panel-top,
  .player-head,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-inner {
    justify-content: center;
    min-height: 260px;
    padding: 44px 0;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .site-nav,
  .wrap,
  .footer-inner {
    width: min(100% - 24px, 1340px);
  }

  .site-nav {
    top: 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 22px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .hero-copy h1,
  .player-head h1 {
    font-size: 52px;
  }

  .filters,
  .hero-actions,
  .pager {
    width: 100%;
  }

  .filters button,
  .hero-actions button,
  .pager button {
    flex: 1;
  }

  .stat-row,
  .compact-cards,
  .social-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .nav-account {
    top: 96px;
    left: 18px;
    width: 92px;
    min-height: 98px;
    gap: 5px;
    border-radius: 19px;
    padding: 8px;
  }

  .nav-account-head {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .nav-account strong {
    font-size: 11px;
  }

  .nav-account button:not(.nav-account-head) {
    min-width: 58px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .panel-top,
  .social-section,
  .recent-section {
    padding: 22px;
  }

  .social-card {
    min-height: 126px;
  }

  .punishment {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .nav-actions .social-icon {
    display: none;
  }
}
