:root {
  --bg: #070a0f;
  --bg-2: #0f1723;
  --paper: #ece7df;
  --paper-2: #f6f1e9;
  --ink: #101924;
  --ink-soft: rgba(16, 25, 36, 0.76);
  --text: #edf2f7;
  --muted: rgba(237, 242, 247, 0.72);
  --muted-2: rgba(237, 242, 247, 0.48);
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(16, 25, 36, 0.12);
  --accent: #2f8fff;
  --accent-2: #67beff;
  --cyan: #8cecff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 32px;
  --radius-sm: 18px;
  --container: 1320px;
}

.admin-wiki-page {
  display: grid;
  gap: 22px;
}

.admin-wiki-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 20%, rgba(47, 143, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(14, 24, 38, 0.94), rgba(8, 14, 22, 0.98));
  box-shadow: var(--shadow);
}

.admin-wiki-hero h2 {
  margin: 8px 0 10px;
  color: #f4f8ff;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.admin-wiki-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(237, 244, 255, 0.72);
  line-height: 1.65;
}

.admin-wiki-tabs {
  padding: 0 4px;
}

.admin-wiki-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 320px) auto;
  gap: 14px;
  align-items: end;
}

.admin-wiki-search {
  display: grid;
  gap: 8px;
  color: rgba(237, 244, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-wiki-search input,
.admin-wiki-search select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(7, 12, 20, 0.86);
  color: #edf4ff;
  padding: 0 16px;
  outline: none;
}

.admin-wiki-search input:focus,
.admin-wiki-search select:focus {
  border-color: rgba(47, 143, 255, 0.68);
  box-shadow: 0 0 0 4px rgba(47, 143, 255, 0.12);
}

.admin-wiki-count {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 8px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 143, 255, 0.22), rgba(255, 255, 255, 0.04));
  color: #edf4ff;
}

.admin-wiki-count strong {
  font-size: 1.25rem;
  line-height: 1;
}

.admin-wiki-count span {
  color: rgba(237, 244, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-wiki-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.admin-wiki-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 26, 40, 0.96), rgba(8, 13, 21, 0.98));
}

.admin-wiki-thumb {
  height: 138px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.admin-wiki-thumb img {
  max-width: 88%;
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.38));
}

.admin-wiki-thumb.is-generated span,
.admin-wiki-table-thumb.is-generated span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(47, 143, 255, 0.18);
  color: #8fc8ff;
  font-weight: 950;
}

