﻿:root {
  --bg-0: #0c0e13;
  --bg-1: #0c0e13;
  --bg-2: #0d1828;
  --panel-strong: rgba(12, 14, 19, 0.96);
  --panel-soft: rgba(12, 14, 19, 0.82);
  --panel-muted: rgba(255, 255, 255, 0.035);
  --text: #f5f8fc;
  --muted: #9db0c8;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(82, 224, 196, 0.2);
  --accent: #52e0c4;
  --accent-strong: #0fb79d;
  --accent-warm: #ffbe5c;
  --danger: #ff6b6b;
  --danger-strong: #ff4b4b;
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 20px 46px rgba(0, 0, 0, 0.24);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --topbar-height: 58px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(82, 224, 196, 0.18), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(255, 190, 92, 0.14), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(40, 108, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #0c0e13 0%, #0c0e13 44%, #0c0e13 100%);
}

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

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
}

body::after {
  background:
    linear-gradient(120deg, rgba(82, 224, 196, 0.05), transparent 24%, transparent 76%, rgba(255, 190, 92, 0.05));
}

body.page-home {
  background:
    radial-gradient(circle at 12% 8%, rgba(52, 106, 255, 0.22), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(255, 122, 89, 0.14), transparent 18%),
    linear-gradient(180deg, #0c0e13 0%, #0c0e13 14%, #0c0e13 100%);
}

body.page-home .site-shell {
  width: min(1880px, calc(100% - 28px));
  padding-top: calc(var(--topbar-height) + 16px);
}

body.page-dashboard {
  background:
    radial-gradient(circle at 12% 8%, rgba(52, 106, 255, 0.22), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(255, 122, 89, 0.14), transparent 18%),
    linear-gradient(180deg, #0c0e13 0%, #0c0e13 14%, #0c0e13 100%);
}

body.page-dashboard::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

body.page-dashboard .site-shell {
  width: min(1880px, calc(100% - 28px));
  padding-top: calc(var(--topbar-height) + 16px);
}

body.page-profile {
  background:
    radial-gradient(circle at 18% 10%, rgba(82, 224, 196, 0.18), transparent 18%),
    radial-gradient(circle at 78% 12%, rgba(255, 190, 92, 0.14), transparent 18%),
    linear-gradient(180deg, #0c0e13 0%, #0c0e13 50%, #0c0e13 100%);
}

body.page-auth,
body.page-generic {
  background:
    radial-gradient(circle at 20% 10%, rgba(82, 224, 196, 0.16), transparent 18%),
    radial-gradient(circle at 80% 14%, rgba(255, 190, 92, 0.12), transparent 16%),
    linear-gradient(180deg, #0c0e13 0%, #0c0e13 100%);
}

h1,
h2,
h3,
a.brand {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

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

p {
  margin: 0;
}

.site-shell {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--topbar-height) + 16px) 0 64px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 58px;
  padding: 0 max(28px, calc((100dvw - 980px) / 2));
  margin: 0;
  transform: none;
  border: 0;
  border-radius: 0;
  background: #0c0e13;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  overflow: hidden;
  border-radius: 7px;
  background: transparent;
  box-shadow: none;
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar__nav--center {
  justify-content: center;
}

.topbar__nav--actions {
  justify-content: flex-end;
  gap: 18px;
}

.topbar__nav a:not(.button) {
  padding: 8px 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 140ms ease, color 140ms ease;
}

.topbar__nav a:not(.button):hover {
  background: transparent;
  color: var(--text);
}

.notice {
  margin: 0 0 22px;
  padding: 14px 18px;
  border: 1px solid rgba(82, 224, 196, 0.22);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(82, 224, 196, 0.12), rgba(82, 224, 196, 0.06));
  color: #d9fff7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

main {
  display: grid;
  gap: 28px;
}

.site-footer {
  margin-top: 72px;
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50dvw);
  padding: 0;
  background: #0c0e13;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.site-footer__main {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  padding-top: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 180px 180px;
  gap: 140px;
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 18px;
  max-width: 360px;
}

.footer-brand {
  gap: 8px;
  font-size: 0.9rem;
}

.footer-brand .brand__mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.site-footer__brand p {
  color: #91a0b6;
  line-height: 1.65;
  max-width: 34ch;
}

.site-footer__nav {
  display: grid;
  gap: 12px;
}

.site-footer__nav span {
  color: #77859a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__nav a {
  width: fit-content;
  color: #f2f6fc;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 140ms ease;
}

.site-footer__nav a:hover {
  color: var(--accent);
}

.site-footer__bottom {
  width: min(980px, calc(100% - 56px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 62px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  padding-bottom: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #77859a;
  font-size: 0.78rem;
}

.panel-solid,
.panel-soft {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.panel-solid::before,
.panel-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent 34%, transparent 68%, rgba(82, 224, 196, 0.05));
}

.panel-solid > *,
.panel-soft > * {
  position: relative;
  z-index: 1;
}

.panel-solid {
  background:
    radial-gradient(circle at top right, rgba(255, 190, 92, 0.12), transparent 24%),
    radial-gradient(circle at left center, rgba(82, 224, 196, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(18, 33, 55, 0.98), rgba(8, 18, 31, 0.95));
}

.panel-soft {
  background: linear-gradient(180deg, rgba(12, 14, 19, 0.96), rgba(12, 14, 19, 0.9));
}

.hero,
.auth-shell,
.profile-shell,
.dashboard-shell,
.section-block,
.narrow {
  padding: 34px;
}

.auth-shell,
.profile-shell,
.dashboard-shell,
.section-block,
.narrow {
  border-radius: var(--radius-xl);
}

.hero--landing {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(420px, 0.95fr);
  gap: 24px;
  min-height: 500px;
}

.hero__copy,
.hero__panel {
  padding: 6px;
}

.hero__copy {
  display: grid;
  align-content: center;
}

.hero__panel {
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.panel-orb {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 224, 196, 0.24), rgba(82, 224, 196, 0));
  filter: blur(12px);
}

.hero h1,
.auth-shell h1,
.profile-hero h1,
.dashboard-shell h1,
.narrow h1 {
  margin: 8px 0 14px;
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  line-height: 0.94;
}

.hero h2,
.section-heading h2,
.panel-soft h2,
.panel-solid h2,
.application-state h2 {
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.lead {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.micro-label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.micro-label.accent {
  color: var(--accent);
}

.hero__actions,
.card-actions,
.form-actions,
.action-row,
.action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions,
.form-actions,
.card-actions {
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #03211a;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
  box-shadow: 0 16px 38px rgba(15, 183, 157, 0.24);
}

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

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}

.button--small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.95rem;
}

.button--danger {
  background: linear-gradient(135deg, var(--danger), var(--danger-strong));
  color: #260000;
  box-shadow: 0 14px 36px rgba(255, 84, 84, 0.24);
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.small-gap {
  margin-bottom: 14px;
}

.hero-highlights,
.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.signal-card,
.metric-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 160ms ease, border-color 160ms ease;
}

.metric-card:hover,
.signal-card:hover,
.streamer-card:hover,
.application-card:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 224, 196, 0.24);
}

.signal-card strong,
.metric-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
}

.signal-card__label,
.metric-card__label {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(27, 35, 47, 0.96), rgba(24, 31, 42, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.feature-tile__index {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(82, 224, 196, 0.12), rgba(82, 224, 196, 0.08));
  border: 1px solid rgba(82, 224, 196, 0.1);
  color: #f2fffc;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.feature-tile h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.feature-tile p {
  color: var(--muted);
  line-height: 1.65;
}

.home-dashboard-hero,
.home-dashboard-card,
.home-dashboard-wide,
.home-directory-list,
.page-home .plus-section,
.page-dashboard .plus-section {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(12, 14, 19, 0.96), rgba(12, 14, 19, 0.9));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.home-dashboard-hero__panel {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(50, 58, 70, 0.98), rgba(43, 50, 61, 0.96));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.home-dashboard-hero__panel .section-heading,
.home-dashboard-wide .section-heading {
  margin-bottom: 18px;
}

.home-dashboard-hero__panel .section-heading h2,
.home-dashboard-wide .section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.home-dashboard-hero__panel .feature-stack,
.home-dashboard-wide .home-benefit-grid {
  gap: 16px;
}

.home-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.home-dashboard-card,
.home-dashboard-wide,
.home-directory-list,
.page-home .plus-section,
.page-dashboard .plus-section {
  padding: 28px;
  border-radius: 28px;
}

.page-home .plus-section,
.page-dashboard .plus-section {
  backdrop-filter: none;
}

.page-home .plus-section .plus-section__copy,
.page-dashboard .plus-section .plus-section__copy {
  gap: 14px;
}

.page-home .plus-section .lead,
.page-dashboard .plus-section .lead {
  max-width: 34ch;
}

.home-dashboard-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.home-dashboard-card__stats div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(17, 24, 34, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-dashboard-card__stats span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #92a0b4;
}

.home-dashboard-card__stats strong {
  font-size: 1.6rem;
  line-height: 1;
}

.home-news-list,
.home-benefit-grid {
  display: grid;
  gap: 14px;
}

.home-dashboard-wide {
  display: grid;
  gap: 12px;
}

.home-news-list__item {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(17, 24, 34, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-news-list__item strong {
  font-size: 1rem;
}

.home-directory-shell {
  display: grid;
  gap: 22px;
}

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

.directory-streamer-card {
  background: linear-gradient(180deg, rgba(16, 28, 46, 0.98), rgba(12, 22, 37, 0.96));
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

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

.streamer-card,
.application-card {
  align-items: start;
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  min-height: 100%;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.streamer-card::before,
.application-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(82, 224, 196, 0), rgba(82, 224, 196, 0.55), rgba(255, 190, 92, 0.34), rgba(82, 224, 196, 0));
}

.streamer-card__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.streamer-card__identity,
.profile-hero__identity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.streamer-card h3 {
  font-size: 1.45rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  max-width: min(290px, 100%);
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.9rem;
}

.status-pill--live {
  color: #fff4f4;
  border-color: rgba(255, 107, 107, 0.3);
  background: rgba(255, 107, 107, 0.16);
}

.status-pill--idle {
  color: #e4f4ff;
  border-color: rgba(159, 177, 199, 0.22);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.tag--accent {
  background: rgba(82, 224, 196, 0.14);
  border-color: rgba(82, 224, 196, 0.26);
  color: #d8fff7;
}

.tag--live {
  background: rgba(255, 107, 107, 0.16);
  border-color: rgba(255, 107, 107, 0.28);
  color: #fff1f1;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.spec-list.compact {
  margin-top: 18px;
}

.spec-list div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.spec-list dt {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-list dd {
  margin: 0;
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: break-word;
}

.empty-state {
  padding: 34px;
  text-align: center;
  background: linear-gradient(180deg, rgba(11, 24, 42, 0.82), rgba(8, 18, 31, 0.88));
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

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

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(82, 224, 196, 0.26);
  border-color: rgba(82, 224, 196, 0.4);
}

input[type="file"] {
  padding: 14px;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.02);
}

.full-span {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.checkbox-field input {
  width: auto;
  min-height: 0;
}

.dashboard-shell.admin-layout {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 22px;
}

.dashboard-stack,
.user-layout,
.profile-shell,
.streamer-layout,
.application-state {
  display: grid;
  gap: 22px;
}

.admin-hero {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 22px;
  align-items: stretch;
}

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

.side-panel {
  padding: 24px;
  background: linear-gradient(180deg, rgba(12, 24, 40, 0.9), rgba(8, 18, 31, 0.88));
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(10, 19, 32, 0.96);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.inline-form {
  margin: 0;
}

.action-stack {
  flex-direction: column;
  align-items: stretch;
}

.small-text {
  font-size: 0.82rem;
}

.live-summary {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.live-summary--on {
  border-color: rgba(255, 107, 107, 0.34);
  background: rgba(255, 107, 107, 0.14);
}

.live-summary__label {
  font-weight: 700;
}

.avatar {
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.avatar--small {
  width: 58px;
  height: 58px;
}

.avatar--large {
  width: 120px;
  height: 120px;
}

.avatar--hero {
  width: 132px;
  height: 132px;
}

.media-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.media-grid--setup {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.media-preview {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.banner-preview {
  aspect-ratio: 16 / 6;
  object-fit: cover;
  border-radius: 18px;
}

.profile-banner {
  min-height: 320px;
  padding: 34px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), var(--shadow-lg);
}

.profile-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(82, 224, 196, 0.12), transparent 30%, transparent 68%, rgba(255, 190, 92, 0.08));
}

.profile-hero {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.profile-hero__meta {
  display: grid;
  gap: 12px;
  justify-items: end;
  min-width: 220px;
}

.setup-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  align-items: start;
}

.setup-shot {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
  transition: transform 160ms ease, border-color 160ms ease;
}

.setup-shot:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 224, 196, 0.24);
}

.setup-gallery--showcase {
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  grid-auto-rows: minmax(170px, auto);
  gap: 18px;
}

.setup-showcase-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(6, 10, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.setup-showcase-card--featured {
  grid-row: span 2;
}

.setup-showcase-card__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.setup-showcase-card .setup-shot {
  display: block;
  height: 100%;
  min-height: 220px;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.setup-showcase-card--featured .setup-shot {
  min-height: 458px;
}

.setup-showcase-card__hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(8, 12, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #edf5ff;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.setup-showcase-card:hover .setup-showcase-card__hint,
.setup-showcase-card:focus-within .setup-showcase-card__hint {
  opacity: 1;
  transform: translateY(0);
}

.setup-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.setup-lightbox:target {
  display: flex;
}

.setup-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.86);
  backdrop-filter: blur(14px);
}

.setup-lightbox__frame {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0;
  display: grid;
  gap: 12px;
}

.setup-lightbox__frame img {
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 10, 18, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.setup-lightbox__frame figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

.setup-lightbox__close {
  justify-self: end;
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.auth-shell.narrow,
.panel-solid.narrow,
.panel-soft.narrow {
  max-width: 980px;
  margin: 0 auto;
}

#my-profile {
  scroll-margin-top: 96px;
}

@media (max-width: 1080px) {
  .hero--landing,
  .dashboard-shell.admin-layout,
  .admin-hero,
  .card-grid,
  .card-grid--applications {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --topbar-height: 56px;
  }

  .site-shell {
    width: min(100% - 20px, 1480px);
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 56px;
    padding: 0 16px;
  }

  .topbar__nav--center {
    display: none;
  }

  .topbar__nav--actions {
    gap: 10px;
  }

  .topbar__nav--actions a:not(.button) {
    display: none;
  }

  .section-heading,
  .profile-hero,
  .streamer-card__top {
    flex-direction: column;
    align-items: stretch;
  }

  .hero,
  .auth-shell,
  .profile-shell,
  .dashboard-shell,
  .section-block,
  .narrow,
  .profile-banner {
    padding: 22px;
  }

  .hero h1,
  .auth-shell h1,
  .profile-hero h1,
  .dashboard-shell h1,
  .narrow h1 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .hero-highlights,
  .spec-list,
  .form-grid--two,
  .media-grid,
  .setup-gallery {
    grid-template-columns: 1fr;
  }

  .media-grid--setup {
    padding: 16px;
  }

  .streamer-card__identity,
  .profile-hero__identity {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-hero__meta {
    justify-items: start;
    min-width: 0;
  }

  .checkbox-field {
    align-items: flex-start;
  }

  .action-stack {
    flex-direction: row;
  }

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

.platform-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.platform-pill strong {
  font-size: 0.88rem;
}

.platform-pill em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.8rem;
}

.platform-pill span {
  color: var(--muted);
  font-size: 0.8rem;
}

.platform-pill .platform-pill__followers {
  color: #e4ebf7;
  font-weight: 700;
}

.platform-pill--compact {
  min-height: 34px;
  padding: 0 10px;
}

.platform-pill--live {
  border-color: rgba(255, 107, 107, 0.28);
  background: rgba(255, 107, 107, 0.12);
}

.platform-pill--idle {
  border-color: rgba(82, 224, 196, 0.18);
}

.platform-pill--warn {
  border-color: rgba(255, 190, 92, 0.24);
  background: rgba(255, 190, 92, 0.1);
}

.platform-pill i {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 190, 92, 0.14);
  color: #ffe0a6;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.platform-note {
  margin-top: 10px;
  max-width: 68ch;
  line-height: 1.6;
}

.panel-solid,
.panel-soft,
.section-block,
.auth-shell,
.profile-banner,
.side-panel,
.streamer-card,
.application-card,
.metric-card,
.signal-card,
.table-wrap,
.media-grid--setup {
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.panel-soft,
.section-block,
.side-panel,
.table-wrap,
.media-grid--setup,
.streamer-card,
.application-card {
  border-color: rgba(255, 255, 255, 0.1);
}

.section-block {
  background: linear-gradient(180deg, rgba(11, 22, 38, 0.66), rgba(8, 18, 31, 0.5));
  backdrop-filter: blur(16px);
}

.panel-soft,
.section-block,
.media-grid--setup,
.table-wrap {
  border-radius: 26px;
}

.streamer-card,
.application-card,
.metric-card,
.signal-card {
  border-radius: 24px;
}

.streamer-card,
.application-card {
  background:
    linear-gradient(180deg, rgba(14, 27, 45, 0.92), rgba(8, 18, 31, 0.88));
}

.dashboard-shell.admin-layout,
.dashboard-shell.streamer-layout,
.dashboard-shell.user-layout,
.profile-shell {
  gap: 24px;
}

.form-grid label,
.form-grid .full-span,
.checkbox-field {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.form-grid label span,
.checkbox-field span {
  font-weight: 500;
}

.form-grid label input,
.form-grid label textarea,
.form-grid label select,
.checkbox-field input {
  margin-top: 2px;
}

.hero__panel,
.side-panel,
.panel-soft.narrow,
.auth-shell,
.panel-solid.narrow {
  background:
    linear-gradient(180deg, rgba(14, 27, 45, 0.9), rgba(8, 18, 31, 0.86));
}

.profile-banner {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-hero__meta,
.hero__actions,
.card-actions,
.form-actions,
.platform-stack {
  align-items: flex-start;
}

.empty-state {
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

th,
td {
  padding: 14px 12px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 760px) {
  .form-grid label,
  .form-grid .full-span,
  .checkbox-field {
    padding: 12px;
  }
}

.admin-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: start;
}

.admin-hero {
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(82, 224, 196, 0.16);
  background:
    radial-gradient(circle at top right, rgba(255, 190, 92, 0.16), transparent 26%),
    radial-gradient(circle at left center, rgba(82, 224, 196, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(18, 34, 54, 0.98), rgba(7, 16, 28, 0.94));
}

.admin-hero__copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.admin-hero .lead {
  max-width: 54ch;
}

.dashboard-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
  min-height: 160px;
  align-content: end;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.dashboard-stack > .panel-soft,
.side-panel,
#my-profile,
.applications-stack {
  border-radius: 30px;
}

.dashboard-stack > .panel-soft,
.side-panel {
  padding: 26px;
}

.side-panel {
  position: sticky;
  top: 104px;
}

.side-panel .section-heading,
.dashboard-stack > .panel-soft .section-heading,
.applications-stack .section-heading,
.profile-shell .section-heading {
  margin-bottom: 18px;
}

.dashboard-stack > .panel-soft {
  background:
    linear-gradient(180deg, rgba(12, 25, 43, 0.94), rgba(8, 18, 31, 0.9));
}

.table-wrap {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

th {
  background: rgba(8, 17, 30, 0.98);
}

tr td:first-child {
  font-weight: 700;
}

.action-stack .button,
.action-stack .button--ghost,
.action-stack .button--danger {
  width: 100%;
}

.profile-shell {
  gap: 24px;
}

.profile-banner {
  min-height: 420px;
  padding: 38px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(6, 12, 24, 0.12), rgba(6, 12, 24, 0.88)),
    radial-gradient(circle at top right, rgba(255, 190, 92, 0.15), transparent 26%),
    radial-gradient(circle at left center, rgba(82, 224, 196, 0.12), transparent 30%),
    url('/default-banner.svg');
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: end;
}

.profile-hero__identity {
  align-items: end;
  gap: 22px;
  min-width: 0;
}

.profile-hero__identity > div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.profile-hero__meta {
  align-self: stretch;
  justify-items: stretch;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 28, 0.52);
  backdrop-filter: blur(16px);
}

.profile-hero__meta .card-actions {
  margin-top: 4px;
}

.profile-shell > .panel-soft {
  padding: 26px;
}

.profile-shell > .panel-soft:nth-of-type(2) {
  background:
    linear-gradient(180deg, rgba(13, 26, 44, 0.94), rgba(8, 18, 31, 0.9));
}

.media-grid--setup {
  grid-template-columns: 160px 1fr;
  align-items: start;
  gap: 24px;
}

.media-grid--setup > div:first-child {
  display: grid;
  gap: 10px;
}

.form-grid.form-grid--two {
  gap: 20px;
}

.form-grid label,
.form-grid .full-span,
.checkbox-field {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.platform-stack a {
  text-decoration: none;
}

.platform-pill {
  min-height: 42px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.05);
}

.platform-note {
  padding: 12px 14px;
  border: 1px solid rgba(255, 190, 92, 0.16);
  border-radius: 16px;
  background: rgba(255, 190, 92, 0.07);
}

.setup-gallery {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.setup-shot {
  border-radius: 24px;
}

@media (max-width: 1080px) {
  .admin-layout,
  .profile-hero,
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .profile-banner,
  .admin-hero,
  .dashboard-stack > .panel-soft,
  .side-panel,
  .profile-shell > .panel-soft {
    padding: 22px;
  }

  .profile-hero__meta {
    padding: 18px;
  }

  .media-grid--setup {
    grid-template-columns: 1fr;
  }
}


.admin-studio {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: stretch;
  gap: 26px;
}

.dashboard-shell.admin-studio {
  padding: 20px;
}

.admin-sidebar {
  position: sticky;
  top: 90px;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 26px 22px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, rgba(39, 47, 59, 0.98), rgba(43, 51, 63, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.admin-sidebar__brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.admin-sidebar__brand > div {
  min-width: 0;
}

.admin-sidebar__brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3f70ff, #2d4dff);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(38, 74, 198, 0.34);
}

.admin-sidebar__intro,
.admin-sidebar__meta,
.admin-sidebar__stats,
.admin-sidebar__nav {
  display: grid;
  gap: 12px;
}

.admin-sidebar__brand h2 {
  margin: 4px 0 0;
  font-size: 1.7rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.admin-sidebar__intro h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  line-height: 1.08;
}

.admin-sidebar__brand h2,
.admin-sidebar__intro p,
.admin-sidebar__promo p,
.admin-sidebar__meta strong,
.admin-sidebar__stats strong {
  overflow-wrap: break-word;
  word-break: normal;
}

.admin-sidebar__intro p,
.admin-sidebar__promo p {
  line-height: 1.55;
}

.admin-sidebar__meta strong,
.admin-sidebar__stats strong {
  font-size: 0.98rem;
}

.admin-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 14px 15px;
  border-radius: 18px;
  color: #edf2ff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.admin-sidebar__nav-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-sidebar__nav-copy span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #92a0b4;
}

.admin-sidebar__nav a strong {
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}

.admin-sidebar__nav-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #dce5f5;
}

.admin-sidebar__nav-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.admin-sidebar__nav a:hover {
  transform: translateX(4px);
  border-color: rgba(76, 108, 255, 0.34);
  background: rgba(72, 100, 255, 0.1);
}

.admin-sidebar__nav a.is-active {
  border-color: rgba(71, 101, 255, 0.45);
  background: linear-gradient(180deg, rgba(51, 82, 246, 0.3), rgba(51, 82, 246, 0.16));
  box-shadow: inset 0 0 0 1px rgba(116, 141, 255, 0.15);
}

.admin-sidebar__meta div,
.admin-sidebar__stats div,
.profile-stat-list div {
  display: grid;
  gap: 4px;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(17, 22, 30, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-sidebar__meta span,
.admin-sidebar__stats span,
.profile-stat-list span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.admin-sidebar__actions {
  display: grid;
  gap: 12px;
}

.admin-sidebar__promo {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 161, 110, 0.85), rgba(255, 115, 92, 0.9));
  color: #fff9f5;
  box-shadow: 0 18px 34px rgba(159, 70, 48, 0.24);
}

.admin-sidebar__promo .micro-label,
.admin-sidebar__promo .muted {
  color: rgba(255, 249, 245, 0.78);
}

.admin-main,
.profile-workspace,
.profile-showcase {
  display: grid;
  gap: 22px;
}

.admin-main {
  align-content: start;
  min-width: 0;
}

.admin-main__content {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.workspace-main .profile-workspace,
.workspace-main .profile-workspace__grid,
.workspace-main .profile-workspace__hero,
.workspace-main .user-layout {
  gap: 22px;
}

.workspace-hero-card,
.workspace-content-card,
.news-card {
  padding: 28px;
  border-radius: 28px;
}

.workspace-content-card {
  min-width: 0;
}

.workspace-toolbar .admin-toolbar__actions {
  justify-content: flex-end;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(320px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, rgba(12, 14, 19, 0.96), rgba(12, 14, 19, 0.9));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.admin-toolbar__copy {
  display: grid;
  gap: 6px;
}

.admin-toolbar__copy h1 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.admin-toolbar__search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(18, 24, 33, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-toolbar__search svg {
  width: 18px;
  height: 18px;
  fill: #9fb0c7;
}

.admin-toolbar__search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #edf3ff;
  font: inherit;
}

.admin-toolbar__search input::placeholder {
  color: #8f9dae;
}

.admin-toolbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-toolbar__chip {
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-toolbar__chip span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #92a0b4;
}

.admin-toolbar__chip strong {
  font-size: 1.05rem;
}

.admin-duo,
.profile-grid,
.profile-workspace__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.admin-card,
.profile-card,
.profile-workspace__media,
.profile-workspace__form,
.profile-workspace__hero,
.admin-page-header,
.admin-overview-hero,
.admin-summary-card,
.admin-section-card,
.setup-shot-card {
  border-radius: 28px;
}

.admin-card,
.profile-card,
.profile-workspace__media,
.profile-workspace__form,
.admin-page-header,
.admin-overview-hero,
.admin-summary-card,
.admin-section-card {
  padding: 28px;
  min-width: 0;
}

.admin-page-header,
.admin-overview-hero,
.profile-workspace__hero {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(48, 57, 69, 0.98), rgba(43, 50, 61, 0.96));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.admin-page-header h1,
.admin-overview-hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 0.98;
}

.admin-overview-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.admin-overview-hero__copy,
.admin-overview-hero__actions {
  display: grid;
  gap: 14px;
}

.admin-overview-hero__actions {
  justify-items: start;
}

.admin-overview-hero__pill {
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(26, 32, 41, 0.35);
  border: 1px solid rgba(82, 103, 255, 0.18);
}

.admin-overview-hero__pill span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a7b5c8;
}

.admin-overview-hero__pill strong {
  font-size: 2rem;
  line-height: 1;
}

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

.admin-summary-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(50, 58, 70, 0.98), rgba(43, 50, 61, 0.96));
}

.admin-summary-card__label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #95a4b7;
}

.admin-summary-card__top,
.admin-summary-card__value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-summary-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(70, 96, 255, 0.2);
  color: #cfd9ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-summary-card strong {
  font-size: 2.1rem;
  line-height: 1;
}

.admin-section-grid,
.admin-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 22px;
}

.admin-section-card,
.admin-link-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(12, 14, 19, 0.96), rgba(12, 14, 19, 0.9));
}

.admin-section-card--primary {
  min-height: 100%;
}

.admin-nav-list,
.admin-checklist {
  display: grid;
  gap: 14px;
}

.admin-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(19, 24, 32, 0.2);
  color: #f3f6ff;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.admin-nav-row:hover {
  transform: translateY(-2px);
  border-color: rgba(86, 113, 255, 0.28);
  background: rgba(69, 97, 255, 0.08);
}

.admin-nav-row strong {
  display: block;
  margin-bottom: 4px;
}

.admin-nav-row span {
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.admin-checklist div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(19, 24, 32, 0.22);
}

.admin-checklist span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #92a0b4;
}

.admin-mini-feed {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.admin-mini-feed article {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(18, 24, 33, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.news-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(12, 14, 19, 0.96), rgba(12, 14, 19, 0.9));
}

.news-card h2 {
  font-size: 1.45rem;
}

.news-card__meta {
  color: #dce5f7;
  font-size: 0.9rem;
}

.public-profile-showcase .profile-banner--showcase,
.public-profile-showcase .profile-card,
.public-profile-showcase .panel-soft {
  border-color: rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(12, 14, 19, 0.96), rgba(12, 14, 19, 0.9));
}

.public-profile-showcase .profile-banner--showcase {
  background-blend-mode: overlay, normal;
}

.admin-mini-feed span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #92a0b4;
}

.admin-card--table .table-wrap {
  border-radius: 22px;
  max-width: 100%;
}

.admin-list-table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  background: rgba(17, 24, 34, 0.28);
}

