:root {
  --bg-980: #040a12;
  --bg-950: #07111d;
  --bg-900: #0b1829;
  --bg-860: #112438;
  --surface: rgba(17, 36, 56, 0.84);
  --surface-strong: rgba(13, 30, 47, 0.96);
  --surface-soft: rgba(20, 44, 67, 0.64);
  --line: rgba(115, 166, 204, 0.24);
  --line-strong: rgba(122, 212, 255, 0.46);
  --text: #eef7ff;
  --text-soft: #c8d9e7;
  --text-muted: #8fa8bc;
  --ice: #b9f1ff;
  --cyan: #7ddcff;
  --cyan-strong: #45bbff;
  --steel: #7b93a8;
  --amber: #f0b674;
  --ember: #d96767;
  --success: #79d7bb;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 20px 46px rgba(3, 10, 18, 0.3);
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;
  --font-heading: "Rajdhani", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(67, 148, 193, 0.22), transparent 35%),
    radial-gradient(circle at 82% 12%, rgba(87, 176, 255, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(66, 110, 159, 0.18), transparent 32%),
    linear-gradient(180deg, #08101a 0%, #07111d 28%, #040a12 100%);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

body::before {
  background:
    linear-gradient(120deg, transparent 0%, rgba(118, 181, 228, 0.06) 22%, transparent 42%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.024) 0,
      rgba(255, 255, 255, 0.024) 1px,
      transparent 1px,
      transparent 18px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 88%);
}

body::after {
  background: radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.22));
}

.page-chrome {
  position: relative;
  overflow: clip;
}

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

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

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

main {
  position: relative;
  z-index: 1;
}