.admin-wiki-card-copy {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.admin-wiki-card-copy em {
  color: var(--accent);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-wiki-card-copy strong {
  color: #f5f8ff;
  font-size: 1.05rem;
}

.admin-wiki-card-copy code,
.admin-wiki-card-copy span,
.admin-wiki-table code {
  color: rgba(237, 244, 255, 0.72);
}

.admin-wiki-table-card {
  overflow: hidden;
}

.admin-wiki-table-thumb {
  width: 82px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-wiki-table-thumb img {
  max-width: 74px;
  max-height: 48px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .admin-wiki-toolbar {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .admin-wiki-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .admin-wiki-grid {
    grid-template-columns: 1fr;
  }

  .admin-wiki-hero h2 {
    font-size: clamp(2.4rem, 16vw, 4rem);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 143, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #0b1017 0%, #05070b 100%);
}
body.is-locked {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
select {
  appearance: none;
  color-scheme: dark;
  min-height: 44px;
  padding: 0 44px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(237, 242, 247, 0.78) 50%) calc(100% - 21px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(237, 242, 247, 0.78) 50%, transparent 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #0c131d;
  color: #edf2f7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}
select:hover {
  border-color: rgba(103, 190, 255, 0.3);
}
select:focus {
  outline: none;
  border-color: rgba(103, 190, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(47, 143, 255, 0.13);
}
select option,
select optgroup {
  background: #0c131d;
  color: #edf2f7;
}
img { max-width: 100%; display: block; }

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.container { width: min(calc(100% - 36px), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 36px), 760px); margin: 0 auto; }
.narrow-wide { width: min(calc(100% - 36px), 980px); margin: 0 auto; }
.section { padding: 72px 0; }
.light-section {
  background: var(--paper);
  color: var(--ink);
}
.page-light {
  background: var(--paper);
  color: var(--ink);
}
.no-top-padding { padding-top: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 11, 14, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-gamebar {
  min-height: 80px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  flex: 1 1 auto;
}
.topbar-mobile-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}
.topbar-mobile-shell[hidden] {
  display: flex;
}
.topbar-mobile-head,
.topbar-burger,
.topbar-mobile-overlay,
.topbar-mobile-close {
  display: none;
}
.topbar-burger,
.topbar-mobile-close {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f3efe9;
  cursor: pointer;
}
.topbar-burger {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  padding: 0;
  place-items: center;
  gap: 4px;
  flex: 0 0 auto;
}
.topbar-burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.topbar-mobile-head {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-mobile-head strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f3efe9;
}
.topbar-mobile-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  padding: 0;
  font-size: 1.7rem;
  line-height: 1;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-gamebar .brand-copy {
  display: none;
}
.brand-mark {
  width: 82px;
  height: 42px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0a1018;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  overflow: hidden;
}
.brand-mark.has-image {
  background: transparent;
  border: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}
.brand-copy {
  display: grid;
  line-height: 1;
}
.brand-copy strong,
h1, h2, h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.brand-copy small { color: var(--muted-2); }

.nav,
.topbar-actions,
.hero-actions,
.community-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nav-gamebar {
  gap: 4px;
}
.nav-dropdown {
  position: relative;
}
.nav-link,
.primary-link,
.ghost-link,
.danger-link,
.social-link {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.nav-link {
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid transparent;
}
.nav-link.active,
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-link-gamebar {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.055em;
}
.nav-link-gamebar.active {
  background: rgba(255, 255, 255, 0.1);
}
.nav-caret {
  margin-left: 6px;
  font-size: 0.6rem;
  opacity: 0.7;
}
.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  padding: 10px 0;
  background: #2a2a2d;
  border-top: 4px solid var(--accent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 80;
}
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu-link {
  display: block;
  padding: 14px 18px;
  color: rgba(255,255,255,0.84);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-menu-link:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.primary-link {
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(47, 143, 255, 0.26);
}
.ghost-link,
.social-link {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}
.danger-link {
  border: 1px solid rgba(47, 143, 255, 0.2);
  background: rgba(47, 143, 255, 0.1);
  color: #d8ebff;
}
.topbar-actions-gamebar {
  gap: 10px;
  flex-wrap: nowrap;
}
.utility-chip,
.account-chip {
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.utility-chip {
  min-width: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.utility-chip-dropdown,
.account-chip-button {
  cursor: pointer;
  appearance: none;
}
.account-chip {
  gap: 10px;
  padding: 0 14px 0 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.account-chip-button {
  min-height: 44px;
}
.account-chip-button:hover,
.utility-chip-dropdown:hover {
  background: rgba(255, 255, 255, 0.08);
}
.account-chip-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
}
.account-chip-name {
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.account-dropdown {
  margin-left: 2px;
}
.nav-menu-account {
  left: auto;
  right: 0;
  min-width: 220px;
}
.gamebar-login {
  min-width: 110px;
}
.dark-social-link {
  color: var(--ink);
  border-color: rgba(16, 25, 36, 0.12);
  background: rgba(16, 25, 36, 0.04);
}
.small { min-height: 36px; padding: 0 14px; }
.nav-link:hover,
.primary-link:hover,
.ghost-link:hover,
.danger-link:hover,
.social-link:hover { transform: translateY(-1px); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow.dark { color: rgba(16, 25, 36, 0.7); }
.kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.lead,
p,
.section-copy,
.faq-answer {
  line-height: 1.75;
  color: var(--muted);
}
.dark-copy,
.news-magazine-copy p,
.creator-profile-card p,
.article-prose,
.faq-answer-dark {
  color: var(--ink-soft);
}

.hero-band {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media,
.hero-stage-image,
.showcase-visual,
.feature-art,
.community-shot,
.article-stage-image,
.editorial-card-image,
.news-magazine-image,
.creator-showcase-avatar,
.partner-logo-mark {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(120deg, rgba(80, 28, 24, 0.88), rgba(17, 26, 40, 0.78)),
    linear-gradient(180deg, #291614 0%, #0a1018 100%);
}
.hero-media.has-image {
  background-image:
    linear-gradient(180deg, rgba(7, 10, 15, 0.18), rgba(7, 10, 15, 0.8)),
    url("");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.18), rgba(7, 10, 15, 0.82)),
    linear-gradient(105deg, rgba(47, 143, 255, 0.1), transparent 30%, transparent 68%, rgba(140, 236, 255, 0.08));
}
.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 28px;
  align-items: end;
  padding: 120px 0 64px;
}
.hero-shell-centered {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  padding: 110px 0 80px;
}
.hero-story {
  max-width: 760px;
}
.hero-story-centered {
  width: 100%;
  max-width: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  max-width: 320px;
  margin: 18px 0 10px;
}
.hero-story-centered .hero-logo {
  max-width: 360px;
  margin: 0 auto 18px;
}
.hero-tagline {
  width: 100%;
  margin: 0 auto;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.hero-story h1 {
  font-size: clamp(4rem, 11vw, 8.2rem);
  line-height: 0.92;
  margin: 12px 0 18px;
  max-width: 10ch;
}
.hero-story-centered h1 {
  margin-left: auto;
  margin-right: auto;
}
.hero-story .lead {
  max-width: 62ch;
  font-size: 1.08rem;
}
.hero-play-button {
  min-width: 280px;
  min-height: 76px;
  margin-top: 28px;
  padding: 0 34px;
  border-radius: 0;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #2f8fff, #4aa7ff 58%, #67beff);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.18),
    0 0 0 7px rgba(47, 143, 255, 0.14),
    0 24px 48px rgba(47, 143, 255, 0.34);
  position: relative;
  overflow: hidden;
}
.hero-play-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.26) 46%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 260ms ease;
}
.hero-play-button:hover::before {
  transform: translateX(120%);
}
.hero-rail {
  display: grid;
  gap: 18px;
}
.hero-rail-card,
.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 15, 24, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.hero-rail-card {
  border-radius: 24px;
  padding: 24px;
}
.hero-rail-card h2 {
  font-size: 2.2rem;
  line-height: 0.98;
  margin: 10px 0 14px;
}
.hero-stat-strip {
  display: grid;
  gap: 12px;
}
.metric-card {
  padding: 18px;
  border-radius: 18px;
}
.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.editorial-section,
.feature-columns,
.partner-band,
.showcase-section,
.community-section {
  position: relative;
}
.news-spotlight-section {
  position: relative;
  padding: 84px 0 78px;
  background:
    linear-gradient(180deg, #0a0d12 0%, #0b1017 100%);
}
.community-banner-section {
  padding: 0 0 62px;
  background: linear-gradient(180deg, #0b1017 0%, #0d1218 100%);
}
.community-banner-section .container {
  width: min(calc(100% - 36px), var(--container));
  position: relative;
}
.community-banner {
  position: relative;
  min-height: 340px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background:
    linear-gradient(135deg, #e7e0d6, #dcd2c6);
  box-shadow: var(--shadow);
}
.community-banner.has-image {
  background-size: cover;
  background-position: right center;
}
.community-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(76, 161, 255, 0.96) 0%, rgba(76, 161, 255, 0.9) 34%, rgba(76, 161, 255, 0.5) 50%, rgba(76, 161, 255, 0.08) 66%, rgba(76, 161, 255, 0) 82%);
}
.community-banner-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 42px 0 42px;
  margin-left: clamp(52px, calc((100vw - min(calc(100% - 36px), var(--container))) / 2 + 84px), 320px);
  color: var(--ink);
}
.community-banner-background-word {
  position: absolute;
  left: -6px;
  top: 6px;
  z-index: -1;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(6.2rem, 12vw, 10rem);
  line-height: 0.82;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(16, 25, 36, 0.07);
  text-transform: uppercase;
  pointer-events: none;
}
.community-banner-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.86;
  max-width: 6.5ch;
}
.community-banner-copy p {
  max-width: 38ch;
  color: rgba(16, 25, 36, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}
.community-banner-button {
  margin-top: 16px;
  min-width: 196px;
  min-height: 56px;
  border-radius: 0;
  letter-spacing: 0.08em;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.section-head h1,
.section-head h2,
.showcase-copy h2,
.community-copy h2,
.article-stage-copy h1,
.feature-copy h2,
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.9;
  margin: 12px 0;
}
.editorial-head h2 { max-width: 14ch; }
.spotlight-head {
  align-items: center;
  margin-bottom: 34px;
}
.spotlight-head h2 {
  margin: 0;
  color: #f7f3eb;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.92;
}
.spotlight-link {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.88);
}
.spotlight-link:hover {
  color: #fff;
}
.text-link {
  font-weight: 800;
  color: var(--cyan);
}
.dark-link { color: var(--ink); }

.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.spotlight-card {
  display: grid;
  gap: 16px;
  color: inherit;
}
.spotlight-card-image {
  min-height: 270px;
  display: block;
  background:
    linear-gradient(135deg, #2a3444, #151b26);
}
.spotlight-card-image.has-image {
  box-shadow: var(--shadow);
}
.spotlight-card-body h3 {
  margin: 10px 0 12px;
  font-size: 2rem;
  line-height: 1.08;
  color: #f7f3eb;
}
.spotlight-card:hover .spotlight-card-body h3 {
  color: #ffffff;
}
.spotlight-card-body p {
  margin: 0;
  color: rgba(247, 243, 235, 0.72);
}
.spotlight-card:hover .spotlight-card-image {
  transform: translateY(-2px);
}
.spotlight-card-image {
  transition: transform 180ms ease;
}
.spotlight-meta {
  color: rgba(247, 243, 235, 0.56);
}
.editorial-card {
  background: transparent;
}
.editorial-card-image {
  min-height: 280px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, #372120, #192232);
}
.editorial-card-image.has-image {
  box-shadow: var(--shadow);
}
.editorial-card-featured .editorial-card-image {
  min-height: 430px;
}
.editorial-card-body h3 {
  font-size: 2.25rem;
  line-height: 1;
  margin: 10px 0 12px;
  color: var(--ink);
}
.meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted-2);
}
.dark-meta { color: rgba(16, 25, 36, 0.54); }

.showcase-section,
.community-section,
.partner-band {
  padding: 88px 0;
}
.showcase-grid,
.community-grid,
.feature-split,
.news-magazine-grid,
.creator-showcase-grid,
.creator-wall,
.partner-logo-grid,
.article-stage-wrap,
.detail-layout,
.account-grid,
.admin-layout,
.admin-link-grid,
.stats-grid,
.form-grid {
  display: grid;
  gap: 24px;
}
.showcase-grid,
.community-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
}
.showcase-grid {
  column-gap: 44px;
}
.showcase-grid-swapped {
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
}
.showcase-copy h2,
.community-copy h2 { max-width: 10ch; }
.showcase-copy h2 {
  max-width: none;
  color: #ffffff;
  white-space: nowrap;
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
}
.showcase-copy p {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.82);
}
.showcase-button {
  margin-top: 18px;
  min-width: 210px;
  min-height: 60px;
  border-radius: 0;
  letter-spacing: 0.08em;
}
.showcase-visual-shell,
.showcase-visual,
.showcase-video,
.community-shot {
  min-height: 360px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.showcase-visual-shell {
  width: min(100%, 640px);
  justify-self: end;
}
.showcase-visual-shell-left {
  justify-self: start;
}
.showcase-visual-shell,
.showcase-visual,
.community-shot {
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.24), rgba(7, 10, 15, 0.3)),
    linear-gradient(180deg, #101a27, #1d2937);
  position: relative;
  overflow: hidden;
}
.showcase-visual.has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.showcase-section {
  background: linear-gradient(180deg, #0f141c 0%, #0c1118 100%);
}
.showcase-copy {
  padding: 8px 0;
}
.showcase-video {
  width: 100%;
  object-fit: cover;
  display: block;
  background: #101822;
  position: relative;
  z-index: 1;
}
.showcase-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.24), rgba(7, 10, 15, 0.3)),
    linear-gradient(180deg, #101a27, #1d2937);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.showcase-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 10, 15, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-promo-section {
  padding: 0 0 88px;
  background: linear-gradient(180deg, #0c1118 0%, #0a0d12 100%);
}

.home-promo-stage {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background: rgba(10, 14, 21, 0.94);
}

.home-promo-slides {
  position: relative;
  min-height: 200px;
}

.home-promo-card {
  position: absolute;
  inset: 0;
  padding: 24px 24px 46px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  background: linear-gradient(135deg, #1f6bff 0%, #4dd7ff 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home-promo-card.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-promo-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 9, 15, 0.04), rgba(5, 9, 15, 0.68)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 36%);
  pointer-events: none;
}

.home-promo-card-content,
.home-promo-dots {
  position: relative;
  z-index: 1;
}

.home-promo-card-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 18px;
  row-gap: 8px;
}

.home-promo-card.is-no-button .home-promo-card-content {
  grid-template-columns: minmax(0, 1fr);
}

.home-promo-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
}

.home-promo-text {
  color: rgba(255, 255, 255, 0.92);
  max-width: 58ch;
  line-height: 1.55;
}

.home-promo-button {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 16, 24, 0.08);
  color: #0b1118;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.home-promo-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
}

.home-promo-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease;
}

.home-promo-dot.is-active {
  background: rgba(255, 255, 255, 0.98);
  transform: scale(1.18);
}

.site-infobox-toggle-wrap {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
}

.site-infobox-toggle {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 18px;
  background: rgba(10, 14, 21, 0.92);
  color: var(--info-accent, #5ce7ff);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.site-infobox-toggle.is-active,
.site-infobox-toggle:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 14px 38px rgba(0, 0, 0, 0.3), 0 0 26px var(--info-glow, rgba(92, 231, 255, 0.2));
}

.site-infobox-toggle svg {
  width: 28px;
  height: 28px;
  display: block;
  color: var(--info-accent, #5ce7ff);
  fill: currentColor;
}

.site-infobox-panel {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 119;
  width: min(360px, calc(100vw - 32px));
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(11, 17, 26, 0.96);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.site-infobox-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 30%),
    linear-gradient(180deg, var(--info-glow, rgba(92, 231, 255, 0.18)), rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.site-infobox-close,
.site-infobox-icon,
.site-infobox-panel strong,
.site-infobox-panel p,
.site-infobox-link {
  position: relative;
  z-index: 1;
}

.site-infobox-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.76);
  font-size: 1.4rem;
  cursor: pointer;
}

.site-infobox-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--info-accent, #5ce7ff);
  box-shadow: inset 0 0 24px rgba(255,255,255,0.03), 0 0 24px var(--info-glow, rgba(92, 231, 255, 0.16));
}

.site-infobox-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: var(--info-accent, #5ce7ff);
  fill: currentColor;
}

.site-infobox-panel strong {
  display: block;
  margin-top: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.site-infobox-panel p {
  margin: 10px 0 0;
  color: rgba(237, 242, 247, 0.78);
  line-height: 1.6;
}

.site-infobox-link {
  margin-top: 14px;
}

.feature-split {
  grid-template-columns: 1fr;
}
.feature-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  background: var(--paper-2);
  color: var(--ink);
  overflow: hidden;
}
.feature-panel.reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
}
.feature-copy {
  padding: 56px 40px;
}
.feature-copy h2 {
  margin-top: 8px;
  max-width: 11ch;
}
.feature-art {
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.08), rgba(16, 25, 36, 0.08)),
    linear-gradient(135deg, #d6e0e8, #bfc8d2);
}

.creator-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.creator-showcase-card,
.partner-logo-card,
.creator-profile-card,
.faq-item-light,
.article-sidebar,
.article-prose,
.news-magazine-card,
.auth-panel,
.account-hero,
.panel {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.auth-register-user {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  margin: 22px 0 24px;
  border-radius: 22px;
  background: rgba(16, 25, 36, 0.04);
}
.auth-register-user strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
}
.auth-register-user span,
.auth-register-note,
.field-help {
  display: block;
  color: rgba(16, 25, 36, 0.64);
  line-height: 1.65;
}
.auth-register-note {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(47, 143, 255, 0.08);
}
.auth-register-form .button-row {
  margin-top: 10px;
}
.auth-screen-body {
  min-height: 100vh;
  background: #080d14;
}
.auth-screen {
  position: relative;
  min-height: 100vh;
  padding: 28px 34px 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(47, 143, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #111845 0%, #1b1255 40%, #0a0f18 100%);
}
.auth-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.22), rgba(5, 8, 15, 0.48));
}
.auth-screen.has-image {
  background-position: center;
  background-size: cover;
}
.auth-screen-brand,
.auth-screen-footer,
.auth-stage-card {
  position: relative;
  z-index: 1;
}
.auth-screen-brand {
  position: absolute;
  top: 34px;
  left: 34px;
  display: inline-flex;
  align-items: center;
}
.auth-screen-brand-mark {
  width: 156px;
  min-height: 56px;
  display: inline-grid;
  place-items: center;
}
.auth-screen-brand-mark.has-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.auth-stage-card {
  width: min(100%, 570px);
  padding: 54px 48px 42px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  color: #101924;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
}
.auth-stage-card-login {
  max-width: 520px;
}
.auth-stage-copy {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}
.auth-stage-kicker {
  color: rgba(16, 25, 36, 0.48);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.auth-stage-copy h1 {
  margin: 0;
  color: #11161f;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
}
.auth-stage-copy p {
  margin: 0;
  color: rgba(16, 25, 36, 0.68);
  line-height: 1.7;
}
.auth-discord-button {
  width: 100%;
  min-height: 68px;
  margin-top: 32px;
  padding: 0 24px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #5865f2 0%, #7289ff 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 22px 42px rgba(88, 101, 242, 0.26);
}
.auth-discord-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
}
.auth-discord-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.auth-stage-note {
  margin-top: 18px;
  text-align: center;
  color: rgba(16, 25, 36, 0.66);
}
.auth-register-panel {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.auth-register-field {
  display: grid;
  gap: 10px;
}
.auth-register-field > span {
  color: rgba(16, 25, 36, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.auth-register-field input {
  width: 100%;
  min-height: 68px;
  border: 0;
  border-radius: 0;
  background: #f3f4f6;
  color: #11161f;
  padding: 0 22px;
  font-size: 1.55rem;
  font-weight: 700;
}
.auth-register-field input::placeholder {
  color: rgba(16, 25, 36, 0.36);
  font-size: 1rem;
  font-weight: 600;
}
.auth-register-input-wrap {
  position: relative;
}
.auth-register-field.is-invalid input,
.auth-register-field-creator.is-invalid input {
  border: 2px solid #ff4d5f;
  background: rgba(255, 77, 95, 0.06);
  padding-right: 64px;
}
.auth-register-warning {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #ff4d5f;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: help;
}
.auth-register-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #151a23;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease, visibility 150ms ease;
}
.auth-register-warning:hover .auth-register-tooltip,
.auth-register-warning:focus-visible .auth-register-tooltip {
  opacity: 1;
  visibility: visible;
}
.auth-register-submit-row {
  display: grid;
  justify-content: center;
  margin-top: 10px;
}
.auth-register-submit {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 2px solid rgba(16, 25, 36, 0.12);
  background: #fff;
  color: #6a737d;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.auth-register-submit svg {
  width: 34px;
  height: 34px;
  display: block;
}
.auth-screen-footer {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.auth-screen-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.auth-screen-footer-links a,
.auth-screen-language {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.auth-screen-language {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}
.auth-stage-card-error {
  max-width: 620px;
}
.auth-error-title {
  color: #101924 !important;
  font-size: 1.4rem;
  font-weight: 800;
}
.auth-error-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: rgba(16, 25, 36, 0.54);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.auth-error-actions {
  justify-content: center;
  margin-top: 26px;
}

.site-loading-screen {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(47, 143, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #0d1432 0%, #130d2d 42%, #060a11 100%);
  transition: opacity 320ms ease, visibility 320ms ease;
}
.site-loading-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.22), rgba(5, 8, 15, 0.52));
}
.site-loading-screen.has-image {
  background-position: center;
  background-size: cover;
}
.site-loading-screen.is-leaving {
  opacity: 0;
  visibility: hidden;
}
.site-loading-screen-inner,
.site-loading-footer {
  position: relative;
  z-index: 1;
}
.site-loading-screen-inner {
  display: grid;
  justify-items: center;
  gap: 28px;
}
.site-loading-screen-logo {
  width: min(260px, 48vw);
  min-height: 72px;
  display: inline-grid;
  place-items: center;
}
.site-loading-screen-logo.has-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.site-loading-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-loading-dots span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
  animation: site-loading-bounce 1.05s infinite ease-in-out;
}
.site-loading-dots span:nth-child(2) {
  animation-delay: 0.12s;
}
.site-loading-dots span:nth-child(3) {
  animation-delay: 0.24s;
}
.site-loading-footer {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 26px;
}

@keyframes site-loading-bounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.36;
  }
  40% {
    transform: translateY(-8px);
    opacity: 1;
  }
}
.creator-showcase-card {
  padding: 24px;
}
.creator-showcase-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.18), rgba(16, 25, 36, 0.12)),
    #d6e1ea;
}
.creator-showcase-avatar.large {
  width: 124px;
  height: 124px;
  aspect-ratio: auto;
  flex: 0 0 auto;
}
.creator-showcase-card h3,
.creator-profile-card h2,
.partner-logo-card strong {
  color: var(--ink);
  margin: 10px 0 12px;
}
.creator-showcase-card h3,
.creator-profile-card h2 { font-size: 2rem; }
.creator-wall {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.creator-profile-card {
  padding: 26px;
}
.creator-profile-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.partner-logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.partner-logo-card {
  padding: 22px;
  text-align: center;
}
.partner-logo-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.18), rgba(16, 25, 36, 0.12)),
    #d6e1ea;
}