.admin-list-table {
  width: 100%;
  min-width: 100%;
  table-layout: auto;
}

.admin-list-table th,
.admin-list-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.admin-list-table th {
  background: rgba(16, 22, 31, 0.92);
  color: #95a4b7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.admin-list-table tbody tr:hover td {
  background: rgba(70, 96, 255, 0.04);
}

.admin-list-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-list-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.admin-list-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.admin-list-avatar--fallback {
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #4765ff, #2f49db);
}

.admin-list-identity__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-list-identity__copy strong,
.admin-list-identity__copy span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-list-identity__copy strong {
  font-size: 0.96rem;
  color: #f5f8ff;
  white-space: nowrap;
}

.admin-list-identity__copy span {
  color: #90a0b6;
  font-size: 0.84rem;
  white-space: nowrap;
}

.admin-list-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-list-badge--neutral {
  background: rgba(255, 255, 255, 0.05);
  color: #d8e0ee;
}

.admin-list-badge--info {
  background: rgba(79, 113, 255, 0.18);
  border-color: rgba(79, 113, 255, 0.22);
  color: #d9e2ff;
}

.admin-list-badge--success {
  background: rgba(69, 194, 116, 0.18);
  border-color: rgba(69, 194, 116, 0.22);
  color: #dcffe8;
}