.shell {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

.section {
  padding: 2.5rem 0 0;
}

.section--article {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--cyan);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

p,
li,
small,
span {
  line-height: 1.72;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 1rem;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(125, 191, 232, 0.14);
  border-radius: 999px;
  background: rgba(6, 14, 25, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  min-width: 0;
}

.site-header__right {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  flex-shrink: 0;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid rgba(134, 221, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.16), transparent 58%),
    linear-gradient(135deg, rgba(61, 94, 125, 0.42), rgba(12, 25, 40, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

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

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__text strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1;
}

.brand__text small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.site-nav--desktop {
  align-items: center;
  min-width: 0;
}

.site-nav--mobile {
  display: none;
}

.site-nav__links {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.site-nav__utility {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: 0;
}

.site-menu__trigger,
.site-menu__dropdown a {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 500;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-menu__trigger {
  gap: 0.6rem;
  list-style: none;
}

.site-menu__trigger::-webkit-details-marker {
  display: none;
}

.site-menu__caret {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.15rem;
  border-right: 2px solid rgba(200, 219, 235, 0.8);
  border-bottom: 2px solid rgba(200, 219, 235, 0.8);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.site-menu[open] .site-menu__caret {
  transform: rotate(225deg);
  margin-top: 0.1rem;
}

.site-menu__trigger:hover,
.site-menu__dropdown a:hover,
.site-menu__dropdown a.is-active,
.site-menu.is-active > .site-menu__trigger,
.site-menu[open] > .site-menu__trigger {
  color: var(--text);
  background: rgba(120, 191, 229, 0.11);
}

.site-menu__dropdown {
  position: static;
  display: none;
  min-width: 220px;
  gap: 0.3rem;
  padding: 0.55rem;
  border: 1px solid rgba(125, 191, 232, 0.14);
  border-radius: 24px;
  background: rgba(4, 11, 19, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-menu[open] .site-menu__dropdown {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.site-nav--desktop .site-menu__dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  z-index: 24;
  box-shadow: var(--shadow-md);
}

.site-menu__dropdown a {
  width: 100%;
  justify-content: flex-start;
}

.site-nav__admin {
  flex-shrink: 0;
}

.server-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.72rem 0.98rem;
  border: 1px solid rgba(118, 189, 227, 0.16);
  border-radius: 999px;
  background: rgba(6, 14, 24, 0.78);
  color: var(--text-soft);
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.server-status-chip__dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(201, 214, 226, 0.7);
  box-shadow: 0 0 0 5px rgba(201, 214, 226, 0.1);
  flex-shrink: 0;
}

.server-status-chip__text {
  font-weight: 600;
  line-height: 1;
}

.server-status-chip.is-loading {
  border-color: rgba(158, 184, 206, 0.18);
}

.server-status-chip.is-loading .server-status-chip__dot {
  background: rgba(201, 214, 226, 0.7);
  box-shadow: 0 0 0 5px rgba(201, 214, 226, 0.1);
}

.server-status-chip.is-offline {
  border-color: rgba(217, 103, 103, 0.24);
  color: #ffd7d7;
}

.server-status-chip.is-offline .server-status-chip__dot {
  background: var(--ember);
  box-shadow: 0 0 0 5px rgba(217, 103, 103, 0.14);
}

.server-status-chip.is-online {
  border-color: rgba(115, 214, 255, 0.28);
  color: var(--text);
}

.server-status-chip.is-online .server-status-chip__dot {
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(121, 215, 187, 0.14);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.page-aurora {
  position: fixed;
  width: 28rem;
  height: 28rem;
  filter: blur(40px);
  opacity: 0.28;
  border-radius: 50%;
  pointer-events: none;
}

.page-aurora--left {
  top: 8%;
  left: -10rem;
  background: rgba(73, 161, 216, 0.55);
}

.page-aurora--right {
  top: 22%;
  right: -12rem;
  background: rgba(74, 112, 163, 0.42);
}

.hero {
  position: relative;
  padding: 5rem 0 2rem;
}

.hero--home {
  padding-top: 6.2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__copy > p {
  max-width: 62ch;
  color: var(--text-soft);
}

.hero__lead {
  font-size: 1.08rem;
}

.hero__actions,
.admin-topbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #03111f;
  background:
    linear-gradient(135deg, rgba(179, 239, 255, 0.98), rgba(100, 196, 240, 0.92));
  box-shadow: 0 14px 34px rgba(68, 163, 219, 0.28);
}

.button--secondary {
  color: var(--text);
  border-color: rgba(126, 196, 235, 0.22);
  background: rgba(112, 184, 223, 0.11);
}

.button--ghost {
  color: var(--text-soft);
  border-color: rgba(126, 196, 235, 0.18);
  background: rgba(12, 26, 42, 0.52);
}

.button--card,
.button--small {
  padding: 0.72rem 1rem;
}

.button--danger {
  color: #ffe7e7;
  border-color: rgba(217, 103, 103, 0.32);
  background: rgba(118, 35, 35, 0.26);
}

.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
  pointer-events: none;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero__stats article,
.admin-card,
.feature-card,
.content-card,
.detail-panel,
.admin-panel,
.admin-login__card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(20, 45, 69, 0.88), rgba(9, 18, 31, 0.96)),
    linear-gradient(90deg, rgba(120, 187, 230, 0.12), transparent 40%);
  box-shadow: var(--shadow-md);
}

.hero__stats article {
  padding: 1rem 1.1rem;
}

.hero__stats strong,
.admin-card strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ice);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.hero__stats span,
.admin-card small {
  color: var(--text-muted);
}

.hero__visual {
  display: grid;
  place-items: center;
}

.logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 430px);
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(145deg, rgba(111, 165, 207, 0.14), rgba(7, 17, 29, 0.92));
  border: 1px solid rgba(152, 206, 238, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.42);
}

.logo-stage img {
  position: relative;
  z-index: 2;
  width: min(72%, 290px);
  filter: drop-shadow(0 20px 24px rgba(2, 8, 14, 0.45));
}

.logo-stage__ring {
  position: absolute;
  border: 1px solid rgba(120, 204, 243, 0.18);
  border-radius: 50%;
}

.logo-stage__ring--outer {
  width: 88%;
  height: 88%;
}

.logo-stage__ring--inner {
  width: 64%;
  height: 64%;
  border-color: rgba(240, 182, 116, 0.12);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-header p {
  max-width: 62ch;
  color: var(--text-soft);
}

.feature-grid,
.content-grid,
.admin-card-grid,
.admin-panel-grid,
.changelog-grid {
  display: grid;
  gap: 1.2rem;
}

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

.feature-card {
  padding: 1.35rem;
}

.feature-card__line {
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.feature-card p {
  color: var(--text-soft);
}

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

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

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

.content-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.content-card:hover,
.feature-card:hover,
.admin-panel:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.content-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(118, 191, 232, 0.14);
}

.content-card__media img,
.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.3rem;
}

.content-card__meta,
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border: 1px solid rgba(130, 220, 255, 0.2);
  border-radius: 999px;
  background: rgba(113, 184, 221, 0.12);
  color: var(--ice);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-card h3 {
  margin-bottom: 0.7rem;
}

.content-card p {
  flex: 1;
  color: var(--text-soft);
}

.content-card .button {
  margin-top: 1rem;
  align-self: flex-start;
}

.content-card--streamer {
  gap: 0;
}

.content-card--streamer.is-featured {
  grid-column: span 2;
  border-color: rgba(130, 220, 255, 0.24);
  background:
    radial-gradient(circle at 82% 16%, rgba(89, 204, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(13, 30, 48, 0.96), rgba(6, 14, 24, 0.94));
  box-shadow: 0 24px 70px rgba(16, 118, 179, 0.18);
}

.content-grid--featured-streamers .content-card--streamer.is-featured {
  grid-column: span 1;
}

.streamer-card__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem 1.15rem 0.9rem;
  border-bottom: 1px solid rgba(118, 191, 232, 0.14);
  box-shadow: inset 0 3px 0 var(--streamer-accent, var(--cyan));
  background:
    linear-gradient(180deg, rgba(9, 18, 30, 0.96), rgba(7, 15, 25, 0.92));
}

.streamer-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(138, 186, 216, 0.22);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.streamer-card__status-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(198, 214, 225, 0.72);
  box-shadow: 0 0 0 4px rgba(198, 214, 225, 0.08);
}

.streamer-card__status.is-live {
  border-color: rgba(121, 215, 187, 0.28);
  color: var(--ice);
}

.streamer-card__status.is-live .streamer-card__status-dot {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(121, 215, 187, 0.12);
}

.streamer-card__status.is-offline {
  border-color: rgba(217, 103, 103, 0.24);
  color: #ffd7d7;
}

.streamer-card__status.is-offline .streamer-card__status-dot {
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(217, 103, 103, 0.12);
}

.streamer-card__profile {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  padding: 1.2rem 1.25rem 0.9rem;
}

.content-card--streamer.is-featured .streamer-card__profile {
  grid-template-columns: 112px 1fr;
  align-items: center;
  padding-block: 1.55rem 1.1rem;
}

.streamer-card__avatar {
  width: 88px;
  height: 88px;
  overflow: hidden;
  border: 1px solid rgba(127, 199, 238, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), transparent 52%),
    linear-gradient(145deg, rgba(23, 49, 73, 0.92), rgba(8, 17, 28, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.content-card--streamer.is-featured .streamer-card__avatar {
  width: 112px;
  height: 112px;
}

.streamer-card__avatar img,
.streamer-card__avatar-fallback {
  width: 100%;
  height: 100%;
}

.streamer-card__avatar img {
  object-fit: cover;
}

.streamer-card__avatar-fallback {
  display: grid;
  place-items: center;
  color: var(--ice);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.streamer-card__profile h3 {
  margin-bottom: 0.45rem;
}

.streamer-card__profile p {
  margin: 0;
  color: var(--text-soft);
}

.streamer-card__meta,
.streamer-card__actions {
  padding: 0 1.25rem 1rem;
}

.streamer-card__meta {
  display: grid;
  gap: 0.22rem;
  color: var(--text-muted);
}

.streamer-card__meta strong {
  color: var(--ice);
  font-size: 1rem;
  line-height: 1.45;
}

.streamer-card__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 0.8rem;
  padding: 0 1.25rem 1rem;
}

.streamer-card__stats article {
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(125, 191, 232, 0.12);
  border-radius: 18px;
  background: rgba(7, 16, 27, 0.68);
}

.streamer-card__stats strong {
  display: block;
  color: var(--ice);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  line-height: 1;
}

.streamer-card__stats span {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.streamer-card__actions {
  margin-top: auto;
}

.team-avatar {
  display: grid;
  place-items: center;
  padding: 1.3rem 1.3rem 0;
}

.team-avatar img {
  width: 108px;
  height: 108px;
  border: 1px solid rgba(127, 199, 238, 0.24);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero--compact,
.hero--detail {
  padding-top: 4rem;
}

.hero--compact__inner,
.article-hero {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.article-hero {
  grid-template-columns: 1.1fr 0.9fr;
}

.article-hero--person {
  grid-template-columns: 1.15fr 0.55fr;
}

.article-hero__copy > p {
  max-width: 60ch;
  color: var(--text-soft);
}

.article-hero__media,
.article-hero__media--avatar {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(10, 21, 34, 0.74);
  box-shadow: var(--shadow-md);
}

.article-hero__media {
  min-height: 280px;
}

.article-hero__media--avatar {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 1.5rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--cyan);
  font-weight: 700;
}

.article-body,
.legal-panel,
.profile-panel {
  padding: 1.6rem;
}

.rulebook-accordion {
  display: grid;
  gap: 1rem;
}

.rulebook-entry {
  padding: 0;
}

.rulebook-entry__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  cursor: pointer;
  list-style: none;
}

.rulebook-entry__summary::-webkit-details-marker {
  display: none;
}

.rulebook-entry__copy {
  display: grid;
  gap: 0.45rem;
}

.rulebook-entry__copy h2 {
  margin: 0;
}

.rulebook-entry__icon {
  width: 0.95rem;
  height: 0.95rem;
  border-right: 2px solid rgba(124, 196, 233, 0.72);
  border-bottom: 2px solid rgba(124, 196, 233, 0.72);
  transform: rotate(45deg);
  transition: transform 180ms ease;
  flex-shrink: 0;
}

.rulebook-entry[open] .rulebook-entry__icon {
  transform: rotate(225deg);
}

.rulebook-entry__body {
  padding: 0 1.35rem 1.35rem;
  border-top: 1px solid rgba(118, 189, 227, 0.12);
}

.rulebook-entry--empty {
  padding: 1.35rem;
}

.lawbook-search {
  margin-bottom: 1.2rem;
}

.lawbook-search label {
  display: grid;
  gap: 0.55rem;
}

.lawbook-search span {
  color: var(--text-soft);
  font-weight: 700;
}

.lawbook-search input {
  width: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(118, 189, 227, 0.16);
  border-radius: 18px;
  color: var(--text);
  background: rgba(6, 14, 24, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lawbook-search input:focus {
  outline: none;
  border-color: rgba(119, 215, 255, 0.36);
  box-shadow: 0 0 0 4px rgba(69, 187, 255, 0.12);
}

.lawbook-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.lawbook-category-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  min-height: 230px;
  padding: 1.35rem;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.lawbook-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(118, 219, 255, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%);
  opacity: 0.72;
}

.lawbook-category-card > * {
  position: relative;
}

.lawbook-category-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 22px 60px rgba(17, 112, 168, 0.22);
  transform: translateY(-3px);
}

.lawbook-category-card h2 {
  margin: 0;
}

.lawbook-category-card p {
  color: var(--text-soft);
}

.lawbook-card__meta {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(118, 189, 227, 0.12);
  color: var(--text-soft);
}

.lawbook-card__meta strong {
  color: var(--ice);
}

.lawbook-detail-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.lawbook-detail-head h2 {
  margin: 0;
}

.lawbook-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.lawbook-sidebar {
  position: sticky;
  top: 7rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(15, 32, 50, 0.9), rgba(7, 15, 25, 0.96));
  box-shadow: var(--shadow-md);
}

.lawbook-category-list {
  display: grid;
  gap: 0.65rem;
}

.lawbook-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(125, 191, 232, 0.12);
  border-radius: 16px;
  background: rgba(7, 16, 27, 0.72);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.lawbook-category-list a:hover {
  border-color: var(--line-strong);
  background: rgba(120, 191, 229, 0.11);
  transform: translateY(-1px);
}

.lawbook-category-list span {
  color: var(--text);
  font-weight: 700;
}

.lawbook-category-list small {
  color: var(--text-muted);
  white-space: nowrap;
}

.lawbook-content,
.lawbook-paragraph-list,
.lawbook-admin-paragraphs {
  display: grid;
  gap: 1rem;
}

.lawbook-category {
  scroll-margin-top: 7rem;
}

.lawbook-category__header {
  margin-bottom: 1rem;
}

.lawbook-category__header p {
  max-width: 68ch;
  color: var(--text-soft);
}

.lawbook-paragraph {
  padding: 1.25rem 1.35rem;
}

.lawbook-paragraph__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: baseline;
  margin-bottom: 0.9rem;
}

.lawbook-paragraph__head span {
  display: inline-flex;
  min-width: 3.4rem;
  justify-content: center;
  padding: 0.22rem 0.7rem;
  border: 1px solid rgba(130, 220, 255, 0.2);
  border-radius: 999px;
  background: rgba(113, 184, 221, 0.12);
  color: var(--ice);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.lawbook-paragraph__head h3 {
  line-height: 1.05;
}

.lawbook-empty {
  padding: 1.35rem;
}

.wiki-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.wiki-category-card {
  position: relative;
  display: grid;
  gap: 0.72rem;
  min-height: 205px;
  padding: 1.25rem;
  overflow: hidden;
}

.wiki-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(118, 205, 255, 0.12), transparent 42%),
    radial-gradient(circle at 85% 18%, rgba(180, 234, 255, 0.14), transparent 28%);
  opacity: 0.88;
}

.wiki-category-card > * {
  position: relative;
}

.wiki-category-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 20px 56px rgba(17, 112, 168, 0.2);
  transform: translateY(-3px);
}

.wiki-category-card h2 {
  margin: 0;
}

.wiki-category-card p {
  color: var(--text-soft);
}

.guide-intro-panel,
.guide-tips-panel {
  padding: 1.35rem;
  margin-bottom: 1rem;
}

.guide-step-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guide-step {
  padding: 1.25rem 1.35rem;
}

.guide-step__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: baseline;
  margin-bottom: 0.85rem;
}