.page-hero {
  padding: 72px 0 28px;
}
.compact-hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.creator-page-head,
.news-magazine-grid {
  align-items: start;
}
.creator-page-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 30px;
}
.page-hero h1 {
  max-width: 12ch;
  color: var(--ink);
}

.news-index-page {
  background: linear-gradient(180deg, #081018 0%, #0a1119 100%);
  color: #edf2f7;
}
.news-index-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.38), rgba(7, 10, 15, 0.82)),
    linear-gradient(105deg, rgba(47, 143, 255, 0.18), transparent 34%, transparent 72%, rgba(103, 190, 255, 0.12)),
    url("/assets/media/news-hero.jpg");
  background-size: cover;
  background-position: center;
}
.news-index-hero-inner {
  padding: 42px 0 38px;
  text-align: center;
}
.news-index-kicker {
  margin-bottom: 14px;
  color: rgba(237, 242, 247, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.news-index-hero h1 {
  margin: 0;
  color: #f3efe9;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.88;
}
.news-index-body {
  padding: 64px 0 88px;
  background: linear-gradient(180deg, #09111a 0%, #0c141d 100%);
}
.news-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.news-card {
  min-width: 0;
}
.news-card-link {
  display: grid;
  gap: 18px;
  color: inherit;
}
.news-card-image {
  min-height: 270px;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.22), rgba(16, 25, 36, 0.12)),
    #d6e1ea;
  box-shadow: var(--shadow);
}
.news-card-copy {
  display: grid;
  gap: 12px;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(237, 242, 247, 0.58);
  font-size: 0.96rem;
  font-weight: 700;
}
.news-card-category {
  color: var(--accent);
  text-transform: uppercase;
}
.news-card h2 {
  margin: 0;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  line-height: 1.06;
  color: #f1ede7;
}
.news-card p {
  margin: 0;
  color: rgba(237, 242, 247, 0.74);
  line-height: 1.6;
}
.news-card:hover .news-card-image {
  transform: translateY(-2px);
}
.news-card:hover h2 {
  color: #8cc9ff;
}
.news-card-image,
.news-card h2 {
  transition: transform 180ms ease, color 180ms ease;
}

.news-article-page {
  background: linear-gradient(180deg, #070d13 0%, #0b1118 100%);
  color: #edf2f7;
}
.news-article-stage {
  padding: 0;
  background: linear-gradient(180deg, #090d12 0%, #090d12 100%);
}
.news-article-stage-frame {
  position: relative;
  padding: 28px 0 0;
}
.news-article-stage-frame::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 0;
  border-left: 72px solid #090d12;
  border-top: 72px solid transparent;
  z-index: 1;
}
.news-article-stage-image-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  margin: 0 auto;
}
.news-article-kicker {
  text-align: center;
  margin-bottom: 18px;
}
.news-article-stage-image {
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.18), rgba(16, 25, 36, 0.12)),
    #223042;
  box-shadow: var(--shadow);
}
.news-article-body {
  background: linear-gradient(180deg, #0b1118 0%, #0d141d 100%);
  padding: 0 0 96px;
}
.news-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(0, 280px);
  justify-content: center;
  gap: 48px;
  align-items: start;
}
.news-article-main {
  padding-top: 24px;
}
.news-article-meta {
  color: rgba(237, 242, 247, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-article-main h1 {
  margin: 4px 0 16px;
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.6vw, 5.2rem);
  line-height: 0.94;
  color: #f1ede7;
}
.news-article-subtitle {
  margin: 0 0 28px;
  max-width: 26ch;
  color: rgba(237, 242, 247, 0.84);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.22;
}
.news-article-prose {
  max-width: 760px;
  color: rgba(237, 242, 247, 0.76);
  line-height: 1.78;
}
.news-article-prose p {
  color: rgba(237, 242, 247, 0.76);
}
.news-article-prose a {
  color: var(--accent);
}
.news-article-sidebar {
  padding-top: 132px;
  display: grid;
  gap: 14px;
}
.news-article-sidebar-link {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #edf2f7;
}
.news-article-sidebar-link strong {
  font-size: 1rem;
  line-height: 1.35;
}
.news-article-sidebar-link span {
  color: rgba(237, 242, 247, 0.54);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.faq-page {
  background: linear-gradient(180deg, #071018 0%, #0b131c 100%);
  color: #edf2f7;
}
.faq-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.38), rgba(7, 10, 15, 0.82)),
    linear-gradient(110deg, rgba(47, 143, 255, 0.16), transparent 34%, transparent 72%, rgba(103, 190, 255, 0.12)),
    url("/assets/media/faq-hero.jpg");
  background-size: cover;
  background-position: center;
}
.faq-hero-inner {
  padding: 42px 0 36px;
  text-align: center;
}
.faq-hero h1 {
  margin: 0;
  color: #f3efe9;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.9;
}
.faq-hero-copy {
  width: min(100%, 680px);
  margin: 18px auto 0;
  color: rgba(237, 242, 247, 0.78);
}
.faq-body {
  padding: 56px 0 90px;
  background: linear-gradient(180deg, #09111a 0%, #0d141d 100%);
}
.faq-list-battlewar {
  gap: 12px;
}
.faq-item-battlewar {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #101822;
  color: #edf2f7;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}
.faq-question-battlewar {
  min-height: 72px;
  padding: 0 22px;
  color: #f3efe9;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.faq-toggle-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 143, 255, 0.14);
  color: #8cc9ff;
  font-size: 1.05rem;
  line-height: 1;
  flex: 0 0 auto;
}
.faq-answer-battlewar {
  padding: 0 22px 18px;
  color: rgba(237, 242, 247, 0.76);
  font-size: 0.98rem;
}
.faq-answer-battlewar p,
.faq-answer-battlewar li {
  color: rgba(237, 242, 247, 0.76);
}
.faq-item-battlewar.is-open .faq-toggle-mark {
  background: rgba(47, 143, 255, 0.22);
  color: #d7ecff;
}

.creator-directory-page {
  background: linear-gradient(180deg, #071018 0%, #0b131c 100%);
  color: #edf2f7;
}
.directory-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.42), rgba(7, 10, 15, 0.84)),
    linear-gradient(110deg, rgba(47, 143, 255, 0.16), transparent 34%, transparent 72%, rgba(103, 190, 255, 0.12)),
    url("/assets/media/creators-hero.jpg");
  background-size: cover;
  background-position: center;
}
.directory-hero-partners {
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.42), rgba(7, 10, 15, 0.84)),
    linear-gradient(110deg, rgba(47, 143, 255, 0.16), transparent 34%, transparent 72%, rgba(103, 190, 255, 0.12)),
    url("/assets/media/partners-hero.jpg");
  background-size: cover;
  background-position: center;
}
.directory-hero-inner {
  padding: 42px 0 34px;
  text-align: center;
}
.directory-hero h1 {
  margin: 0;
  color: #f3efe9;
  font-size: clamp(4rem, 8vw, 5.8rem);
  line-height: 0.9;
}
.directory-hero-copy {
  width: min(100%, 700px);
  margin: 18px auto 0;
  color: rgba(237, 242, 247, 0.78);
}
.directory-body {
  padding: 56px 0 92px;
  background: linear-gradient(180deg, #09111a 0%, #0d141d 100%);
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.directory-card {
  min-width: 0;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #101822;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  text-align: center;
}
.directory-avatar {
  width: 100%;
  aspect-ratio: 0.84 / 1;
  border-radius: 18px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.18), rgba(16, 25, 36, 0.12)),
    #1c2734;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.directory-tagline {
  display: block;
  margin-bottom: 8px;
  color: #8cc9ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.directory-card h2 {
  margin: 0 0 18px;
  color: #f3efe9;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 1;
}
.directory-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.directory-social {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #edf2f7;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.directory-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.directory-social:hover {
  transform: translateY(-1px);
  background: rgba(47, 143, 255, 0.12);
  border-color: rgba(47, 143, 255, 0.3);
  color: #8cc9ff;
}