.admin-list-badge--warning {
  background: rgba(255, 176, 76, 0.18);
  border-color: rgba(255, 176, 76, 0.24);
  color: #fff0cb;
}

.admin-list-badge--danger,
.admin-list-badge--live {
  background: rgba(255, 92, 92, 0.18);
  border-color: rgba(255, 92, 92, 0.22);
  color: #ffe1e1;
}

.admin-list-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-list-actions .button,
.admin-list-actions .inline-form {
  margin: 0;
}

.admin-list-note {
  color: #93a0b2;
  font-size: 0.82rem;
  white-space: nowrap;
}

.admin-profile-stage .profile-workspace {
  gap: 24px;
}

.profile-banner--showcase {
  min-height: 460px;
  padding: 34px;
  overflow: hidden;
}

.profile-banner__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.profile-banner__top .card-actions {
  justify-content: flex-end;
  margin-top: 0;
  min-width: 0;
}

.profile-hero__meta--showcase {
  gap: 20px;
}

.profile-stat-list {
  display: grid;
  gap: 12px;
}

.profile-card--specs,
.profile-card--summary,
.profile-workspace__media,
.profile-workspace__form {
  background: linear-gradient(180deg, rgba(12, 14, 19, 0.96), rgba(12, 14, 19, 0.9));
}