.guide-step__head span {
  display: inline-flex;
  min-width: 2.8rem;
  justify-content: center;
  padding: 0.22rem 0.65rem;
  border: 1px solid rgba(130, 220, 255, 0.2);
  border-radius: 999px;
  color: var(--ice);
  background:
    linear-gradient(135deg, rgba(77, 188, 255, 0.14), rgba(9, 27, 44, 0.74));
  box-shadow: inset 0 0 18px rgba(95, 202, 255, 0.08);
}

.guide-step__head h3 {
  margin: 0;
}

.lawbook-admin-paragraph {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(118, 189, 227, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(10, 20, 33, 0.94), rgba(6, 14, 24, 0.88));
}

.lawbook-admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.45rem 0 0.85rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(118, 189, 227, 0.12);
}

.lawbook-admin-toolbar h3 {
  margin: 0;
}

.lawbook-paragraph-admin-list {
  margin-bottom: 1rem;
}

.lawbook-paragraph-admin-item {
  display: grid;
  gap: 0.8rem;
}

.lawbook-paragraph-admin-list .admin-entity.is-selected {
  border-color: var(--line-strong);
  background: rgba(118, 189, 227, 0.12);
}

.lawbook-paragraph-editor-form {
  margin: 0 0 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(118, 189, 227, 0.12);
  border-radius: 20px;
  background: rgba(4, 12, 21, 0.42);
}