.account-page {
  background: linear-gradient(180deg, #071018 0%, #0b131c 100%);
  color: #edf2f7;
}
.account-stage {
  padding: 54px 0 0;
  background: linear-gradient(180deg, #09111a 0%, #0c141d 100%);
}
.account-summary-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    #101822;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
}
.account-summary-avatar {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.24), rgba(16, 25, 36, 0.2)),
    #18222f;
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
}
.account-summary-kicker {
  color: rgba(237, 242, 247, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.account-summary-copy h1 {
  margin: 8px 0 6px;
  color: #f3efe9;
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 0.92;
}
.account-summary-copy p {
  margin: 0;
  color: #8cc9ff;
  font-weight: 700;
}
.account-body {
  padding: 28px 0 92px;
  background: linear-gradient(180deg, #0b131c 0%, #0d141d 100%);
}
.account-tabs {
  display: grid;
  gap: 18px;
}
.account-tab-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.account-tab-button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(237, 242, 247, 0.7);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.account-tab-button.is-active {
  background: rgba(47, 143, 255, 0.14);
  border-color: rgba(47, 143, 255, 0.28);
  color: #d7ecff;
}
.account-tab-panel {
  display: none;
}
.account-tab-panel.is-active {
  display: block;
}
.account-overview-grid,
.account-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.account-value-card,
.account-stat-card,
.account-leaderboard-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    #101822;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}
.account-value-card span,
.account-stat-card span {
  display: block;
  color: rgba(237, 242, 247, 0.62);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.account-value-card strong,
.account-stat-card strong {
  display: block;
  margin-top: 8px;
  color: #f3efe9;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1;
}
.account-currency-card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.account-currency-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.22), rgba(16, 25, 36, 0.18)),
    #18222f;
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
}
.account-currency-icon.has-image {
  background-color: transparent;
  border: 0;
}
.account-leaderboard-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.account-leaderboard-head h2 {
  margin: 0;
  color: #f3efe9;
  font-size: 2.2rem;
}
.account-leaderboard-head span {
  color: rgba(237, 242, 247, 0.58);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.account-leaderboard-list {
  display: grid;
}
.account-leaderboard-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 70px 150px;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(237, 242, 247, 0.72);
}
.account-leaderboard-row:first-child {
  border-top: 0;
}
.account-leaderboard-row strong {
  color: #f3efe9;
  font-size: 1rem;
}
.account-leaderboard-rank {
  color: #8cc9ff;
  font-weight: 800;
}
.account-leaderboard-score-label {
  color: rgba(237, 242, 247, 0.54);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.account-leaderboard-score-value {
  color: #f3efe9;
  font-weight: 800;
  font-size: 1rem;
}
.account-leaderboard-row.is-current {
  margin: 6px -8px 0;
  padding: 16px 8px;
  border-radius: 16px;
  background: rgba(47, 143, 255, 0.1);
}
.account-creator-hero,
.account-creator-grid,
.account-creator-metrics {
  display: grid;
  gap: 18px;
}
.account-creator-hero {
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.12), rgba(255, 255, 255, 0.02)),
    #101822;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}
.account-creator-hero h2 {
  margin: 8px 0 8px;
  color: #f3efe9;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.94;
}
.account-creator-hero p,
.account-creator-copy {
  margin: 0;
  color: rgba(237, 242, 247, 0.72);
}
.account-creator-code {
  min-height: 132px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(47, 143, 255, 0.14);
  color: #d7ecff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 4.8vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.account-affiliate-hero {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 240px);
  background:
    radial-gradient(circle at 86% 20%, rgba(80, 178, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(47, 143, 255, 0.18), rgba(255, 255, 255, 0.025)),
    #0b1520;
}
.account-affiliate-hero::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(47, 143, 255, 0.16);
  filter: blur(12px);
}
.account-affiliate-hero > * {
  position: relative;
}
.account-affiliate-code {
  min-width: 0;
  min-height: 120px;
  padding: 16px;
  border: 1px solid rgba(140, 201, 255, 0.22);
  box-shadow: inset 0 0 34px rgba(47, 143, 255, 0.12);
}
.account-affiliate-code span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  font-size: clamp(1.85rem, 3.1vw, 3.6rem);
  line-height: 0.92;
}
.account-affiliate-metrics .account-stat-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(11, 21, 32, 0.94);
}
.account-affiliate-progress-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(9, 17, 26, 0.96);
}
.account-affiliate-progress-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(47, 143, 255, 0.12);
  filter: blur(6px);
}
.account-affiliate-progress-card > * {
  position: relative;
  z-index: 1;
}
.account-affiliate-progress-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}
.account-affiliate-progress-meta strong {
  color: #f3efe9;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.86;
}
.account-affiliate-progress-meta span,
.account-affiliate-progress-rewards span {
  color: rgba(237, 242, 247, 0.64);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}