.spec-list--board div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-summary-copy {
  display: grid;
  gap: 20px;
}

.profile-workspace__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
  padding: 32px;
}

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

.profile-workspace__media .setup-gallery {
  margin-top: 10px;
}

.setup-shot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.setup-shot-card .setup-shot {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}

.setup-shot-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.setup-shot-card__meta span {
  font-size: 0.9rem;
  color: var(--muted);
}

 @media (max-width: 1180px) {
  .admin-studio,
  .admin-duo,
  .profile-grid,
  .profile-workspace__grid,
  .profile-workspace__hero,
  .admin-summary-grid,
  .admin-section-grid,
  .admin-page-grid,
  .news-grid,
  .home-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    min-height: auto;
  }

  .admin-sidebar__brand h2 {
    font-size: 1.5rem;
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .admin-toolbar__actions {
    justify-content: flex-start;
  }
}

 @media (max-width: 760px) {
  .admin-sidebar,
  .admin-card,
  .profile-card,
  .profile-workspace__media,
  .profile-workspace__form,
  .admin-page-header,
  .admin-overview-hero,
  .profile-workspace__hero,
  .profile-banner--showcase,
  .admin-summary-card,
  .admin-section-card {
    padding: 22px;
  }

  .profile-banner__top,
  .admin-overview-hero,
  .admin-nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(88, 170, 255, 0.34);
  background: linear-gradient(135deg, rgba(72, 125, 255, 0.24), rgba(88, 224, 255, 0.16));
  color: #eaf4ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 26px rgba(34, 82, 184, 0.22);
}