.checkbox-row--danger span {
  color: #ffd7d7;
}

.article-body p,
.legal-panel p,
.profile-panel p {
  color: var(--text-soft);
}

.rich-text-content {
  color: var(--text-soft);
}

.rich-text-content > :first-child {
  margin-top: 0;
}

.rich-text-content > :last-child {
  margin-bottom: 0;
}

.rich-text-content p,
.rich-text-content div {
  margin: 0 0 1rem;
}

.rich-text-content h2,
.rich-text-content h3,
.rich-text-content h4 {
  margin: 1.6rem 0 0.75rem;
  color: var(--ice);
  line-height: 1.05;
}

.rich-text-content ul,
.rich-text-content ol {
  margin: 0 0 1.1rem;
  padding-left: 1.45rem;
}

.rich-text-content li {
  margin-bottom: 0.45rem;
}

.rich-text-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.rich-editor {
  display: grid;
  gap: 0.75rem;
}

.rich-editor__label {
  display: grid;
  gap: 0.35rem;
}

.rich-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.85rem;
  border: 1px solid rgba(118, 189, 227, 0.14);
  border-radius: 18px;
  background: rgba(6, 14, 24, 0.72);
}

.rich-editor__surface {
  min-height: 280px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(118, 189, 227, 0.14);
  border-radius: 18px;
  background: rgba(6, 14, 24, 0.82);
  outline: none;
}