.account-affiliate-progress-track {
  position: relative;
  height: 22px;
  margin-top: 18px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(140, 201, 255, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(2, 8, 15, 0.82);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.36);
}
.account-affiliate-progress-track div {
  height: 100%;
  min-width: 8px;
  border-radius: inherit;
  background:
    linear-gradient(90deg, #2f8fff 0%, #8cc9ff 65%, #d7ecff 100%);
  box-shadow: 0 0 24px rgba(47, 143, 255, 0.56);
}
.account-affiliate-progress-rewards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.account-affiliate-progress-rewards span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.account-creator-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}
.account-creator-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  margin-bottom: 18px;
}
.account-creator-share {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.account-creator-share strong {
  display: block;
  color: #f3efe9;
  margin-bottom: 4px;
}
.account-creator-share span {
  color: rgba(237, 242, 247, 0.68);
  line-height: 1.65;
}
.account-creator-share-input input {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #edf2f7;
  padding: 0 16px;
}
.account-affiliate-code-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.account-affiliate-code-field {
  display: grid;
  gap: 8px;
}
.account-affiliate-code-field span {
  color: rgba(237, 242, 247, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.account-affiliate-code-field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(140, 201, 255, 0.18);
  border-radius: 16px;
  background: rgba(4, 10, 18, 0.76);
  color: #f3efe9;
  padding: 0 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.account-affiliate-code-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.account-affiliate-cost {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid rgba(140, 201, 255, 0.18);
  border-radius: 14px;
  background: rgba(47, 143, 255, 0.1);
  color: #d7ecff;
}
.account-affiliate-cost strong {
  font-size: 1.25rem;
}
.account-affiliate-cost span,
.account-affiliate-code-status {
  color: rgba(237, 242, 247, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.account-affiliate-code-status.is-error {
  color: #ff7b7b;
}
.account-affiliate-code-status.is-success {
  color: #9fd4ff;
}
.account-affiliate-code-status.is-warning {
  color: #ffd27a;
}
.account-creator-percent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.account-creator-percent-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}
.account-creator-percent-card span,
.account-creator-wallet-sub,
.account-creator-history-main span,
.account-creator-history-side span,
.account-creator-empty {
  display: block;
  color: rgba(237, 242, 247, 0.58);
}
.account-creator-percent-card strong,
.account-creator-wallet-value,
.account-creator-history-side strong {
  display: block;
  color: #f3efe9;
}
.account-creator-wallet-value {
  margin-top: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 0.9;
}
.account-creator-wallet-sub {
  margin-top: 6px;
}
.account-creator-history {
  display: grid;
}
.account-creator-history-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.account-creator-history-row:first-child {
  border-top: 0;
}
.account-creator-history-main strong {
  display: block;
  color: #f3efe9;
}
.account-creator-history-side {
  text-align: right;
}

.admin-dashboard-page {
  background: linear-gradient(180deg, #071018 0%, #0b131c 100%);
  color: #edf2f7;
  padding: 54px 0 92px;
}
.admin-dashboard-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}
.admin-sidebar,
.admin-dashboard-main {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    #101822;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
}
.admin-sidebar {
  padding: 24px;
  align-self: start;
  position: sticky;
  top: 108px;
}
.admin-sidebar-mobile-toggle,
.admin-sidebar-mobile-overlay,
.admin-sidebar-mobile-head {
  display: none;
}
.admin-sidebar-mobile-toggle,
.admin-sidebar-mobile-close {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #edf2f7;
  cursor: pointer;
}
.admin-sidebar-mobile-toggle {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  margin-bottom: 18px;
}
.admin-sidebar-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.admin-sidebar-mobile-toggle strong,
.admin-sidebar-mobile-head strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.admin-sidebar-mobile-head {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.admin-sidebar-mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  padding: 0;
  font-size: 1.7rem;
  line-height: 1;
}
.admin-sidebar-kicker {
  color: rgba(237, 242, 247, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.admin-sidebar h1 {
  margin: 10px 0 18px;
  color: #f3efe9;
  font-size: 3rem;
  line-height: 0.92;
}
.admin-sidebar-nav {
  display: grid;
  gap: 10px;
}
.admin-sidebar-group {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}
.admin-sidebar-group:first-child {
  border-top: 0;
  padding-top: 0;
}
.admin-sidebar-group summary {
  list-style: none;
  cursor: pointer;
  color: rgba(237, 242, 247, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-sidebar-group summary::-webkit-details-marker {
  display: none;
}
.admin-sidebar-group summary::after {
  content: "+";
  font-size: 1rem;
  color: rgba(237, 242, 247, 0.4);
}
.admin-sidebar-group[open] summary::after {
  content: "-";
}
.admin-sidebar-group-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.admin-sidebar-link {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  color: rgba(237, 242, 247, 0.72);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.admin-sidebar-link.is-active,
.admin-sidebar-link:hover {
  background: rgba(47, 143, 255, 0.12);
  color: #d7ecff;
}
.admin-dashboard-main {
  padding: 26px;
  display: grid;
  gap: 22px;
}
.admin-dashboard-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.admin-dashboard-head h2 {
  margin: 8px 0 0;
  color: #f3efe9;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.92;
}
.admin-dashboard-head p {
  max-width: 380px;
  color: rgba(237, 242, 247, 0.7);
}
.admin-dashboard-metrics,
.admin-dashboard-panels {
  display: grid;
  gap: 18px;
}
.admin-dashboard-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.admin-dashboard-metric,
.admin-dashboard-panel {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.admin-dashboard-metric span,
.admin-dashboard-panel span {
  display: block;
  color: rgba(237, 242, 247, 0.62);
}
.admin-dashboard-metric strong,
.admin-dashboard-panel strong {
  display: block;
  margin-top: 10px;
  color: #f3efe9;
}
.admin-dashboard-metric strong {
  font-size: 2rem;
}
.admin-dashboard-metric-warning {
  border-color: rgba(255, 171, 71, 0.2);
  background: linear-gradient(180deg, rgba(255, 171, 71, 0.09), rgba(255, 171, 71, 0.035));
}
.admin-dashboard-metric-warning strong {
  color: #ffd48a;
}
.admin-dashboard-panels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.admin-dashboard-panel strong {
  font-size: 1.3rem;
}
.admin-dashboard-panel:hover {
  background: rgba(47, 143, 255, 0.08);
  border-color: rgba(47, 143, 255, 0.22);
}
.admin-dashboard-topline {
  display: grid;
  gap: 18px;
}
.admin-dashboard-online-card {
  width: 100%;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(68, 176, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(47, 143, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(10, 21, 34, 0.96), rgba(14, 25, 38, 0.96));
  color: #f3efe9;
  text-align: left;
}
.admin-dashboard-online-copy {
  display: grid;
  gap: 4px;
}
.admin-dashboard-online-copy span,
.admin-dashboard-online-copy small {
  color: rgba(237, 242, 247, 0.72);
}
.admin-dashboard-online-copy strong {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.95;
}
.admin-dashboard-metric-status strong.is-positive {
  color: #87f4a0;
  font-size: 1.15rem;
}
.admin-dashboard-metric-status strong.is-negative {
  color: #ff8f8f;
  font-size: 1.15rem;
}

.admin-workspace-page {
  background: linear-gradient(180deg, #071018 0%, #0b131c 100%);
  color: #edf2f7;
  padding: 54px 0 92px;
}
.admin-workspace-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}
.admin-workspace-main {
  display: grid;
  gap: 22px;
}
.admin-workspace-head,
.admin-content-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    #101822;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
}
.admin-workspace-head {
  padding: 24px 26px;
}
.admin-workspace-head h2 {
  margin: 10px 0 10px;
  color: #f3efe9;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 0.94;
}
.admin-workspace-head p {
  max-width: 620px;
  margin: 0;
  color: rgba(237, 242, 247, 0.72);
}
.admin-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}
.admin-content-card {
  padding: 24px;
}
.admin-content-card-large {
  min-width: 0;
}
.admin-side-card {
  align-self: start;
}
.admin-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.admin-card-head strong {
  color: #f3efe9;
}
.admin-list {
  display: grid;
  gap: 14px;
}
.admin-list-entry,
.admin-edit-entry {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-list-entry:first-child,
.admin-edit-entry:first-child {
  padding-top: 0;
  border-top: 0;
}
.admin-list-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.admin-list-entry strong,
.admin-edit-entry strong {
  display: block;
  color: #f3efe9;
}
.admin-list-entry span,
.admin-edit-entry span {
  color: rgba(237, 242, 247, 0.58);
}
.admin-workspace-page .field label {
  color: rgba(237, 242, 247, 0.62);
}
.admin-workspace-page .field input,
.admin-workspace-page .field textarea,
.admin-workspace-page .field select,
.admin-workspace-page .rich-editor {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #edf2f7;
}
.admin-workspace-page .field input::placeholder,
.admin-workspace-page .field textarea::placeholder {
  color: rgba(237, 242, 247, 0.36);
}
.admin-workspace-page .editor-shell {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.admin-workspace-page .editor-toolbar {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.admin-workspace-page .editor-toolbar button,
.admin-workspace-page .editor-toolbar input {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #edf2f7;
}
.has-admin-modal {
  overflow: hidden;
}
.admin-modal[hidden] {
  display: none;
}
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}
.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.74);
  backdrop-filter: blur(6px);
}
.admin-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 980px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 24px auto;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    #101822;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}
.admin-modal-dialog-wide {
  width: min(calc(100% - 32px), 1180px);
}
.admin-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.admin-modal-head h3 {
  margin: 0;
  color: #f3efe9;
  font-size: 2.2rem;
  line-height: 0.96;
}
.admin-modal .field label {
  color: rgba(237, 242, 247, 0.68);
}
.admin-modal .field input,
.admin-modal .field textarea,
.admin-modal .field select,
.admin-modal .rich-editor {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #edf2f7;
}
.admin-modal .field input::placeholder,
.admin-modal .field textarea::placeholder {
  color: rgba(237, 242, 247, 0.36);
}
.admin-modal .admin-sidebar-kicker,
.admin-modal .admin-promobox-editor,
.admin-modal .admin-promobox-editor p,
.admin-modal .admin-promobox-editor span {
  color: #edf2f7;
}
.admin-modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #edf2f7;
  font-size: 1.6rem;
  cursor: pointer;
}
.admin-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.admin-check-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #edf2f7;
}
.admin-check-card input {
  margin: 0;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: #5db3ff;
}
.admin-check-card-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}
.admin-check-card strong,
.admin-check-card small {
  display: block;
}
.admin-check-card small {
  margin-top: 4px;
  color: rgba(237, 242, 247, 0.58);
}

.news-magazine-grid {
  grid-template-columns: 1fr;
}
.news-magazine-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1fr);
  overflow: hidden;
}
.news-magazine-image {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.22), rgba(16, 25, 36, 0.12)),
    #d6e1ea;
}
.news-magazine-copy {
  padding: 28px;
}
.news-magazine-copy h2 {
  margin: 10px 0;
  font-size: 2.7rem;
  color: var(--ink);
}
.subtitle {
  margin-top: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(16, 25, 36, 0.56);
}
.large-subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.article-stage {
  padding: 56px 0 0;
  background: linear-gradient(180deg, #101822 0%, #0b1017 68%, var(--paper) 68%, var(--paper) 100%);
}
.article-stage-wrap {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: end;
}
.article-stage-image {
  min-height: 560px;
  background:
    linear-gradient(135deg, rgba(47, 143, 255, 0.18), rgba(16, 25, 36, 0.12)),
    #223042;
  box-shadow: var(--shadow);
}
.article-stage-copy {
  padding: 18px 0 12px;
}
.article-stage-copy h1 {
  max-width: 10ch;
  margin: 12px 0 16px;
}
.article-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}
.article-prose,
.article-sidebar {
  padding: 28px;
}
.article-prose a { color: var(--accent); }
.legal-page .dark-copy,
.legal-page .article-prose,
.legal-page .article-prose p,
.legal-page .article-prose li {
  color: #11161f;
}

.legal-page .article-prose h2,
.legal-page .article-prose strong {
  color: #090f18;
}
.dark-sidebar-news {
  color: var(--ink);
  border-top: 1px solid rgba(16, 25, 36, 0.08);
}
.dark-sidebar-news span { color: rgba(16, 25, 36, 0.62); }
.sidebar-news {
  display: grid;
  gap: 6px;
  padding: 16px 0;
}
.sidebar-news:first-of-type { border-top: 0; }

.faq-list { display: grid; gap: 14px; }
.faq-item-light {
  padding: 20px 24px;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
}
.faq-question-dark { color: var(--ink); }
.faq-answer { display: none; padding-top: 14px; }
.faq-item.is-open .faq-answer { display: block; }

.flash-stack {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.flash {
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.flash-success { background: rgba(92, 255, 171, 0.08); color: #d8ffe7; }
.flash-error { background: rgba(47, 143, 255, 0.1); color: #d8ebff; }

.toast-stack {
  position: fixed;
  top: 98px;
  left: 18px;
  z-index: 130;
  width: min(360px, calc(100vw - 32px));
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.toast-notify {
  padding: 14px 16px 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 21, 0.92);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  border-left: 4px solid rgba(255, 255, 255, 0.14);
  transform: translateX(-12px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast-notify.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.toast-notify strong,
.toast-notify span {
  display: block;
}

.toast-notify strong {
  margin-bottom: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.toast-notify span {
  color: rgba(237, 242, 247, 0.8);
  line-height: 1.5;
}

.toast-notify.is-success {
  border-color: rgba(61, 210, 134, 0.24);
  border-left-color: #42db87;
}

.toast-notify.is-success strong {
  color: #baf5d1;
}

.toast-notify.is-error {
  border-color: rgba(255, 107, 107, 0.24);
  border-left-color: #ff6b6b;
}

.toast-notify.is-error strong {
  color: #ffd2d2;
}

.toast-notify.is-warning {
  border-color: rgba(255, 196, 87, 0.24);
  border-left-color: #ffc457;
}

.toast-notify.is-warning strong {
  color: #ffe3a2;
}

.footer {
  padding: 42px 0 62px;
  background: #0a0b0d;
  color: rgba(255, 255, 255, 0.6);
}
.footer-legal {
  padding: 28px 0 34px;
  background: #0e0e10;
}
.footer-legal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-social-link {
  min-width: 50px;
  min-height: 42px;
  width: 50px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, transform 160ms ease;
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}
.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 112px;
  height: auto;
  object-fit: contain;
}
.footer-legal-copy {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-legal-links a:hover {
  color: var(--accent-2);
}
.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 26px;
}
.footer-grid h3 {
  margin: 10px 0 14px;
  color: #fff;
  font-size: 2.4rem;
  max-width: 14ch;
}
.footer-links {
  display: grid;
  gap: 12px;
}

.auth-panel,
.account-hero,
.panel {
  padding: 28px;
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.account-grid,
.stats-grid,
.admin-layout,
.admin-link-grid,
.form-grid {
  display: grid;
  gap: 18px;
}
.account-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.account-avatar {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: #d6e1ea;
}
.admin-layout { grid-template-columns: 1.15fr 0.85fr; }
.admin-link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin-link-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.admin-list { display: grid; gap: 16px; }
.admin-list-item,
.admin-edit-card {
  border-top: 1px solid rgba(16, 25, 36, 0.08);
  padding-top: 16px;
}
.admin-list-item:first-child,
.admin-edit-card:first-child {
  border-top: 0;
  padding-top: 0;
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(16, 25, 36, 0.56);
}
.field input,
.field textarea,
.field select,
.rich-editor {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(16, 25, 36, 0.12);
  background: rgba(16, 25, 36, 0.04);
  color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.span-2 { grid-column: span 2; }
.inline-field { align-content: end; }
.editor-shell {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(16, 25, 36, 0.12);
  background: rgba(16, 25, 36, 0.03);
}
.editor-toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px;
  border-bottom: 1px solid rgba(16, 25, 36, 0.08);
}
.editor-toolbar button,
.editor-toolbar input {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(16, 25, 36, 0.12);
  background: #fff;
  color: var(--ink);
}
.rich-editor {
  min-height: 320px;
  border: 0;
  border-radius: 0;
  outline: none;
}

.shop-page {
  background:
    radial-gradient(circle at top right, rgba(69, 122, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #07111d 0%, #0a1321 18%, #101826 100%);
}

.shop-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 118px 0 82px;
  background:
    linear-gradient(90deg, rgba(4, 9, 17, 0.92) 0%, rgba(7, 14, 25, 0.78) 42%, rgba(7, 14, 25, 0.24) 100%),
    linear-gradient(180deg, rgba(4, 8, 15, 0.1), rgba(4, 8, 15, 0.9)),
    var(--shop-hero-image, linear-gradient(135deg, rgba(35, 80, 173, 0.9), rgba(10, 20, 33, 0.58)));
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.shop-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, #07111d);
  pointer-events: none;
}

.shop-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
  transform: translateY(-18px);
}

.shop-hero-kicker,
.shop-section-kicker {
  color: rgba(152, 188, 255, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.shop-hero h1 {
  margin: 14px 0 18px;
  max-width: none;
  font-size: clamp(4rem, 8vw, 7.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.shop-hero p {
  margin: 0 auto;
  max-width: 660px;
  color: rgba(230, 239, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.shop-body {
  padding: 52px 0 88px;
}

.shop-creator-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 28px;
  align-items: center;
  margin: -96px 0 42px;
  padding: 28px;
  border: 1px solid rgba(126, 169, 255, 0.18);
  background:
    radial-gradient(circle at 86% 8%, rgba(84, 140, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(16, 27, 46, 0.94), rgba(9, 16, 28, 0.94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.shop-creator-panel h2 {
  margin: 10px 0 10px;
  color: #f4f8ff;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.shop-creator-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(223, 233, 255, 0.72);
  line-height: 1.7;
}

.shop-creator-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-creator-form label {
  color: rgba(213, 227, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-creator-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 10px;
}

.shop-creator-control input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(143, 181, 255, 0.16);
  background: rgba(5, 11, 20, 0.82);
  color: #f4f8ff;
  padding: 0 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  outline: none;
}

.shop-creator-control input:focus {
  border-color: rgba(127, 181, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(47, 143, 255, 0.14);
}

.shop-creator-control button,
.shop-creator-meta button {
  border: 0;
  background: #edf4ff;
  color: #07111d;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.shop-creator-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: rgba(223, 233, 255, 0.72);
  font-size: 0.92rem;
}

.shop-creator-meta button {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(238, 245, 255, 0.86);
  font-size: 0.72rem;
}

.shop-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 32px;
}

.shop-section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.shop-section-head p {
  margin: 0;
  max-width: 460px;
  color: rgba(223, 233, 255, 0.72);
  line-height: 1.75;
}

.shop-package-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-package-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(106, 151, 255, 0.16);
  background: linear-gradient(180deg, rgba(18, 27, 43, 0.96), rgba(10, 17, 28, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.shop-package-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -38% 34%;
  height: 180px;
  background: radial-gradient(circle, rgba(78, 137, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.shop-package-badge {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(84, 140, 255, 0.16);
  color: #a6c5ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-package-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(86, 145, 255, 0.18), rgba(21, 38, 68, 0.85));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 58%;
  box-shadow: inset 0 0 0 1px rgba(138, 176, 255, 0.14);
}

.shop-package-label {
  color: rgba(173, 196, 244, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.shop-package-amount {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 0.92;
  font-weight: 900;
}

.shop-package-price {
  color: #89b5ff;
  font-size: 1.24rem;
  font-weight: 800;
}

.shop-package-card p {
  margin: 0;
  color: rgba(223, 233, 255, 0.7);
  line-height: 1.7;
}

.shop-package-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 8px;
  padding: 0 20px;
  border-radius: 16px;
  border: 0;
  background: #f4f7fb;
  color: #0b1320;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.shop-package-button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.shop-package-button:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(255, 255, 255, 0.12);
}

.shop-package-button.is-disabled {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(233, 239, 251, 0.5);
  cursor: default;
}

.shop-empty-state {
  padding: 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 31, 0.84);
}

.shop-empty-state h3 {
  margin: 0 0 10px;
}

.shop-empty-state p {
  margin: 0;
  color: rgba(223, 233, 255, 0.72);
  line-height: 1.7;
}

.shop-error-modal[hidden] {
  display: none !important;
}

.shop-error-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 22px;
}

.shop-error-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 16, 0.78);
  backdrop-filter: blur(10px);
}

.shop-error-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 94, 112, 0.38);
  background:
    linear-gradient(180deg, rgba(20, 29, 44, 0.98), rgba(9, 15, 24, 0.98));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
}

.shop-error-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.shop-error-kicker {
  margin-bottom: 10px;
  color: #ff8d9a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-error-dialog h2 {
  margin: 0 42px 18px 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.shop-error-dialog pre {
  min-height: 96px;
  max-height: 260px;
  margin: 0;
  padding: 16px;
  overflow: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(239, 246, 255, 0.9);
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.55;
}

.shop-error-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.shop-error-copy,
.shop-error-ok {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.shop-error-copy {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.shop-error-ok {
  border: 0;
  background: #f4f7fb;
  color: #0b1320;
}

@media (max-width: 1180px) {
  .hero-shell,
  .showcase-grid,
  .community-grid,
  .article-stage-wrap,
  .article-layout,
  .creator-page-head,
  .news-magazine-card,
  .admin-layout,
  .news-article-layout,
  .admin-dashboard-shell,
  .admin-workspace-shell,
  .admin-workspace-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid,
  .spotlight-grid,
  .creator-showcase-grid,
  .creator-wall,
  .partner-logo-grid,
  .admin-link-grid,
  .account-grid,
  .news-index-grid,
  .shop-package-grid,
  .directory-grid,
  .account-overview-grid,
  .account-stats-grid,
  .admin-dashboard-metrics,
  .admin-dashboard-panels,
  .admin-dashboard-charts,
  .account-creator-metrics,
  .account-creator-percent-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-panel,
  .feature-panel.reverse {
    grid-template-columns: 1fr;
  }

  .shop-section-head {
    display: grid;
    align-items: start;
  }

  .shop-section-head p {
    max-width: none;
  }

  .admin-dashboard-shell,
  .admin-workspace-shell {
    gap: 18px;
  }
  .admin-sidebar-mobile-toggle {
    display: inline-flex;
  }
  .admin-sidebar-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 91;
    background: rgba(4, 8, 14, 0.7);
    backdrop-filter: blur(6px);
  }
  .admin-sidebar-mobile-overlay[hidden] {
    display: none !important;
  }
  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 96;
    width: min(86vw, 340px);
    height: 100vh;
    padding: 22px 20px 26px;
    border-radius: 0 24px 24px 0;
    transform: translateX(-110%);
    transition: transform 180ms ease;
    overflow-y: auto;
  }
  .admin-sidebar.is-open {
    transform: translateX(0);
  }
  .admin-sidebar-mobile-head {
    display: flex;
  }
}

@media (max-width: 780px) {
  .auth-screen {
    padding: 24px 18px 28px;
  }
  .auth-screen-brand {
    top: 20px;
    left: 18px;
  }
  .auth-screen-brand-mark {
    width: 118px;
    min-height: 42px;
  }
  .auth-stage-card {
    width: 100%;
    padding: 42px 24px 32px;
  }
  .auth-register-field input,
  .auth-discord-button {
    min-height: 60px;
  }
  .auth-screen-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
  .auth-screen-footer-links {
    gap: 12px;
  }
  .auth-register-tooltip {
    right: auto;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
    min-width: min(240px, 70vw);
  }
  .site-loading-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }
  .section-head,
  .footer-grid {
    flex-direction: column;
    align-items: start;
  }

  .topbar-inner {
    min-height: 74px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .topbar-left {
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex: 1 1 auto;
  }
  .topbar-burger {
    display: grid;
  }
  .topbar-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 88;
    background: rgba(4, 8, 14, 0.72);
    backdrop-filter: blur(6px);
  }
  .topbar-mobile-overlay[hidden] {
    display: none !important;
  }
  .topbar-mobile-shell {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 92;
    width: min(88vw, 380px);
    height: 100vh;
    padding: 18px 18px 24px;
    display: grid;
    align-content: start;
    gap: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
      #0f1823;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -28px 0 48px rgba(0, 0, 0, 0.34);
    overflow-y: auto;
  }
  .topbar-mobile-shell[hidden] {
    display: none !important;
  }
  .topbar-mobile-head,
  .topbar-mobile-close {
    display: inline-flex;
  }
  .topbar-mobile-shell .nav,
  .topbar-mobile-shell .topbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .topbar-mobile-shell .nav-gamebar,
  .topbar-mobile-shell .topbar-actions-gamebar {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .topbar-mobile-shell .nav-dropdown,
  .topbar-mobile-shell .nav-link-gamebar,
  .topbar-mobile-shell .primary-link,
  .topbar-mobile-shell .gamebar-login,
  .topbar-mobile-shell .account-dropdown,
  .topbar-mobile-shell .utility-chip-dropdown,
  .topbar-mobile-shell .account-chip-button,
  .topbar-mobile-shell .account-chip {
    width: 100%;
  }
  .topbar-mobile-shell .nav-link-gamebar,
  .topbar-mobile-shell .utility-chip,
  .topbar-mobile-shell .account-chip {
    min-height: 52px;
    padding-inline: 16px;
    justify-content: space-between;
    border-radius: 14px;
  }
  .topbar-mobile-shell .nav-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: 0;
    border-radius: 16px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }
  .topbar-mobile-shell .nav-menu-link {
    border-radius: 12px;
  }
  .topbar-mobile-shell .nav-menu-account {
    right: auto;
  }
  .topbar-mobile-shell .account-chip-name {
    white-space: normal;
  }
  .account-friends-tab-row,
  .account-friends-subtab-row,
  .admin-player-tab-row,
  .admin-player-subtab-row {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }
  .account-friends-tab-row > *,
  .account-friends-subtab-row > *,
  .admin-player-tab-row > *,
  .admin-player-subtab-row > * {
    flex: 0 0 auto;
  }

  .hero-band { min-height: 720px; }
  .hero-shell { padding-top: 88px; }
  .hero-shell-centered { padding-top: 88px; padding-bottom: 64px; }
  .footer-legal-links {
    gap: 18px;
  }
  .news-index-hero {
    min-height: 260px;
  }
  .shop-hero {
    padding-top: 118px;
  }
  .shop-creator-panel {
    grid-template-columns: 1fr;
    margin-top: -54px;
  }
  .news-index-hero-inner {
    padding-bottom: 44px;
  }
  .account-summary-card {
    padding: 22px;
  }
  .account-summary-avatar {
    width: 88px;
    height: 88px;
  }
  .account-creator-hero,
  .account-creator-grid {
    grid-template-columns: 1fr;
  }
  .account-creator-code {
    min-height: 108px;
  }
  .account-affiliate-code-actions {
    grid-template-columns: 1fr;
  }
  .account-affiliate-code-actions .primary-link {
    width: 100%;
    justify-content: center;
  }
  .account-affiliate-progress-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .account-affiliate-progress-rewards {
    align-items: stretch;
    flex-direction: column;
  }
  .account-creator-history-row {
    grid-template-columns: 1fr;
  }
  .account-creator-history-side {
    text-align: left;
  }

  .shop-package-grid {
    grid-template-columns: 1fr;
  }
  .shop-creator-control {
    grid-template-columns: 1fr;
  }
  .shop-creator-control button {
    min-height: 50px;
  }
  .shop-creator-meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .account-leaderboard-row {
    grid-template-columns: 76px minmax(0, 1fr) 64px 110px;
  }
  .admin-check-grid {
    grid-template-columns: 1fr;
  }
  .admin-card-head,
  .admin-list-entry {
    align-items: start;
    flex-direction: column;
  }
  .faq-hero {
    min-height: 280px;
  }
  .directory-hero {
    min-height: 260px;
  }
  .faq-question-battlewar {
    min-height: 64px;
    padding: 0 16px;
    font-size: 0.95rem;
  }
  .faq-answer-battlewar {
    padding: 0 16px 16px;
  }
  .news-card-image {
    min-height: 240px;
  }
  .news-article-stage-image {
    min-height: 340px;
  }
  .news-article-sidebar {
    padding-top: 0;
  }
  .community-banner { min-height: 300px; background-position: 72% center; }
  .community-banner-copy {
    max-width: 480px;
    padding: 30px 0;
    margin-left: 34px;
  }
  .community-banner-background-word { left: 0; top: 0; }
  .showcase-visual-shell,
  .showcase-visual,
  .showcase-video,
  .community-shot {
    min-height: 300px;
  }
  .hero-story h1,
  .section-head h1,
  .section-head h2,
  .showcase-copy h2,
  .community-copy h2,
  .article-stage-copy h1,
  .feature-copy h2,
  .page-hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .editorial-grid,
  .spotlight-grid,
  .creator-showcase-grid,
  .creator-wall,
  .partner-logo-grid,
  .admin-link-grid,
  .account-grid,
  .news-index-grid,
  .directory-grid,
  .account-overview-grid,
  .account-stats-grid,
  .admin-dashboard-metrics,
  .admin-dashboard-panels,
  .admin-dashboard-charts,
  .admin-player-detail-grid,
  .admin-player-quick-grid,
  .admin-history-grid,
  .admin-player-meta-grid,
  .account-creator-metrics,
  .account-creator-percent-grid {
    grid-template-columns: 1fr;
  }

  .account-summary-card,
  .admin-dashboard-head,
  .admin-online-player-entry {
    align-items: start;
    flex-direction: column;
  }
  .admin-search-form,
  .admin-player-entry,
  .admin-round-entry {
    grid-template-columns: 1fr;
  }
  .admin-player-entry-meta {
    justify-items: start;
    text-align: left;
  }
  .admin-round-actor-state {
    justify-items: start;
    text-align: left;
  }
  .admin-player-ban-card,
  .admin-player-round-card {
    align-items: start;
    flex-direction: column;
  }
  .admin-modal-dialog {
    width: calc(100% - 20px);
    margin: 10px auto;
    padding: 18px;
    max-height: calc(100vh - 20px);
  }
  .admin-modal-head {
    align-items: start;
  }
  .admin-dashboard-topline,
  .admin-dashboard-actions-grid {
    grid-template-columns: 1fr;
  }
  .admin-dashboard-panel-action {
    padding-left: 92px;
  }
  .admin-dashboard-panel-icon {
    width: 56px;
    height: 56px;
    left: 18px;
  }
  .admin-dashboard-panel-icon svg {
    width: 30px;
    height: 30px;
    transform: translateY(2px);
  }
  .admin-dashboard-chart {
    overflow-x: auto;
    padding-bottom: 12px;
  }
  .account-leaderboard-head {
    align-items: start;
    flex-direction: column;
  }
  .account-leaderboard-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .span-2 { grid-column: span 1; }
  .hero-play-button { min-width: 230px; min-height: 64px; }
  .community-banner-button { min-width: 190px; min-height: 54px; }
  .showcase-copy h2 { white-space: normal; }
  .showcase-grid { column-gap: 24px; }
.showcase-visual-shell { width: 100%; }
}

.account-friends-shell {
  display: grid;
  gap: 22px;
}

.account-friends-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.account-friends-head h2,
.account-friends-empty h3 {
  margin: 0;
}

.account-friends-head p,
.account-friends-empty p {
  margin: 8px 0 0;
}

.account-friends-counters {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 14px;
  min-width: min(100%, 320px);
}

.account-friends-toolbar,
.account-friends-tab-row,
.account-friends-subtab-row,
.account-friends-card-actions,
.account-friends-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.account-friends-toolbar {
  justify-content: space-between;
}

.account-friends-filter,
.account-friends-subfilter {
  min-height: 44px;
  border: 0;
  border-radius: 0;
  border-top: 4px solid transparent;
  background: transparent;
  color: rgba(237, 242, 247, 0.64);
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.account-friends-filter strong,
.account-friends-subfilter strong {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(47, 143, 255, 0.18);
  color: #fff;
  font-size: 0.78rem;
}

.account-friends-filter.is-active,
.account-friends-subfilter.is-active {
  border-top-color: var(--accent);
  color: #fff;
}

.account-friends-filter:hover,
.account-friends-subfilter:hover {
  color: #fff;
}

.account-friends-add {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.account-friends-input-wrap {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.account-friends-input-wrap span {
  font-weight: 700;
}

.account-friends-input-wrap input {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 8, 14, 0.9);
  color: var(--text);
  padding: 0 16px;
}

.account-friends-add .primary-link {
  min-height: 52px;
  padding: 0 20px;
  align-self: end;
  white-space: nowrap;
}

.account-friends-status,
.account-friends-empty {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.account-friends-status.is-success {
  border-color: rgba(61, 210, 134, 0.28);
  color: #baf5d1;
  background: rgba(61, 210, 134, 0.08);
}

.account-friends-status.is-error {
  border-color: rgba(255, 107, 107, 0.28);
  color: #ffd2d2;
  background: rgba(255, 107, 107, 0.08);
}

.account-friends-list {
  display: grid;
  gap: 14px;
}

.account-friends-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 19, 0.9);
  overflow: hidden;
}

.account-friends-card-head {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.account-friends-avatar {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background-size: cover;
  background-position: center;
}

.account-friends-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.account-friends-copy strong {
  font-size: 1.08rem;
}

.account-friends-copy span {
  color: var(--muted);
  line-height: 1.5;
}

.account-friends-badges em {
  padding: 4px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.78rem;
  color: #d5e9ff;
  background: rgba(47, 143, 255, 0.14);
  border: 1px solid rgba(103, 190, 255, 0.18);
}

.account-friends-presence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.account-friends-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.account-friends-dot.is-online {
  background: #42db87;
  box-shadow: 0 0 0 6px rgba(66, 219, 135, 0.12);
}

.account-friends-card-actions {
  display: none;
  padding: 0 20px 20px;
}

.account-friends-card.is-open .account-friends-card-actions {
  display: flex;
}

.account-crew-shell,
.account-crew-grid,
.account-crew-empty-layout,
.account-crew-list,
.account-crew-leaderboard,
.account-crew-stats-grid {
  display: grid;
  gap: 18px;
}

.account-crew-grid,
.account-crew-empty-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
}

.account-crew-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 19, 0.9);
}

.account-crew-hero,
.account-crew-member-row,
.account-crew-inline,
.account-crew-inline-meta,
.account-crew-hero-actions,
.account-crew-member-main,
.account-crew-member-side,
.account-crew-leaderboard-row,
.account-crew-invite-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.account-crew-hero,
.account-crew-member-row,
.account-crew-leaderboard-row,
.account-crew-invite-row {
  justify-content: space-between;
}

.account-crew-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: start;
  gap: 24px;
}

.account-crew-copy {
  color: var(--muted);
}

.account-crew-cost,
.account-crew-inline-meta span,
.account-crew-member-main span {
  color: var(--muted);
}

.account-crew-create-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.account-crew-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.account-crew-tag.is-gradient {
  color: transparent;
}

.account-crew-hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  flex-wrap: wrap;
  justify-content: end;
  align-items: end;
  gap: 14px;
}

.account-crew-inline-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

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

.account-crew-stats-grid .account-stat-card {
  min-width: 0;
}

.account-crew-stats-grid .account-stat-card strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-crew-members-card {
  grid-column: 1 / span 1;
}

.account-crew-member-row,
.account-crew-leaderboard-row,
.account-crew-invite-row {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.account-crew-member-row:first-child,
.account-crew-leaderboard-row:first-child,
.account-crew-invite-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.account-crew-member-main,
.account-crew-member-side {
  min-width: 0;
}

.account-crew-member-main {
  flex: 1 1 auto;
}

.account-crew-member-main strong,
.account-crew-leaderboard-row strong,
.account-crew-invite-row strong {
  display: block;
}

.account-crew-member-main span,
.account-crew-invite-row p {
  margin: 6px 0 0;
  line-height: 1.6;
}

.account-crew-member-presence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.account-crew-member-side {
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.account-crew-member-side em,
.account-crew-leaderboard-row em {
  font-style: normal;
  color: var(--muted);
  white-space: nowrap;
}

.account-crew-leaderboard-row.is-current {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(47, 143, 255, 0.1);
  border: 1px solid rgba(103, 190, 255, 0.16);
}

.account-crew-leaderboard-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(92px, auto);
  align-items: center;
  gap: 14px;
}

.account-crew-leaderboard-main {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.account-crew-leaderboard-main strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-crew-leaderboard-rank,
.account-crew-leaderboard-score {
  white-space: nowrap;
}

.account-crew-leaderboard-score {
  text-align: right;
}

.admin-permission-entry {
  align-items: flex-start;
}

.admin-permission-entry-main {
  display: grid;
  gap: 10px;
}

.admin-permission-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-permission-chip {
  padding: 6px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.78rem;
  background: rgba(47, 143, 255, 0.12);
  color: #d8ebff;
  border: 1px solid rgba(103, 190, 255, 0.16);
}

.admin-permission-groups {
  display: grid;
  gap: 16px;
}

.admin-permission-group-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-permission-group-head {
  margin-bottom: 12px;
}

.admin-permission-group-head strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-dashboard-panels-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-dashboard-actions-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.admin-dashboard-action-form {
  display: block;
}
.admin-dashboard-action-form .admin-dashboard-panel {
  width: 100%;
}
.admin-dashboard-panel-action {
  width: 100%;
  border: 0;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: block;
  padding-left: 100px;
}
.admin-dashboard-panel-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(47, 143, 255, 0.12);
  color: #8fd4ff;
  display: inline-grid;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  place-items: center;
  line-height: 0;
  overflow: hidden;
}
.admin-dashboard-panel-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  margin: 0;
  fill: currentColor;
  transform: translateY(2px);
}
.admin-dashboard-panel-action strong,
.admin-dashboard-panel-action span:last-child {
  display: block;
}
.admin-dashboard-panel-action.is-danger .admin-dashboard-panel-icon {
  background: rgba(255, 97, 97, 0.12);
  color: #ff8787;
}
.admin-dashboard-panel-action.is-muted .admin-dashboard-panel-icon {
  background: rgba(255, 184, 0, 0.12);
  color: #ffd26f;
}
.admin-dashboard-charts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.admin-dashboard-charts-stacked {
  margin-top: -2px;
}
.admin-dashboard-chart-card {
  display: grid;
  gap: 18px;
}
.admin-dashboard-chart-total {
  color: rgba(237, 242, 247, 0.7);
  font-size: 0.92rem;
}
.admin-dashboard-chart {
  min-height: 260px;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
}
.admin-dashboard-chart-bar-wrap {
  min-width: 0;
  display: grid;
  gap: 10px;
  align-items: end;
}
.admin-dashboard-chart-bar {
  min-height: 10%;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, #5ac8ff 0%, #1f6bff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}
.admin-dashboard-chart-alt .admin-dashboard-chart-bar {
  background: linear-gradient(180deg, #8fe4ff 0%, #34a4ff 100%);
}
.admin-dashboard-chart-bar span {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.74rem;
  color: rgba(237, 242, 247, 0.84);
  white-space: nowrap;
}
.admin-dashboard-chart-bar-wrap small {
  font-size: 0.7rem;
  color: rgba(237, 242, 247, 0.55);
  transform: rotate(-55deg);
  transform-origin: left top;
  white-space: nowrap;
}
.admin-online-player-list {
  display: grid;
  gap: 12px;
}
.admin-online-player-entry {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #edf2f7;
}
.admin-online-player-entry:hover {
  border-color: rgba(47, 143, 255, 0.22);
  background: rgba(47, 143, 255, 0.08);
}
.admin-online-player-main,
.admin-online-player-meta {
  display: grid;
  gap: 6px;
}
.admin-online-player-main span,
.admin-online-player-meta span {
  color: rgba(237, 242, 247, 0.7);
}
.admin-empty-state {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: rgba(237, 242, 247, 0.74);
}
.admin-card-head-stack {
  gap: 16px;
}
.admin-search-form {
  display: flex;
  gap: 12px;
  width: min(100%, 620px);
}
.admin-search-form input {
  flex: 1;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #f3efe9;
}
.admin-player-list,
.admin-report-list {
  display: grid;
  gap: 14px;
}
.admin-round-list {
  display: grid;
  gap: 14px;
}
.admin-player-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
}
.admin-player-entry:hover {
  border-color: rgba(47, 143, 255, 0.26);
  transform: translateY(-1px);
}
.admin-round-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.85fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.admin-player-entry-main,
.admin-player-entry-meta,
.admin-player-hero-copy,
.admin-round-entry-main,
.admin-round-entry-meta,
.admin-round-actor-state {
  display: grid;
  gap: 6px;
}
.admin-player-entry-main strong,
.admin-player-hero-copy strong,
.admin-round-entry-main strong {
  font-size: 1.08rem;
}
.admin-player-entry-name {
  color: inherit;
  text-decoration: none;
}
.admin-player-entry-name:hover strong {
  color: #dcecff;
}
.admin-player-entry-main span,
.admin-player-entry-meta span,
.admin-player-hero-copy span,
.admin-player-hero-copy em,
.admin-round-entry-main span,
.admin-round-entry-meta span,
.admin-report-entry span,
.admin-report-entry em {
  color: rgba(237, 242, 247, 0.66);
  font-style: normal;
}
.admin-player-entry-meta {
  justify-items: end;
  text-align: right;
}
.admin-inline-link {
  color: #9fd0ff;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
.admin-inline-link:hover {
  color: #dcecff;
  text-decoration: underline;
}
.admin-round-actor-state {
  justify-items: end;
  text-align: right;
}
.admin-player-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-player-status::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff5b5b;
  box-shadow: 0 0 0 6px rgba(255, 91, 91, 0.12);
}
.admin-player-status.is-online::before {
  background: #65ff9f;
  box-shadow: 0 0 0 6px rgba(101, 255, 159, 0.12);
}
.admin-player-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 20px;
}
.admin-player-tab-row {
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 8px;
}
.admin-player-quick-grid,
.admin-player-action-grid,
.admin-history-grid {
  display: grid;
  gap: 12px;
}
.admin-player-quick-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.admin-player-action-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 18px;
}
.admin-player-action-groups {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.admin-history-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.admin-history-card,
.admin-player-subsection {
  display: grid;
  gap: 14px;
}
.admin-history-card {
  align-content: start;
}
.admin-action-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}
.admin-action-card > strong {
  font-size: 1.05rem;
}
.admin-action-card form {
  margin: 0;
}
.admin-action-button {
  width: 100%;
  min-height: 72px;
  border-radius: 14px;
  border: 1px solid rgba(110, 170, 255, 0.18);
  background: linear-gradient(180deg, rgba(20, 32, 49, 0.92), rgba(10, 18, 30, 0.96));
  color: #edf2f7;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.admin-action-button:hover {
  transform: translateY(-1px);
  border-color: rgba(110, 170, 255, 0.32);
  background: linear-gradient(180deg, rgba(24, 38, 58, 0.98), rgba(11, 20, 34, 0.98));
}
.admin-action-button strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.admin-action-button small {
  display: block;
  color: rgba(237, 242, 247, 0.6);
  font-size: 0.8rem;
  line-height: 1.45;
}
.admin-action-button-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(47, 143, 255, 0.14);
  color: #dcecff;
}
.admin-action-button-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.admin-action-button.is-danger {
  border-color: rgba(255, 104, 104, 0.18);
}
.admin-action-button.is-danger .admin-action-button-icon {
  background: rgba(255, 104, 104, 0.14);
  color: #ffd9d9;
}
.admin-action-button.is-warning {
  border-color: rgba(255, 190, 94, 0.2);
}
.admin-action-button.is-warning .admin-action-button-icon {
  background: rgba(255, 190, 94, 0.14);
  color: #ffe8bb;
}
.admin-player-subtab-row {
  gap: 18px;
  margin-bottom: 6px;
}
.admin-player-history-buttons {
  margin-top: 18px;
}
.admin-player-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.admin-player-avatar {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #79b8ff, #dbf4ff);
  color: #07121e;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-player-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.admin-player-meta-card,
.admin-player-ban-card,
.admin-player-round-card,
.admin-report-entry {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}
.admin-player-meta-card {
  display: grid;
  gap: 8px;
}
.admin-player-meta-card span {
  color: rgba(237, 242, 247, 0.6);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.admin-player-meta-card strong {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  overflow-wrap: anywhere;
}
.admin-player-meta-card-wide {
  grid-column: span 2;
}
.admin-player-meta-card em {
  display: block;
  margin-top: 4px;
  color: rgba(237, 242, 247, 0.66);
  font-style: normal;
  line-height: 1.45;
}
.admin-player-inline-actions {
  margin-top: 4px;
}
.admin-player-inline-actions form {
  margin: 0;
}
.admin-player-round-card {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.admin-player-ban-card {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-color: rgba(255, 92, 92, 0.28);
  background: linear-gradient(180deg, rgba(255, 92, 92, 0.12), rgba(255, 92, 92, 0.06));
}
.admin-player-ban-card p {
  margin: 8px 0 0;
  color: rgba(255, 232, 232, 0.86);
}
.admin-player-warning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.admin-player-warning-grid .admin-player-ban-card {
  margin-top: 0;
  min-height: 100%;
}
.admin-player-mute-card {
  border-color: rgba(255, 171, 71, 0.28);
  background: linear-gradient(180deg, rgba(255, 171, 71, 0.14), rgba(255, 171, 71, 0.06));
}
.admin-player-leaderboard-card {
  border-color: rgba(88, 166, 255, 0.3);
  background: linear-gradient(180deg, rgba(88, 166, 255, 0.14), rgba(88, 166, 255, 0.055));
}
.admin-player-leaderboard-card p {
  color: rgba(230, 242, 255, 0.86);
}
.admin-player-round-card p {
  margin: 8px 0 0;
  color: rgba(237, 242, 247, 0.68);
}
.admin-player-action-row {
  margin-top: 18px;
}
.admin-report-entry {
  display: grid;
  gap: 6px;
}
.admin-empty-state {
  color: rgba(237, 242, 247, 0.58);
}

.admin-table-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 12px;
}

.admin-table-search input {
  width: min(420px, 100%);
  min-height: 44px;
  border: 1px solid rgba(125, 196, 255, 0.18);
  border-radius: 0;
  background: rgba(4, 10, 20, 0.78);
  color: #f4f8ff;
  padding: 0 14px;
  font: 800 0.82rem/1 "Rajdhani", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  outline: none;
}

.admin-table-search input:focus {
  border-color: rgba(92, 190, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(54, 153, 255, 0.12);
}

.admin-table-search span {
  color: rgba(226, 238, 255, 0.46);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-data-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 28, 42, 0.84), rgba(9, 16, 27, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 45px rgba(0, 0, 0, 0.18);
}

.admin-data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-data-table-wrap .admin-empty-state {
  padding: 16px;
}

.admin-data-table th,
.admin-data-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.admin-data-table thead th {
  color: rgba(237, 242, 247, 0.62);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(16, 26, 40, 0.96), rgba(10, 18, 30, 0.92));
}

.admin-data-table tbody tr {
  transition: background 0.2s ease, transform 0.2s ease;
}

.admin-data-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.admin-data-table tbody tr:hover {
  background: rgba(47, 143, 255, 0.08);
}

.admin-data-table tbody tr + tr td {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-data-table td {
  color: rgba(237, 242, 247, 0.84);
  font-size: 0.95rem;
  line-height: 1.5;
}

.admin-data-table td strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.96rem;
}

.admin-data-table td span {
  color: rgba(237, 242, 247, 0.62);
  font-size: 0.84rem;
}

.admin-table-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(98, 176, 255, 0.22);
  background: rgba(47, 143, 255, 0.14);
  color: #dcecff !important;
  font-size: 0.76rem !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-table-badge.is-danger {
  border-color: rgba(255, 108, 108, 0.26);
  background: rgba(255, 108, 108, 0.14);
  color: #ffd7d7 !important;
}

.admin-table-badge.is-warning {
  border-color: rgba(255, 190, 94, 0.24);
  background: rgba(255, 190, 94, 0.14);
  color: #ffe6b7 !important;
}

.admin-table-badge.is-success {
  border-color: rgba(94, 255, 160, 0.24);
  background: rgba(94, 255, 160, 0.13);
  color: #d8ffe7 !important;
}

.admin-loadout-category-stack {
  display: grid;
  gap: 22px;
}

.admin-loadout-category {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 27, 43, 0.68), rgba(8, 14, 24, 0.72));
  overflow: hidden;
}

.admin-loadout-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-loadout-category-head span {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-loadout-category-head strong {
  color: rgba(237, 242, 247, 0.62);
  font-size: 0.82rem;
}

.admin-loadout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  padding: 18px;
}

.admin-loadout-card {
  display: grid;
  grid-template-rows: 122px 1fr auto;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 143, 255, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(10, 19, 33, 0.96), rgba(6, 11, 20, 0.94));
}

.admin-loadout-card.is-equipped {
  border-color: rgba(47, 143, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(47, 143, 255, 0.12), 0 18px 45px rgba(47, 143, 255, 0.08);
}

.admin-loadout-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.admin-loadout-card-image img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
}

.admin-loadout-card-copy {
  display: grid;
  gap: 8px;
}

.admin-loadout-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-loadout-card-copy > strong {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.15;
}

.admin-loadout-card-copy > small {
  color: rgba(237, 242, 247, 0.48);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-loadout-card-facts {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  align-items: baseline;
  font-size: 0.86rem;
}

.admin-loadout-card-facts span {
  color: rgba(237, 242, 247, 0.48);
}

.admin-loadout-card-facts strong {
  color: rgba(237, 242, 247, 0.88);
}

.admin-loadout-attachments {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.admin-loadout-attachments summary {
  cursor: pointer;
  color: #dcecff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-loadout-attachments p {
  margin: 10px 0 0;
  color: rgba(237, 242, 247, 0.58);
}

.admin-loadout-attachments ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.admin-loadout-attachments li {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-loadout-attachments li strong {
  color: #fff;
}

.admin-loadout-attachments li span {
  color: rgba(237, 242, 247, 0.5);
  font-size: 0.78rem;
  word-break: break-all;
}

.admin-loadout-remove {
  width: 100%;
  justify-content: center;
}

.admin-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(237, 242, 247, 0.82);
  font-weight: 800;
}

.admin-checkbox-row input {
  width: 18px;
  height: 18px;
  accent-color: #2f8fff;
}

.admin-table-code {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(237, 242, 247, 0.78) !important;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.79rem !important;
}

.admin-table-dash {
  color: rgba(237, 242, 247, 0.4) !important;
}

.admin-data-table--matches td:nth-child(3),
.admin-data-table--matches td:nth-child(4),
.admin-data-table--matches th:nth-child(3),
.admin-data-table--matches th:nth-child(4),
.admin-data-table--payments td:nth-child(3),
.admin-data-table--payments th:nth-child(3) {
  white-space: nowrap;
}

.admin-data-table--reports td:nth-child(4),
.admin-data-table--reports td:nth-child(5),
.admin-data-table--reports td:nth-child(6),
.admin-data-table--reports th:nth-child(4),
.admin-data-table--reports th:nth-child(5),
.admin-data-table--reports th:nth-child(6) {
  white-space: nowrap;
}

.admin-promobox-stack {
  display: grid;
  gap: 18px;
}

.admin-promobox-editor {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-promobox-editor-create {
  border-style: dashed;
}

.admin-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.admin-note-card {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.admin-note-card p {
  margin: 0 0 8px;
}

.admin-note-card p:last-child {
  margin-bottom: 0;
}

.admin-top-spacer {
  margin-top: 18px;
}

.admin-crew-entry {
  align-items: start;
}

.pr-admin-page {
  gap: 22px;
}

.pr-admin-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 143, 255, 0.2);
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 143, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(10, 17, 27, 0.96), rgba(8, 12, 19, 0.9));
}

.pr-admin-hero::after {
  content: "";
  position: absolute;
  inset: auto 28px 24px auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(47, 143, 255, 0.16);
  transform: rotate(18deg);
  pointer-events: none;
}

.pr-metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pr-metric-grid article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    rgba(7, 11, 18, 0.84);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.pr-metric-grid span,
.pr-case-top,
.pr-case-foot,
.pr-case-mini span,
.pr-timeline-item span,
.pr-timeline-item i,
.pr-timeline-item small {
  color: rgba(237, 242, 247, 0.58);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pr-metric-grid strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  font-family: "Teko", sans-serif;
}

.pr-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 18px;
}

.pr-case-mini-list,
.pr-timeline {
  display: grid;
  gap: 12px;
}

.pr-case-mini,
.pr-timeline-item {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 14px 15px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.pr-case-mini::before,
.pr-timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, #2f8fff, #5bd8ff);
}

.pr-case-mini strong,
.pr-timeline-item strong {
  color: #fff;
  font-size: 0.98rem;
}

.pr-timeline-item p {
  margin: 0;
  color: rgba(237, 242, 247, 0.82);
  line-height: 1.55;
}

.pr-timeline-item small {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 7px 9px;
  border-radius: 10px;
  background: rgba(47, 143, 255, 0.1);
  color: rgba(210, 231, 255, 0.9);
  text-transform: none;
  letter-spacing: 0;
}

.pr-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pr-case-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  min-height: 285px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 143, 255, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(6, 10, 17, 0.9);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.pr-case-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #2f8fff;
}

.pr-case-card.status-deal::before {
  background: #43e68e;
}

.pr-case-card.status-no_deal::before {
  background: #ff5a63;
}

.pr-case-top,
.pr-case-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pr-case-top span,
.pr-case-top em {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(47, 143, 255, 0.12);
  color: rgba(210, 231, 255, 0.92);
  font-style: normal;
}

.pr-case-card.status-deal .pr-case-top span {
  background: rgba(67, 230, 142, 0.12);
  color: #a7ffd0;
}

.pr-case-card.status-no_deal .pr-case-top span {
  background: rgba(255, 90, 99, 0.13);
  color: #ffc1c5;
}

.pr-case-card h3 {
  margin: 6px 0 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
}

.pr-case-card p {
  margin: 0;
  color: rgba(237, 242, 247, 0.74);
}

.pr-benefit-line {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(237, 242, 247, 0.84);
  font-weight: 800;
  line-height: 1.45;
}

.pr-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pr-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(237, 242, 247, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.pr-case-foot {
  margin-top: auto;
  padding-top: 8px;
}

.pr-modal-dialog {
  width: min(1180px, calc(100vw - 28px));
}

.pr-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 18px;
}

.pr-case-form {
  align-items: end;
}

.pr-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.pr-timeline-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.pr-note-form {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(47, 143, 255, 0.15);
  background: rgba(47, 143, 255, 0.065);
}

.pr-note-form label {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pr-note-form textarea {
  min-height: 118px;
}

.pr-timeline.compact {
  max-height: 560px;
  overflow: auto;
  padding-right: 4px;
}

@media (max-width: 1100px) {
  .account-crew-grid,
  .account-crew-empty-layout {
    grid-template-columns: 1fr;
  }

  .admin-split-grid {
    grid-template-columns: 1fr;
  }

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

  .pr-dashboard-grid,
  .pr-modal-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .admin-player-warning-grid {
    grid-template-columns: 1fr;
  }
  .account-crew-create-grid {
    grid-template-columns: 1fr;
  }

  .account-crew-stats-grid,
  .account-crew-hero-actions {
    grid-template-columns: 1fr;
  }

  .account-crew-hero,
  .account-crew-member-row,
  .account-crew-leaderboard-row,
  .account-crew-invite-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-crew-member-side,
  .account-crew-hero-actions {
    align-items: flex-start;
  }

  .pr-metric-grid,
  .pr-case-grid {
    grid-template-columns: 1fr;
  }

  .pr-case-top,
  .pr-case-foot {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  .account-friends-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .account-friends-counters {
    min-width: 0;
  }

  .account-friends-add {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .account-friends-card-head {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .account-friends-presence {
    grid-column: 2;
  }
}

select,
.admin-workspace-page .field select,
.admin-modal .field select,
.auth-card select,
.field select {
  appearance: none;
  color-scheme: dark;
  padding-right: 44px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(237, 242, 247, 0.78) 50%) calc(100% - 21px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(237, 242, 247, 0.78) 50%, transparent 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #0c131d;
  color: #edf2f7;
}

select option,
select optgroup {
  background: #0c131d;
  color: #edf2f7;
}