.partner-badge__icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7db6ff, #4dd7ff);
  color: #071321;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.partner-badge__icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.partner-badge--plus {
  border-color: rgba(255, 196, 94, 0.38);
  background: linear-gradient(135deg, rgba(255, 197, 93, 0.22), rgba(84, 224, 194, 0.14));
  box-shadow: 0 10px 26px rgba(214, 142, 35, 0.18);
}

.partner-badge--plus .partner-badge__icon {
  background: linear-gradient(135deg, #ffd479, #55dec2);
}


.social-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.plus-section {
  display: grid;
  gap: 24px;
}

.plus-section.plus-section--full {
  width: 100%;
  max-width: none;
}

.plus-section__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.plus-section__copy {
  display: grid;
  gap: 12px;
}

.plus-pricing-card,
.plus-perk-card,
.plus-faq div,
.live-embed-card,
.live-chat-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 14, 19, 0.96), rgba(12, 14, 19, 0.9));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.plus-pricing-card {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.plus-pricing-card__eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plus-pricing-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.plus-actions {
  display: grid;
  gap: 12px;
  align-items: start;
}

.plus-actions .button,
.plus-actions .inline-form,
.plus-actions .inline-form button {
  width: 100%;
}

.plus-perk-grid,
.plus-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plus-perk-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 24px;
  align-items: start;
}