.rich-editor__surface:focus {
  border-color: rgba(119, 215, 255, 0.36);
  box-shadow: 0 0 0 4px rgba(69, 187, 255, 0.12);
}

.detail-panel h3 {
  margin: 0 0 0.9rem;
}

.detail-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.changelog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.changelog-grid .detail-panel {
  padding: 1.45rem 1.55rem;
}

.changelog-grid .detail-panel ul {
  padding-left: 1.45rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(129, 192, 230, 0.12);
  background: linear-gradient(180deg, rgba(3, 8, 13, 0), rgba(3, 8, 13, 0.42));
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
}

.site-footer h2 {
  font-size: 1.65rem;
  margin-bottom: 0.8rem;
}

.site-footer p,
.site-footer span {
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

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

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(129, 192, 230, 0.08);
  color: var(--text-muted);
}

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

.is-admin {
  background:
    radial-gradient(circle at top left, rgba(74, 150, 196, 0.15), transparent 30%),
    radial-gradient(circle at 100% 0, rgba(217, 103, 103, 0.08), transparent 20%),
    linear-gradient(180deg, #060d15 0%, #050b12 100%);
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 100vh;
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(122, 189, 232, 0.14);
  background: rgba(6, 13, 21, 0.86);
  backdrop-filter: blur(18px);
}

.brand--admin {
  padding: 0.4rem;
}

.admin-nav {
  display: grid;
  gap: 0.45rem;
}

.admin-nav a {
  padding: 0.95rem 1rem;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--text-soft);
  transition: background 180ms ease, border-color 180ms ease;
}

.admin-nav a.is-active,
.admin-nav a:hover {
  border-color: rgba(124, 196, 233, 0.18);
  background: rgba(109, 181, 221, 0.1);
}

.admin-main {
  padding: 1.8rem;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.admin-flash {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(124, 199, 236, 0.18);
  border-radius: 18px;
  background: rgba(66, 121, 164, 0.14);
  color: var(--ice);
}

.admin-flash--subtle {
  background: rgba(23, 43, 63, 0.42);
  color: var(--text-soft);
}

.is-hidden {
  display: none !important;
}

.admin-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-card,
.admin-panel {
  padding: 1.3rem;
}

.admin-card span {
  color: var(--text-muted);
}

.admin-panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.admin-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.permission-section-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.permission-panel {
  padding: 1.2rem;
}

.permission-list {
  display: grid;
  gap: 0.7rem;
}

.permission-list .checkbox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.permission-list .checkbox-row input {
  order: 2;
  margin-top: 0;
  align-self: center;
  flex-shrink: 0;
}

.permission-list .checkbox-row span {
  order: 1;
  display: block;
  flex: 1;
  line-height: 1.4;
}

.admin-section--split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1.2rem;
}

.admin-entity-list {
  display: grid;
  gap: 0.8rem;
}

.admin-entity-list--media {
  gap: 1rem;
}