.plus-perk-card__index {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(82, 224, 196, 0.12), rgba(82, 224, 196, 0.08));
  border: 1px solid rgba(82, 224, 196, 0.1);
  color: #f2fffc;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.plus-perk-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.plus-perk-card p,
.plus-faq p {
  color: var(--muted);
  line-height: 1.65;
}

.plus-faq div {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.plus-faq span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-experience {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.live-experience__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
}

.live-embed-card,
.live-chat-card {
  overflow: hidden;
}

.live-chat-card {
  min-height: 620px;
}

.live-embed-card iframe,
.live-chat-card iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #0b111d;
}

.live-embed-card iframe {
  aspect-ratio: 16 / 9;
}

.live-chat-card iframe {
  min-height: 100%;
  height: 100%;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(82, 224, 196, 0.26);
  background: rgba(82, 224, 196, 0.08);
}

.social-link__icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5fbff;
}

.social-link__icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-link__label {
  font-weight: 700;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-link__external {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--muted);
}

.social-link__external svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-link--twitch .social-link__icon {
  background: rgba(145, 70, 255, 0.24);
}

.social-link--kick .social-link__icon {
  background: rgba(82, 255, 168, 0.2);
}

.social-link--tiktok .social-link__icon {
  background: rgba(255, 0, 128, 0.16);
}

.social-link--youtube .social-link__icon {
  background: rgba(255, 70, 70, 0.18);
}

.social-link--x .social-link__icon {
  background: rgba(255, 255, 255, 0.12);
}