.admin-entity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(125, 191, 232, 0.12);
  border-radius: 16px;
  background: rgba(9, 19, 31, 0.72);
}

.admin-entity--media {
  align-items: stretch;
}

.admin-entity strong {
  display: block;
  margin-bottom: 0.15rem;
}

.admin-entity small {
  color: var(--text-muted);
}

.admin-entity__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.55rem;
  color: var(--text-muted);
}

.admin-entity__thumb {
  width: 176px;
  min-width: 176px;
  overflow: hidden;
  border: 1px solid rgba(125, 191, 232, 0.12);
  border-radius: 14px;
  background: rgba(7, 16, 27, 0.76);
}

.admin-entity__thumb img {
  width: 100%;
  height: 100%;
  min-height: 88px;
  object-fit: cover;
}

.admin-entity__content {
  display: grid;
  gap: 0.15rem;
  align-content: center;
  flex: 1;
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.admin-form label {
  display: grid;
  gap: 0.45rem;
}

.admin-form span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(118, 189, 227, 0.14);
  border-radius: 16px;
  color: var(--text);
  background: rgba(6, 14, 24, 0.82);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: rgba(119, 215, 255, 0.36);
  box-shadow: 0 0 0 4px rgba(69, 187, 255, 0.12);
}

.admin-form textarea {
  resize: vertical;
  min-height: 120px;
}

.admin-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.admin-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.rule-category-list {
  display: grid;
  gap: 1rem;
}

.rule-category-editor {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(118, 189, 227, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 24, 38, 0.94), rgba(7, 15, 25, 0.92));
}

.rule-category-editor__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.rule-category-editor__header strong {
  display: block;
  margin-bottom: 0.25rem;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
}

.admin-tab {
  min-width: 148px;
  justify-content: center;
}

.admin-tab.is-active {
  color: var(--text);
  border-color: rgba(115, 214, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(25, 55, 84, 0.96), rgba(10, 22, 35, 0.96));
  box-shadow: 0 14px 34px rgba(3, 8, 16, 0.22);
}

.legal-editor-panel {
  display: grid;
  gap: 1rem;
}

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

.banner-picker {
  display: grid;
  gap: 0.85rem;
}

.banner-preview {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(125, 191, 232, 0.12);
  border-radius: 18px;
  background: rgba(7, 16, 27, 0.72);
}

.banner-preview__media {
  overflow: hidden;
  border-radius: 16px;
  min-height: 118px;
  border: 1px solid rgba(125, 191, 232, 0.12);
  background: rgba(4, 11, 18, 0.9);
}

.banner-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-preview__copy {
  display: grid;
  gap: 0.2rem;
  align-content: center;
}

.banner-preview__empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 118px;
  color: var(--text-muted);
  text-align: center;
  padding: 1rem;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.checkbox-row input {
  width: auto;
  margin: 0;
  align-self: center;
}