.social-link--instagram .social-link__icon {
  background: linear-gradient(135deg, rgba(255, 196, 87, 0.24), rgba(255, 81, 124, 0.22), rgba(129, 66, 255, 0.22));
}

.social-link--discord .social-link__icon {
  background: rgba(88, 101, 242, 0.22);
}

body.page-profile .site-shell {
  width: 100%;
  padding-top: var(--topbar-height);
}

body.page-profile .site-footer {
  margin-top: 0;
}

.page-profile .profile-showcase {
  gap: 28px;
  padding: 0 0 56px;
}

.page-profile .profile-showcase > :not(.profile-banner--showcase) {
  width: min(1440px, calc(100% - 44px));
  margin-inline: auto;
}

.page-profile .profile-banner--showcase {
  min-height: clamp(460px, 56vh, 640px);
  width: 100%;
  padding: clamp(190px, 29vh, 300px) max(28px, calc((100dvw - 980px) / 2)) clamp(54px, 8vh, 76px);
  border-radius: 0;
  box-shadow: none;
  background-size: cover;
  background-position: center;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.page-profile .profile-banner--showcase::after {
  background:
    linear-gradient(180deg, rgba(4, 7, 13, 0.08) 0%, rgba(4, 7, 13, 0.22) 42%, rgba(4, 7, 13, 0.96) 100%),
    linear-gradient(90deg, rgba(4, 7, 13, 0.82) 0%, rgba(4, 7, 13, 0.34) 48%, rgba(4, 7, 13, 0.72) 100%);
}

.page-profile .profile-back-link {
  position: absolute;
  left: max(28px, calc((100dvw - 980px) / 2));
  top: clamp(148px, 24vh, 252px);
  z-index: 1;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.page-profile .profile-back-link:hover {
  color: var(--text);
}

.page-profile .profile-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  width: 100%;
  margin: 0;
  min-width: 0;
}

.page-profile .profile-hero__content {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 680px;
}

.page-profile .profile-hero__identity {
  display: flex;
  align-items: end;
  gap: 20px;
  min-width: 0;
}

.page-profile .profile-hero__identity > div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.page-profile .profile-hero__title-row {
  display: grid;
  justify-items: start;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.page-profile .profile-hero__title-row .badge-row {
  order: -1;
  gap: 6px;
}

.page-profile .profile-hero__title-row .tag,
.page-profile .profile-hero__title-row .partner-badge {
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-profile .profile-hero h1 {
  min-width: 0;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.4vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
}

.page-profile .profile-hero__handle {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.page-profile .profile-hero .lead {
  margin: 0;
  font-size: 0.98rem;
  max-width: 66ch;
  line-height: 1.7;
}

.page-profile .profile-hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-profile .avatar--hero {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-radius: 14px;
  border-width: 2px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.3);
}

.page-profile .profile-hero__meta {
  padding: 0;
  justify-items: end;
  align-content: end;
  justify-self: end;
  width: max-content;
  max-width: min(100%, 420px);
  background: none;
  border: 0;
  box-shadow: none;
}

.page-profile .profile-hero__meta .card-actions {
  justify-content: flex-end;
  margin-top: 0;
  gap: 8px;
  flex-wrap: wrap;
}

.page-profile .profile-hero__meta .platform-stack {
  display: none;
}

.page-profile .profile-hero__meta .platform-note {
  display: none;
}

.page-profile .profile-hero__meta .social-link {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  gap: 7px;
  background: rgba(8, 12, 20, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.page-profile .profile-hero__meta .social-link__icon {
  display: none;
}

.page-profile .profile-hero__meta .social-link__label {
  font-size: 0.78rem;
}

.page-profile .profile-hero__meta .button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  box-shadow: none;
}

.page-profile .profile-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: start;
}

.page-profile .profile-card {
  min-height: 0;
}

.page-profile .profile-card--specs {
  padding: 34px;
}

.page-profile .profile-card--summary {
  padding: 34px;
}

.page-profile .spec-list--board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-profile .spec-list--board div {
  min-height: 96px;
  align-content: start;
}

.page-profile .profile-summary-copy {
  align-content: start;
}

.page-profile .social-link-grid {
  gap: 14px;
  min-width: 0;
}

.page-profile .social-link {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 18px;
}

.page-profile .profile-banner__top .social-link {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(8, 12, 20, 0.72);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.page-profile .profile-banner__top .social-link__icon {
  display: none;
}

.page-profile .setup-gallery {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-profile .setup-gallery--showcase {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 18px;
}

.page-profile .setup-shot {
  aspect-ratio: 16 / 10;
  border-radius: 26px;
}

.page-profile .setup-showcase-card .setup-shot {
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

@media (max-width: 1180px) {
  body.page-profile .site-shell {
    width: 100%;
  }

  .page-profile .profile-showcase > :not(.profile-banner--showcase) {
    width: min(100% - 28px, 1520px);
  }

  .page-profile .profile-hero,
  .page-profile .profile-grid,
  .page-profile .profile-stat-list,
  .plus-section__hero,
  .plus-perk-grid,
  .plus-faq,
  .live-experience__grid {
    grid-template-columns: 1fr;
  }

  .page-profile .profile-hero {
    width: 100%;
    gap: 28px;
  }

  .page-profile .profile-back-link {
    top: 154px;
  }

  .page-profile .profile-hero__meta,
  .page-profile .profile-hero__meta .card-actions,
  .page-profile .profile-hero__meta .platform-stack {
    justify-content: flex-start;
    justify-items: start;
  }

  .page-profile .profile-hero__meta {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  body.page-profile .site-shell {
    width: 100%;
  }

  .page-profile .profile-showcase > :not(.profile-banner--showcase) {
    width: min(100% - 20px, 1520px);
  }

  .page-profile .profile-banner--showcase {
    min-height: 620px;
    padding: 176px 20px 34px;
    margin-top: 0;
  }

  .page-profile .profile-back-link {
    left: 20px;
    top: 138px;
  }

  .page-profile .profile-banner__top,
  .page-profile .profile-banner__top .card-actions,
  .page-profile .profile-hero,
  .page-profile .profile-hero__identity {
    align-items: flex-start;
  }

  .page-profile .profile-hero {
    gap: 24px;
  }

  .page-profile .profile-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.15rem);
    line-height: 1.04;
    text-wrap: wrap;
  }

  .page-profile .profile-hero__identity {
    flex-direction: column;
    gap: 16px;
  }

  .page-profile .avatar--hero {
    width: 82px;
    height: 82px;
  }

  .page-profile .profile-hero__details {
    gap: 8px 14px;
  }

  .page-profile .spec-list--board,
  .page-profile .setup-gallery {
    grid-template-columns: 1fr;
  }

  .setup-gallery--showcase,
  .page-profile .setup-gallery--showcase {
    grid-template-columns: 1fr;
  }

  .setup-showcase-card--featured {
    grid-row: auto;
  }

  .setup-showcase-card .setup-shot,
  .setup-showcase-card--featured .setup-shot {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .live-experience,
  .plus-pricing-card,
  .plus-perk-card,
  .plus-faq div {
    padding: 20px;
  }

  .site-footer {
    margin-top: 48px;
  }

  .site-footer__main {
    width: min(100% - 40px, 980px);
    padding-top: 42px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__bottom {
    width: min(100% - 40px, 980px);
    flex-direction: column;
    margin-top: 38px;
    padding-bottom: 42px;
  }

  .live-chat-card iframe {
    min-height: 420px;
  }
}



.admin-page-grid--users {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.52fr);
  align-items: start;
}

.admin-card--users-table {
  min-width: 0;
}

.admin-card--users-table .table-wrap,
.admin-card--streamers-table .table-wrap,
.admin-card--applications-table .table-wrap {
  overflow-x: auto;
  min-height: 315px;
}

.admin-card--users-table th,
.admin-card--users-table td,
.admin-card--streamers-table th,
.admin-card--streamers-table td,
.admin-card--applications-table th,
.admin-card--applications-table td {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-card--users-table td:last-child,
.admin-card--users-table th:last-child,
.admin-card--streamers-table td:last-child,
.admin-card--streamers-table th:last-child,
.admin-card--applications-table td:last-child,
.admin-card--applications-table th:last-child {
  white-space: normal;
  min-width: 220px;
}

.admin-card--users-table td:nth-child(5),
.admin-card--streamers-table td:nth-child(4),
.admin-card--applications-table td:nth-child(4),
.admin-card--applications-table td:nth-child(5) {
  font-size: 0.94rem;
  color: var(--muted);
}

.admin-card--users-table th:nth-child(1),
.admin-card--users-table td:nth-child(1) {
  width: 10%;
}

.admin-card--users-table th:nth-child(2),
.admin-card--users-table td:nth-child(2) {
  width: 12%;
}

.admin-card--users-table th:nth-child(3),
.admin-card--users-table td:nth-child(3) {
  width: 25%;
}

.admin-card--users-table th:nth-child(4),
.admin-card--users-table td:nth-child(4) {
  width: 15%;
}

.admin-card--users-table th:nth-child(5),
.admin-card--users-table td:nth-child(5) {
  width: 14%;
}

.admin-card--users-table th:nth-child(6),
.admin-card--users-table td:nth-child(6) {
  width: 24%;
}

.admin-card--streamers-table th:nth-child(1),
.admin-card--streamers-table td:nth-child(1) {
  width: 9%;
}

.admin-card--streamers-table th:nth-child(2),
.admin-card--streamers-table td:nth-child(2) {
  width: 11%;
}

.admin-card--streamers-table th:nth-child(3),
.admin-card--streamers-table td:nth-child(3) {
  width: 24%;
}

.admin-card--streamers-table th:nth-child(4),
.admin-card--streamers-table td:nth-child(4) {
  width: 14%;
}

.admin-card--streamers-table th:nth-child(5),
.admin-card--streamers-table td:nth-child(5) {
  width: 12%;
}

.admin-card--streamers-table th:nth-child(6),
.admin-card--streamers-table td:nth-child(6) {
  width: 12%;
}

.admin-card--streamers-table th:nth-child(7),
.admin-card--streamers-table td:nth-child(7) {
  width: 18%;
}

.admin-card--applications-table th:nth-child(1),
.admin-card--applications-table td:nth-child(1) {
  width: 8%;
}

.admin-card--applications-table th:nth-child(2),
.admin-card--applications-table td:nth-child(2) {
  width: 11%;
}

.admin-card--applications-table th:nth-child(3),
.admin-card--applications-table td:nth-child(3) {
  width: 23%;
}

.admin-card--applications-table th:nth-child(4),
.admin-card--applications-table td:nth-child(4) {
  width: 12%;
}

.admin-card--applications-table th:nth-child(5),
.admin-card--applications-table td:nth-child(5) {
  width: 18%;
}

.admin-card--applications-table th:nth-child(6),
.admin-card--applications-table td:nth-child(6) {
  width: 11%;
}

.admin-card--applications-table th:nth-child(7),
.admin-card--applications-table td:nth-child(7) {
  width: 17%;
}


.topbar-user {
  position: relative;
}

.topbar-user summary {
  list-style: none;
}

.topbar-user summary::-webkit-details-marker {
  display: none;
}

.topbar-user__trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  min-width: 280px;
  padding: 8px 12px 8px 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  cursor: pointer;
}

.topbar-user__avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(82, 224, 196, 0.2), rgba(255, 190, 92, 0.18));
  color: #effffb;
  flex-shrink: 0;
}

.topbar-user__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topbar-user__avatar-fallback {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.topbar-user__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.topbar-user__copy strong {
  font-size: 0.98rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-user__copy span {
  color: var(--muted);
  font-size: 0.84rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-user__chevron {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 160ms ease;
}

.topbar-user[open] .topbar-user__chevron {
  transform: rotate(180deg);
}

.topbar-user__chevron svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.topbar-user__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 24px));
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(12, 14, 19, 0.98), rgba(12, 14, 19, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.topbar-user__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  color: var(--text);
  transition: background 140ms ease, transform 140ms ease;
}

.topbar-user__item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(2px);
}

.topbar-user__item-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #edf5ff;
  flex-shrink: 0;
}

.topbar-user__item-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.topbar-user__item--danger {
  color: #ffd1d1;
}