.checkbox-row span {
  line-height: 1.35;
}

.admin-toggle-list {
  display: grid;
  gap: 0.9rem;
}

.admin-toggle-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(118, 189, 227, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10, 20, 33, 0.94), rgba(6, 14, 24, 0.88));
}

.admin-toggle-row__copy {
  display: grid;
  gap: 0.3rem;
}

.admin-toggle-row__title {
  color: var(--text);
  font-weight: 600;
  line-height: 1.35;
}

.admin-toggle-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.admin-login {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 1.25rem;
}

.admin-login__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(120, 209, 255, 0.08), transparent 32%),
    linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.03) 45%, transparent 72%);
  pointer-events: none;
}

.admin-login__card {
  width: min(460px, 100%);
  padding: 2rem;
  text-align: center;
}

.admin-login__logo {
  width: 108px;
  margin: 0 auto 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__grid,
  .article-hero,
  .admin-section--split,
  .feature-grid,
  .content-grid,
  .content-grid--team,
  .content-grid--streamers,
  .admin-card-grid,
  .admin-panel-grid,
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__visual {
    order: -1;
  }

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

  .admin-sidebar {
    position: relative;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(122, 189, 232, 0.14);
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    position: relative;
    border-radius: 28px;
  }

  .site-header__left {
    min-width: 0;
  }

  .site-header__right .site-nav__utility {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav--desktop {
    display: none;
  }

  .site-nav--mobile {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 0.85rem;
    border: 1px solid rgba(125, 191, 232, 0.14);
    border-radius: 28px;
    background: rgba(4, 11, 19, 0.96);
  }

  .site-nav--mobile .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .site-nav--mobile .site-nav__utility {
    flex-direction: column;
    align-items: stretch;
  }

  .site-menu {
    width: 100%;
  }

  .site-menu__trigger {
    justify-content: space-between;
    width: 100%;
  }

  .site-menu__dropdown {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    box-shadow: none;
  }

  .site-menu__dropdown a,
  .site-nav__admin {
    width: 100%;
  }

  .server-status-chip {
    justify-content: center;
  }

  html.nav-open .site-nav--mobile {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .lawbook-layout {
    grid-template-columns: 1fr;
  }

  .lawbook-sidebar {
    position: relative;
    top: auto;
  }

  .lawbook-detail-head {
    align-items: stretch;
    flex-direction: column;
  }

  .lawbook-admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .content-card--streamer.is-featured {
    grid-column: span 1;
  }

  .hero__grid,
  .article-hero,
  .article-hero--person,
  .feature-grid,
  .content-grid,
  .content-grid--team,
  .content-grid--streamers,
  .permission-section-grid,
  .admin-form__grid,
  .admin-form__grid--stack,
  .banner-preview,
  .admin-card-grid,
  .admin-panel-grid,
  .site-footer__grid,
  .changelog-grid {
    grid-template-columns: 1fr;
  }

  .section-header,
  .admin-topbar,
  .site-footer__bottom {
    flex-direction: column;
    align-items: start;
  }

  .rule-category-editor__header {
    flex-direction: column;
    align-items: start;
  }

  .admin-entity--media {
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .shell {
    width: min(100vw - 1.2rem, 100%);
  }

  .site-header__inner {
    padding: 0.85rem;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }

  .admin-main {
    padding: 1rem;
  }

  .admin-entity__thumb {
    width: 100%;
    min-width: 0;
  }

  .admin-panel,
  .admin-card,
  .feature-card,
  .article-body,
  .legal-panel,
  .profile-panel,
  .admin-login__card {
    padding: 1.1rem;
  }

  .streamer-card__profile {
    grid-template-columns: 1fr;
  }

  .content-card--streamer.is-featured .streamer-card__profile {
    grid-template-columns: 1fr;
  }

  .guide-step__head {
    grid-template-columns: 1fr;
  }
}
