* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #07111a;
  --bg-alt: #0f1f2f;
  --panel: rgba(13, 24, 37, 0.88);
  --panel-soft: rgba(18, 31, 48, 0.72);
  --line: rgba(140, 190, 255, 0.18);
  --line-strong: rgba(140, 190, 255, 0.34);
  --text: #eef5ff;
  --muted: #9fb4cb;
  --accent: #54b2ff;
  --accent-strong: #89d2ff;
  --success: #7cf4b3;
  --warn: #ffc774;
  --danger: #ff8c8c;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --radius-sm: 14px;
  --font-ui: "Segoe UI Variable", "Bahnschrift", "Trebuchet MS", sans-serif;
  --font-mono: "Cascadia Mono", "Consolas", monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(84, 178, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(124, 244, 179, 0.10), transparent 22%),
    linear-gradient(180deg, #08131d 0%, #07111a 50%, #091723 100%);
  color: var(--text);
  font-family: var(--font-ui);
}

a {
  color: inherit;
}

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

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

.page-shell {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
}

.public-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 46px;
  text-decoration: none;
}

.site-brand img {
  width: auto;
  max-width: 168px;
  max-height: 48px;
  object-fit: contain;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(6, 12, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner,
.site-footer__inner {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: inline-block;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background-color: #ffffff;
  background-image: url("/assets/brand/banmoba-symbol.png");
  background-position: center 48%;
  background-repeat: no-repeat;
  background-size: 170%;
  box-shadow: 0 12px 32px rgba(84, 178, 255, 0.24), 0 0 0 1px rgba(84, 178, 255, 0.14);
}

.brand-mark--sm {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.brand-lockup__text {
  display: grid;
  gap: 2px;
}

.brand-lockup__eyebrow {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-lockup__title {
  font-size: 18px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a,
.site-nav button {
  text-decoration: none;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 160ms ease;
}

.site-nav a:hover,
.site-nav button:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  border-color: var(--line);
  background: rgba(84, 178, 255, 0.12);
}

.site-nav form {
  margin: 0;
}

.button,
.button-ghost,
.button-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button {
  background: linear-gradient(135deg, #1e88ff 0%, #55c2ff 100%);
  color: #06111c;
  font-weight: 800;
  border-color: transparent;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-danger {
  background: rgba(255, 140, 140, 0.12);
  color: #ffd4d4;
  border-color: rgba(255, 140, 140, 0.22);
}

.button:hover,
.button-ghost:hover,
.button-danger:hover {
  transform: translateY(-1px);
}

.button:disabled,
.button-ghost:disabled,
.button-danger:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.button.is-loading,
.button-ghost.is-loading,
.button-danger.is-loading,
.auth-submit.is-loading {
  pointer-events: none;
  opacity: 0.78;
  transform: none;
}

.button.is-loading::after,
.button-ghost.is-loading::after,
.button-danger.is-loading::after,
.auth-submit.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: banmobaSpin 0.75s linear infinite;
}

@keyframes banmobaSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes banmobaQuoteReveal {
  0% {
    opacity: 0.76;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  padding: 72px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.panel,
.glass-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy,
.panel {
  padding: 28px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(124, 244, 179, 0.10);
  color: var(--success);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-title {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-lead,
.copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stats-grid,
.card-grid,
.mini-grid,
.detail-grid {
  display: grid;
  gap: 16px;
}

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

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

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 20px;
}

.blog-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.blog-cover--hero {
  margin: 18px 0;
}

.blog-article {
  margin-top: 20px;
}

.blog-content {
  color: #d6e4f5;
  line-height: 1.78;
}

.blog-content h2,
.blog-content h3 {
  color: var(--text);
  margin: 28px 0 10px;
}

.blog-content a {
  color: var(--accent-strong);
}

.blog-content blockquote {
  margin: 20px 0;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
}

.mini-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 24px;
  align-items: start;
}

.support-heading {
  margin-bottom: 18px;
}

.support-form-columns,
.support-thread__heading {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: start;
}

.support-form-columns > * {
  flex: 1 1 0;
}

.support-table-wrap {
  overflow-x: auto;
}

.support-table-wrap .table-lite {
  width: 100%;
  min-width: 420px;
}

.support-messages {
  display: grid;
  gap: 12px;
  max-height: 460px;
  overflow-y: auto;
}

.support-message {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.support-message--user {
  border-color: rgba(124, 244, 179, 0.24);
}

.support-message p {
  margin: 0;
  line-height: 1.6;
}

.support-message .caption {
  margin-bottom: 8px;
}

.support-admin-detail {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.security-heading,
.security-session-header,
.device-session-row,
.device-session-title {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.security-heading {
  margin-bottom: 18px;
}

.security-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.security-session-header h2 {
  margin: 0 0 6px;
}

.device-session-list {
  display: grid;
  gap: 12px;
}

.device-session-row {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.device-session-info {
  min-width: 0;
}

.device-session-info p {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
}

.device-session-title {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.security-form {
  max-width: 560px;
  margin-top: 12px;
}

.security-form h3,
.security-recovery h3 {
  margin: 0;
}

.security-recovery,
.security-secret {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.recovery-code-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recovery-code-grid code,
.security-secret__value {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(6, 12, 18, 0.84);
  color: var(--text);
  overflow-wrap: anywhere;
}

.security-uri {
  overflow-wrap: anywhere;
}

.auth-secondary-action {
  margin-top: 14px;
}

.auth-secondary-action .button-ghost {
  width: 100%;
}

.metric {
  padding: 18px;
  border-radius: 18px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric__value {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  font-weight: 800;
}

.metric__label,
.caption {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 14px 0 30px;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.section-lead {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 780px;
  line-height: 1.7;
}

.flash {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.flash--success {
  background: rgba(124, 244, 179, 0.10);
  color: #d6ffe6;
}

.flash--error {
  background: rgba(255, 140, 140, 0.10);
  color: #ffd8d8;
}

.flash--info {
  background: rgba(84, 178, 255, 0.10);
  color: #d7efff;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(6, 12, 18, 0.84);
  color: var(--text);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: rgba(255, 115, 115, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 115, 115, 0.14);
}

.field-error {
  margin: 0;
  color: #ffb4b4;
  font-size: 12px;
  line-height: 1.45;
}

.checkbox-row {
  display: grid;
  gap: 12px;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.checkbox input {
  margin-top: 3px;
}

.auth-canvas {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 24px;
  overflow: hidden;
}

.auth-canvas::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(ellipse 76% 54% at 50% 0%, rgba(40, 147, 248, 0.22), transparent 62%),
    radial-gradient(ellipse 48% 40% at 90% 28%, rgba(158, 124, 255, 0.15), transparent 64%),
    radial-gradient(ellipse 44% 34% at 12% 88%, rgba(255, 93, 115, 0.12), transparent 64%),
    linear-gradient(180deg, #060b13 0%, #0b1420 50%, #131c2a 100%);
}

.auth-wrap {
  width: min(460px, 100%);
}

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
  color: #9fb0c7;
  font-size: 14px;
  text-decoration: none;
}

.auth-back:hover,
.auth-back:focus-visible {
  color: var(--text);
}

.auth-card {
  position: relative;
  overflow: hidden;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  background: rgba(14, 21, 34, 0.87);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(28px) saturate(140%);
}

.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(40, 147, 248, 0.66), transparent);
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.auth-logo .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 0 34px rgba(40, 147, 248, 0.35);
}

.auth-card h1 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.auth-subtitle {
  margin: 0 0 26px;
  color: #9fb0c7;
  font-size: 14px;
  line-height: 1.55;
}

.auth-process {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 0 25px;
  padding: 8px 14px;
  border: 1px solid rgba(79, 229, 169, 0.3);
  border-radius: 999px;
  background: rgba(79, 229, 169, 0.1);
  color: #4fe5a9;
  font-size: 13px;
  font-weight: 700;
}

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

.auth-registration-lock {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 196, 111, 0.42);
  border-radius: 8px;
  background: rgba(245, 196, 111, 0.08);
  color: #f5c46f;
  font-size: 13px;
  line-height: 1.5;
}

.auth-field {
  display: grid;
  gap: 7px;
}

.auth-label {
  color: #9fb0c7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.auth-input-wrap {
  position: relative;
}

.auth-input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #131c2a;
  color: var(--text);
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.auth-input::placeholder {
  color: #72849c;
}

.auth-input:focus {
  outline: none;
  border-color: #2893f8;
  box-shadow: 0 0 0 4px rgba(40, 147, 248, 0.18);
}

.auth-input-wrap .auth-input {
  padding-right: 68px;
}

.auth-field.is-invalid .auth-input,
.auth-input[aria-invalid="true"] {
  border-color: rgba(255, 115, 115, 0.82);
  box-shadow: 0 0 0 4px rgba(255, 115, 115, 0.16);
}

.auth-error {
  margin: 0;
  color: #ffb4b4;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.auth-error::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border-radius: 50%;
  background: rgba(255, 115, 115, 0.14);
  color: #ffd8d8;
  font-size: 11px;
}

.auth-error--check {
  margin-top: -6px;
}

.auth-toggle {
  position: absolute;
  top: 50%;
  right: 9px;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  transform: translateY(-50%);
  background: transparent;
  color: #9fb0c7;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.auth-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.auth-hint {
  margin: 0;
  color: #72849c;
  font-size: 12px;
}

.auth-row-end {
  display: flex;
  justify-content: flex-end;
  margin: -2px 0 2px;
}

.auth-link,
.auth-check a,
.auth-switch a {
  color: #5cb4ff;
  font-weight: 600;
  text-decoration: none;
}

.auth-link:hover,
.auth-check a:hover,
.auth-switch a:hover {
  text-decoration: underline;
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 14px;
  background: #2893f8;
  box-shadow: 0 0 40px rgba(40, 147, 248, 0.35);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease;
}

.auth-submit:not(:disabled):hover {
  background: #5cb4ff;
  transform: translateY(-1px);
}

.auth-submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.55;
}

.auth-check-list {
  display: grid;
  gap: 12px;
  margin: 2px 0 3px;
}

.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #9fb0c7;
  font-size: 13px;
  line-height: 1.48;
}

.auth-check input {
  flex: none;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #2893f8;
}

.auth-check.is-invalid {
  color: #ffd8d8;
}

.auth-check.is-invalid input,
.auth-check input[aria-invalid="true"] {
  outline: 2px solid rgba(255, 115, 115, 0.72);
  outline-offset: 2px;
}

.auth-switch {
  margin: 25px 0 0;
  color: #9fb0c7;
  font-size: 14px;
  text-align: center;
}

.auth-back:focus-visible,
.auth-logo:focus-visible,
.auth-link:focus-visible,
.auth-check a:focus-visible,
.auth-switch a:focus-visible,
.auth-toggle:focus-visible,
.auth-submit:focus-visible {
  outline: 2px solid #2893f8;
  outline-offset: 3px;
}

.commerce-canvas {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 32px 24px 48px;
  background: linear-gradient(180deg, #060b13 0%, #0b1420 54%, #131c2a 100%);
}

.commerce-canvas::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(40, 147, 248, 0.12), transparent 34%, rgba(158, 124, 255, 0.08) 70%, rgba(79, 229, 169, 0.06));
  content: "";
  pointer-events: none;
}

.commerce-shell {
  position: relative;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.commerce-shell--trial {
  width: min(980px, 100%);
}

.commerce-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #9fb0c7;
  font-size: 14px;
  text-decoration: none;
}

.commerce-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.commerce-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f8ff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.commerce-brand .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.commerce-brand--center {
  justify-content: center;
  margin: 0 auto 26px;
  color: #9fb0c7;
  font-size: 14px;
  font-weight: 500;
}

.commerce-brand--center .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.commerce-provider {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #9fb0c7;
  font-size: 13px;
}

.commerce-provider a,
.commerce-support {
  color: #5cb4ff;
  text-decoration: none;
}

.commerce-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 32px;
  align-items: start;
}

.commerce-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(14, 21, 34, 0.78);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(28px) saturate(140%);
}

.commerce-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(40, 147, 248, 0.64), transparent);
  content: "";
}

.commerce-panel--trial {
  margin-top: 12px;
  padding: 44px clamp(24px, 6vw, 62px);
  text-align: center;
}

.commerce-panel h1 {
  margin: 0 0 12px;
  color: #f4f8ff;
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: 0;
}

.commerce-panel h2 {
  margin: 0 0 18px;
  color: #f4f8ff;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.commerce-lead {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #9fb0c7;
  font-size: 16px;
  line-height: 1.65;
}

.commerce-lead--left {
  margin-left: 0;
}

.commerce-lock {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 199, 116, 0.26);
  border-radius: 50%;
  background: rgba(255, 199, 116, 0.08);
  box-shadow: 0 0 40px rgba(255, 199, 116, 0.14);
}

.commerce-lock span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffc774;
  color: #0b1420;
  font-size: 28px;
  font-weight: 700;
}

.commerce-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.commerce-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.commerce-chip--ok {
  border-color: rgba(79, 229, 169, 0.3);
  background: rgba(79, 229, 169, 0.08);
  color: #4fe5a9;
}

.commerce-chip--pending {
  border-color: rgba(40, 147, 248, 0.3);
  background: rgba(40, 147, 248, 0.08);
  color: #5cb4ff;
}

.commerce-chip--locked {
  border-color: rgba(255, 199, 116, 0.28);
  background: rgba(255, 199, 116, 0.08);
  color: #ffc774;
}

.commerce-prereqs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: left;
}

.commerce-prereq {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #0b1420;
}

.commerce-prereq span {
  color: #72849c;
  font-size: 12px;
}

.commerce-prereq strong {
  color: #f4f8ff;
  font-size: 14px;
  line-height: 1.4;
}

.commerce-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.commerce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.commerce-button--primary {
  background: #2893f8;
  box-shadow: 0 0 40px rgba(40, 147, 248, 0.3);
  color: #fff;
}

.commerce-button--primary:hover:not(:disabled) {
  background: #5cb4ff;
  transform: translateY(-1px);
}

.commerce-button--primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.commerce-button--ghost {
  border-color: rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #f4f8ff;
}

.commerce-button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.commerce-notice {
  margin: 0;
  padding: 15px 18px;
  border: 1px solid rgba(40, 147, 248, 0.24);
  border-radius: 14px;
  background: rgba(40, 147, 248, 0.08);
  color: #9fb0c7;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.commerce-notice--left {
  margin-top: 22px;
  text-align: left;
}

.commerce-form {
  display: grid;
  gap: 22px;
}

.commerce-plan-fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.commerce-plan-fieldset legend {
  margin: 0 0 12px;
  color: #9fb0c7;
  font-size: 13px;
  font-weight: 600;
}

.commerce-plan {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #0b1420;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.commerce-plan:hover,
.commerce-plan:has(input:focus-visible) {
  border-color: rgba(40, 147, 248, 0.4);
}

.commerce-plan.is-selected {
  border-color: #2893f8;
  background: rgba(40, 147, 248, 0.07);
}

.commerce-plan input {
  position: absolute;
  opacity: 0;
}

.commerce-plan-dot {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.commerce-plan.is-selected .commerce-plan-dot {
  border-color: #2893f8;
  background: #2893f8;
}

.commerce-plan.is-selected .commerce-plan-dot::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.commerce-plan-text {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.commerce-plan-text strong {
  color: #f4f8ff;
  font-size: 17px;
}

.commerce-plan-text small,
.commerce-plan-price small {
  color: #72849c;
  font-size: 12px;
  font-weight: 500;
}

.commerce-plan-price {
  display: grid;
  gap: 3px;
  color: #f4f8ff;
  font-family: var(--font-mono);
  font-size: 21px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.commerce-coupon {
  display: grid;
  gap: 9px;
}

.commerce-coupon label {
  color: #9fb0c7;
  font-size: 13px;
  font-weight: 600;
}

.commerce-coupon div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.commerce-coupon input {
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #131c2a;
  color: #f4f8ff;
  text-transform: uppercase;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.commerce-coupon input.has-value {
  border-color: rgba(92, 180, 255, 0.32);
  background: #152336;
  box-shadow: 0 0 0 3px rgba(40, 147, 248, 0.10);
}

.commerce-button {
  position: relative;
}

.commerce-button.is-loading {
  cursor: progress;
  opacity: 0.86;
}

.commerce-button__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: banmobaSpin 720ms linear infinite;
}

.commerce-button.is-loading .commerce-button__spinner {
  display: inline-block;
}

.commerce-button.is-loading .commerce-button__label {
  opacity: 0.86;
}

.commerce-billing {
  display: grid;
  gap: 14px;
  padding-top: 2px;
}

.commerce-billing h2,
.commerce-frame h2 {
  margin: 0;
  color: #f4f8ff;
  font-size: 16px;
  font-weight: 650;
}

.commerce-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.commerce-field {
  display: grid;
  gap: 8px;
  color: #9fb0c7;
  font-size: 13px;
  font-weight: 600;
}

.commerce-field--wide {
  grid-column: 1 / -1;
}

.commerce-field input,
.commerce-field textarea {
  min-width: 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #131c2a;
  color: #f4f8ff;
  font: inherit;
  font-weight: 500;
}

.commerce-field input {
  height: 50px;
}

.commerce-field textarea {
  min-height: 88px;
  padding-block: 13px;
  resize: vertical;
}

.commerce-consents {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(40, 147, 248, 0.24);
  border-radius: 14px;
  background: rgba(40, 147, 248, 0.06);
}

.commerce-consents legend {
  padding: 0 6px;
  color: #f4f8ff;
  font-size: 14px;
  font-weight: 650;
}

.commerce-consents label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #9fb0c7;
  font-size: 13px;
  line-height: 1.55;
}

.commerce-consents input {
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: #2893f8;
}

.commerce-consents a {
  color: #70bdff;
}

.commerce-notice--locked {
  margin-top: 0;
  color: #ffc774;
}

.commerce-payment-action {
  display: grid;
  gap: 12px;
}

.commerce-frame {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.commerce-frame[hidden] {
  display: none;
}

.commerce-frame iframe {
  width: 100%;
  min-height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #fff;
}

.commerce-status {
  min-height: 24px;
  margin: 21px 0 0;
  color: #9fb0c7;
  font-size: 14px;
  transition: color 160ms ease, opacity 160ms ease;
}

.commerce-status.is-loading {
  color: #d7efff;
}

.commerce-status.is-error {
  color: #ff8c8c;
}

.commerce-status.is-success {
  color: #4fe5a9;
}

.commerce-summary {
  display: grid;
  gap: 13px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: #0b1420;
  border: 1px solid rgba(92, 180, 255, 0.10);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.commerce-summary[hidden] {
  display: none;
}

.commerce-summary.is-updating {
  opacity: 0.68;
  transform: translateY(2px);
  border-color: rgba(92, 180, 255, 0.26);
}

.commerce-summary.is-fresh {
  animation: banmobaQuoteReveal 360ms ease both;
}

.commerce-summary-row,
.commerce-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #9fb0c7;
  font-size: 14px;
}

.commerce-summary strong {
  color: #f4f8ff;
  font-family: var(--font-mono);
}

.commerce-summary .commerce-summary-total {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4f8ff;
  font-weight: 700;
}

.commerce-side {
  display: grid;
  gap: 22px;
}

.commerce-side-state {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #0b1420;
}

.commerce-side-state span {
  color: #72849c;
  font-size: 12px;
}

.commerce-side-state strong {
  color: #ffc774;
  font-size: 14px;
  line-height: 1.5;
}

.commerce-feature-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  color: #9fb0c7;
  font-size: 14px;
  line-height: 1.55;
  list-style: none;
}

.commerce-feature-list li {
  position: relative;
  padding-left: 22px;
}

.commerce-feature-list li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5cb4ff;
  content: "";
}

.commerce-support {
  width: fit-content;
  font-size: 14px;
}

.commerce-back:focus-visible,
.commerce-brand:focus-visible,
.commerce-provider a:focus-visible,
.commerce-button:focus-visible,
.commerce-plan:has(input:focus-visible),
.commerce-coupon input:focus-visible,
.commerce-field input:focus-visible,
.commerce-field textarea:focus-visible,
.commerce-consents a:focus-visible,
.commerce-support:focus-visible {
  outline: 2px solid #2893f8;
  outline-offset: 3px;
}

.video-stage {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 0;
}

.video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.video-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-slide__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.hero-token {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  min-height: 46px;
  padding: 6px 10px 6px 6px;
  border-radius: 14px;
  background: rgba(11, 20, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-token > span {
  min-width: 0;
  max-width: min(46vw, 220px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-token img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-token button {
  min-width: 28px;
  min-height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.has-modal-open {
  overflow: hidden;
}

.draft-mode-dialog[hidden] {
  display: none;
}

.draft-mode-dialog {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
}

.draft-mode-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 13, 0.76);
  backdrop-filter: blur(10px);
}

.draft-mode-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #0b1420;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.draft-mode-dialog__panel:focus {
  outline: none;
}

.draft-mode-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.draft-mode-dialog__head h2 {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 26px;
}

.draft-mode-dialog__close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.draft-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.draft-mode-card {
  position: relative;
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-align: left;
  text-decoration: none;
}

.draft-mode-card--active {
  cursor: pointer;
}

.draft-mode-card--active:hover,
.draft-mode-card--active:focus-visible {
  border-color: rgba(40, 147, 248, 0.74);
  background: rgba(40, 147, 248, 0.12);
  outline: none;
}

.draft-mode-card--locked {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.72;
}

.draft-mode-card--locked:focus-visible {
  outline: 2px solid rgba(245, 196, 111, 0.82);
  outline-offset: 3px;
}

.draft-mode-card__lock-tip {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(245, 196, 111, 0.28);
  border-radius: 10px;
  background: rgba(9, 14, 22, 0.96);
  color: #f7d99e;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  font-size: 12px;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.draft-mode-card--locked:hover .draft-mode-card__lock-tip,
.draft-mode-card--locked:focus-visible .draft-mode-card__lock-tip {
  opacity: 1;
  transform: translateY(0);
}

.draft-mode-card__label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #8fd1ff;
  background: rgba(40, 147, 248, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.draft-mode-card strong,
.draft-mode-card span:last-child {
  display: block;
}

.draft-mode-card strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.draft-mode-card span:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.draft-mode-card .draft-mode-card__lock-tip {
  color: #f7d99e;
  line-height: 1.45;
}

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

.table-lite th,
.table-lite td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

.table-lite th {
  color: var(--muted);
  font-weight: 600;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.status-chip--ok {
  color: var(--success);
}

.status-chip--warn {
  color: var(--warn);
}

.status-chip--danger {
  color: var(--danger);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-grid--compact {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

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

.search-box {
  display: grid;
}

.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: rgba(6, 12, 18, 0.84);
  color: var(--text);
}

.hero-catalog-summary {
  align-content: start;
}

.hero-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}

.hero-catalog-card {
  display: grid;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-catalog-card:hover,
.hero-catalog-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(18, 31, 48, 0.94);
}

.hero-catalog-card__media {
  display: grid;
  min-height: 128px;
  background: rgba(84, 178, 255, 0.08);
}

.hero-catalog-card__media img {
  width: 100%;
  height: 128px;
  object-fit: cover;
}

.hero-catalog-card.is-image-missing .hero-catalog-card__media::before,
.hero-detail-card.is-image-missing::before {
  content: "Gorsel yuklenemedi";
  display: grid;
  place-items: center;
  min-height: 96px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 13px;
}

.hero-catalog-card__body {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.hero-catalog-card__body strong {
  font-size: 17px;
}

.hero-catalog-card__body span {
  color: var(--muted);
  font-size: 13px;
}

.hero-detail-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-detail-card__image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(84, 178, 255, 0.08);
}

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

.profile-identity {
  display: grid;
  gap: 6px;
}

.profile-identity span {
  color: var(--muted);
}

.profile-avatar-preview {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 244, 179, 0.22);
  background: linear-gradient(135deg, rgba(84, 178, 255, 0.24), rgba(124, 244, 179, 0.12));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.profile-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-preview span {
  color: var(--text);
  font-size: 34px;
  font-weight: 850;
}

.profile-editor-section {
  padding-top: 8px;
}

.profile-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.profile-form {
  height: 100%;
}

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

.profile-avatar-tool {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.profile-avatar-tool canvas {
  width: 142px;
  height: 142px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(6, 12, 18, 0.84);
}

.profile-avatar-tool__copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.profile-avatar-tool__copy h3,
.profile-avatar-tool__copy p {
  margin: 0;
}

.profile-avatar-tool__copy p {
  color: var(--muted);
  line-height: 1.6;
}

.profile-file-trigger {
  width: fit-content;
  cursor: pointer;
}

.profile-avatar-tool input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.profile-form .button {
  width: fit-content;
}

.profile-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.access-timeline {
  display: grid;
  gap: 14px;
}

.access-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.access-step__index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 800;
}

.access-step h3 {
  margin: 0 0 6px;
}

.access-step p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.access-step.is-complete {
  border-color: rgba(124, 244, 179, 0.25);
}

.access-step.is-complete .access-step__index {
  color: #06111c;
  background: var(--success);
}

.detail-grid--account .metric__value {
  font-size: 20px;
  overflow-wrap: anywhere;
}

.settings-grid {
  align-items: stretch;
}

.settings-card {
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.settings-card:hover,
.settings-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(18, 31, 48, 0.94);
}

.settings-card h3,
.paywall-plan-card h2 {
  margin: 0;
}

.settings-detail-section {
  scroll-margin-top: 96px;
}

.settings-detail-grid,
.settings-privacy-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.settings-detail-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

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

.settings-preference-form .button,
.settings-state-panel .button-ghost,
.settings-privacy-grid .button,
.settings-privacy-grid .button-ghost {
  width: fit-content;
}

.settings-state-panel h3,
.settings-privacy-grid h3 {
  margin: 0;
}

.settings-privacy-grid .security-session-header {
  align-items: flex-start;
}

.settings-privacy-grid .helper-text {
  overflow-wrap: anywhere;
}

.checkout-result .commerce-shell {
  display: grid;
  min-height: calc(100vh - 96px);
  place-items: center;
}

.checkout-result__panel {
  width: min(720px, 100%);
  text-align: center;
}

.commerce-lock--ok {
  border-color: rgba(124, 244, 179, 0.26);
  background: rgba(124, 244, 179, 0.08);
  box-shadow: 0 0 40px rgba(124, 244, 179, 0.14);
}

.commerce-lock--ok span {
  background: var(--success);
}

.commerce-lock--warn {
  border-color: rgba(255, 140, 140, 0.28);
  background: rgba(255, 140, 140, 0.08);
  box-shadow: 0 0 40px rgba(255, 140, 140, 0.14);
}

.commerce-lock--warn span {
  background: var(--danger);
}

.paywall-shell {
  display: grid;
  gap: 24px;
}

.paywall-panel {
  text-align: center;
}

.paywall-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.paywall-plan-card {
  align-content: start;
}

.paywall-price {
  margin: 0;
  color: var(--text);
  font-size: 32px;
  font-weight: 800;
}

.paywall-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.subscription-table-shell,
.invoice-table-shell,
.coupon-table-shell {
  overflow-x: auto;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.subscription-table,
.invoice-table {
  min-width: 760px;
}

.invoice-button {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.invoice-button__icon {
  display: inline-grid;
  min-width: 34px;
  min-height: 22px;
  place-items: center;
  border-radius: 7px;
  background: rgba(242, 215, 161, 0.16);
  color: var(--accent-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.invoice-button__spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: banmobaSpin 720ms linear infinite;
}

.invoice-button.is-loading {
  cursor: progress;
  opacity: 0.86;
}

.invoice-button.is-loading .invoice-button__spinner {
  display: inline-block;
}

.admin-coupon-panel {
  gap: 18px;
}

.coupon-panel-heading h2 {
  margin: 0 0 6px;
}

body.is-admin-surface .operations-coupon-create-detail {
  overflow: hidden;
  border: 1px solid rgba(242, 215, 161, 0.13);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.is-admin-surface .operations-coupon-create-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
}

body.is-admin-surface .operations-coupon-create-summary::-webkit-details-marker {
  display: none;
}

body.is-admin-surface .operations-coupon-create-summary strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}

body.is-admin-surface .operations-coupon-create-summary .helper-text {
  margin: 0;
}

body.is-admin-surface .operations-coupon-create-detail:not([open]) > .operations-coupon-create-body {
  display: none;
}

body.is-admin-surface .operations-coupon-create-body {
  padding: 0 16px 16px;
}

.coupon-form-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.44);
}

.coupon-field {
  grid-column: span 3;
}

.coupon-field--code,
.coupon-field--type {
  grid-column: span 3;
}

.coupon-field--number {
  grid-column: span 2;
}

.coupon-field--date {
  grid-column: span 3;
}

.coupon-field input[type="number"],
.coupon-field input[type="datetime-local"],
.coupon-inline-edit input[type="number"],
.coupon-inline-edit input[type="datetime-local"] {
  font-family: var(--font-mono);
}

.coupon-toggle {
  display: inline-flex;
  grid-column: span 2;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(242, 215, 161, 0.13);
  border-radius: 14px;
  background: rgba(202, 166, 93, 0.08);
  color: var(--text);
  font-weight: 700;
}

.coupon-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-strong);
}

.coupon-form-actions {
  grid-column: span 2;
}

.coupon-form-actions .button {
  width: 100%;
}

.coupon-inline-edit {
  min-width: 760px;
  grid-template-columns: 1.2fr 1fr .9fr .9fr 1.15fr 1.15fr auto auto;
  gap: 8px;
  align-items: center;
}

.coupon-inline-edit input,
.coupon-inline-edit select {
  min-height: 40px;
  border-radius: 10px;
}

.coupon-toggle--compact {
  min-height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 13px;
}

body.is-internal-surface {
  --bg: #050a12;
  --bg-alt: #07111f;
  --panel: rgba(16, 26, 43, 0.88);
  --panel-soft: rgba(21, 34, 56, 0.76);
  --line: rgba(242, 215, 161, 0.16);
  --line-strong: rgba(242, 215, 161, 0.34);
  --text: #fffaf0;
  --muted: #aeb8c8;
  --accent: #caa65d;
  --accent-strong: #f2d7a1;
  --success: #4fe5a9;
  --warn: #f2d7a1;
  --danger: #ff8c8c;
  --sidebar-width: 304px;
  --toolbar-height: 76px;
  --radius: 22px;
  --radius-sm: 16px;
  background:
    linear-gradient(135deg, rgba(202, 166, 93, 0.10), transparent 28%),
    linear-gradient(180deg, #050a12 0%, #07111f 42%, #101a2b 100%);
}

body.is-internal-surface.is-sidebar-compact {
  --sidebar-width: 92px;
}

body.is-internal-surface.is-internal-focus-mode {
  --toolbar-height: 68px;
  --radius: 18px;
  background:
    linear-gradient(135deg, rgba(202, 166, 93, 0.08), transparent 24%),
    linear-gradient(180deg, #050a12 0%, #07111f 54%, #0b1422 100%);
}

body.is-internal-surface .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px 20px;
  align-items: start;
}

body.is-internal-surface .field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

body.is-internal-surface .field--wide {
  grid-column: 1 / -1;
}

body.is-internal-surface .field label,
body.is-internal-surface .media-upload-field {
  color: #d9e2ef;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

body.is-internal-surface .helper-text,
body.is-internal-surface .field small {
  color: rgba(217, 226, 239, 0.68);
  line-height: 1.55;
}

body.is-internal-surface .field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
body.is-internal-surface .field select,
body.is-internal-surface .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(242, 215, 161, 0.18);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.06);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

body.is-internal-surface .field textarea {
  min-height: 118px;
  line-height: 1.55;
  resize: vertical;
}

body.is-internal-surface .field select {
  color-scheme: dark;
}

body.is-internal-surface .field input:focus,
body.is-internal-surface .field select:focus,
body.is-internal-surface .field textarea:focus {
  outline: none;
  border-color: rgba(202, 166, 93, 0.64);
  background: rgba(255, 253, 248, 0.09);
  box-shadow: 0 0 0 4px rgba(202, 166, 93, 0.14);
}

body.is-internal-surface .field input:disabled,
body.is-internal-surface .field select:disabled,
body.is-internal-surface .field textarea:disabled {
  cursor: not-allowed;
  color: rgba(217, 226, 239, 0.52);
  background: rgba(255, 255, 255, 0.035);
}

body.is-internal-surface .button-row {
  gap: 10px;
  align-items: center;
}

body.is-internal-surface .admin-kpi-grid .metric,
body.is-internal-surface .admin-settings-grid .metric {
  border-radius: 22px;
}

body.is-internal-surface .media-reorder-form {
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(202, 166, 93, 0.06));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

body.is-internal-surface .media-sort-handle,
body.is-internal-surface .media-sort-controls button,
body.is-internal-surface .marketing-faq__order {
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.07);
}

body.is-internal-surface .media-upload-field input[type="file"],
body.is-internal-surface .field input[type="file"] {
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 253, 248, 0.055);
}

body.is-admin-surface .admin-console {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  align-items: start;
  width: 100%;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(202, 166, 93, 0.08), transparent 30%),
    linear-gradient(180deg, #050a12 0%, #07111f 52%, #101a2b 100%);
}

body.is-admin-surface .admin-sidebar {
  display: flex;
  flex-direction: column;
  grid-row: 1 / 3;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 18px;
  overflow-y: auto;
  background: linear-gradient(180deg, #07111f 0%, #050a12 100%);
  border-right: 1px solid rgba(242, 215, 161, 0.18);
  box-shadow: 18px 0 42px rgba(0, 0, 0, 0.25);
}

body.is-admin-surface .admin-sidebar::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(242, 215, 161, 0.72), transparent);
}

body.is-admin-surface .admin-sidebar__brand {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 56px;
  margin: 0 2px 10px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

body.is-admin-surface .admin-sidebar__brand .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border-color: rgba(242, 215, 161, 0.48);
  background-size: 132%;
  box-shadow: 0 16px 34px rgba(202, 166, 93, 0.18), 0 0 0 1px rgba(202, 166, 93, 0.20);
}

body.is-admin-surface .admin-sidebar__role {
  display: inline-flex;
  margin: 0 2px 24px;
  padding: 7px 11px;
  border: 1px solid rgba(242, 215, 161, 0.32);
  border-radius: 999px;
  background: rgba(202, 166, 93, 0.09);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

body.is-admin-surface .admin-sidebar__nav,
body.is-admin-surface .admin-sidebar__group {
  display: grid;
  gap: 6px;
}

body.is-admin-surface .admin-sidebar__nav {
  flex: 1 1 auto;
  align-content: start;
}

body.is-admin-surface .admin-sidebar__group {
  margin-bottom: 20px;
}

body.is-admin-surface .admin-sidebar__label {
  margin: 0 12px 5px;
  color: #7f8da3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.is-admin-surface .admin-sidebar__link {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px 12px 8px 10px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: #b9c3d3;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body.is-admin-surface .admin-sidebar__link-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 215, 161, 0.18);
  border-radius: 14px;
  color: var(--accent-strong);
  background: rgba(255, 253, 248, 0.06);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

body.is-admin-surface .admin-sidebar__link-svg {
  width: 18px;
  height: 18px;
}

body.is-admin-surface .admin-sidebar__link-copy {
  min-width: 0;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-admin-surface .admin-sidebar__link:hover,
body.is-admin-surface .admin-sidebar__link.is-active {
  color: var(--text);
  border-color: rgba(242, 215, 161, 0.30);
  background: linear-gradient(135deg, rgba(202, 166, 93, 0.20), rgba(15, 118, 110, 0.11));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.20);
}

body.is-admin-surface .admin-sidebar__link:hover .admin-sidebar__link-icon,
body.is-admin-surface .admin-sidebar__link.is-active .admin-sidebar__link-icon {
  border-color: rgba(242, 215, 161, 0.36);
  background: linear-gradient(135deg, rgba(242, 215, 161, 0.18), rgba(15, 118, 110, 0.16));
}

body.is-admin-surface .admin-sidebar__link.is-active::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2d7a1, #caa65d);
}

body.is-admin-surface .admin-sidebar__link:hover {
  transform: translateX(2px);
}

body.is-admin-surface .admin-main {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  padding: 22px clamp(18px, 2.6vw, 34px) 48px;
}

body.is-admin-surface .admin-header {
  position: sticky;
  top: var(--toolbar-height);
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--toolbar-height);
  gap: 20px;
  margin: -22px calc(clamp(18px, 2.6vw, 34px) * -1) 24px;
  padding: 12px clamp(18px, 2.6vw, 34px);
  border-bottom: 1px solid rgba(242, 215, 161, 0.14);
  background: rgba(5, 10, 18, 0.78);
  backdrop-filter: blur(20px) saturate(150%);
}

body.is-admin-surface .admin-header__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.is-admin-surface .admin-header .section-title {
  margin-bottom: 0;
}

body.is-admin-surface .admin-health {
  display: flex;
  align-items: center;
  gap: 12px 22px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 15px 18px;
  border: 1px solid rgba(242, 215, 161, 0.16);
  border-radius: 16px;
  background: rgba(16, 26, 43, 0.82);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

body.is-admin-surface .admin-health__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

body.is-admin-surface .admin-health__item strong {
  color: var(--text);
}

body.is-admin-surface .admin-health__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warn);
}

body.is-admin-surface .admin-health__dot.is-ok {
  background: var(--success);
}

body.is-admin-surface .admin-dashboard-workspace {
  display: grid;
  gap: 18px;
}

body.is-admin-surface .admin-dashboard-summary,
body.is-admin-surface .admin-dashboard-actions {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  margin-bottom: 0;
}

body.is-admin-surface .admin-dashboard-summary .settings-runtime-card__head,
body.is-admin-surface .admin-dashboard-actions .settings-runtime-card__head {
  min-width: 0;
  align-items: flex-start;
}

body.is-admin-surface .admin-dashboard-summary .settings-runtime-card__head > div,
body.is-admin-surface .admin-dashboard-actions .settings-runtime-card__head > div {
  min-width: 0;
}

body.is-admin-surface .admin-dashboard-health {
  margin-bottom: 16px;
  background: rgba(5, 10, 18, 0.42);
}

body.is-admin-surface .admin-dashboard-metrics {
  margin-bottom: 0;
}

body.is-admin-surface .admin-dashboard-actions .section-lead {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

body.is-admin-surface .admin-dashboard-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

body.is-admin-surface .admin-dashboard-action-card {
  min-width: 0;
  min-height: 178px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(242, 215, 161, 0.10), transparent 58%),
    rgba(21, 34, 56, 0.78);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

body.is-admin-surface .admin-dashboard-action-card:hover {
  border-color: rgba(242, 215, 161, 0.34);
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(202, 166, 93, 0.20), rgba(15, 118, 110, 0.14)),
    rgba(21, 34, 56, 0.84);
}

body.is-admin-surface .admin-dashboard-action-card strong {
  font-size: 20px;
  line-height: 1.15;
}

body.is-admin-surface .admin-dashboard-action-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

body.is-admin-surface .admin-dashboard-action-card em {
  color: var(--accent-strong);
  font-style: normal;
  font-weight: 800;
}

body.is-admin-surface .admin-dashboard-action-card__status {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(242, 215, 161, 0.24);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.is-admin-surface .marketing-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

body.is-admin-surface .marketing-workspace {
  display: grid;
  gap: 18px;
}

body.is-admin-surface .marketing-tabs {
  position: sticky;
  top: calc((var(--toolbar-height) * 2) + 10px);
  z-index: 22;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(242, 215, 161, 0.16);
  border-radius: 22px;
  background: rgba(5, 10, 18, 0.84);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(150%);
}

body.is-admin-surface .marketing-tab {
  min-width: 0;
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: #b9c3d3;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

body.is-admin-surface .marketing-tab span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

body.is-admin-surface .marketing-tab small {
  overflow: hidden;
  color: rgba(217, 226, 239, 0.62);
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-admin-surface .marketing-tab:hover,
body.is-admin-surface .marketing-tab.is-active,
body.is-admin-surface .marketing-tab[aria-selected="true"] {
  color: var(--text);
  border-color: rgba(242, 215, 161, 0.34);
  background: linear-gradient(135deg, rgba(202, 166, 93, 0.22), rgba(15, 118, 110, 0.16));
  transform: translateY(-1px);
}

body.is-admin-surface .marketing-section {
  display: grid;
  gap: 16px;
  scroll-margin-top: calc(var(--toolbar-height) + 104px);
}

body.is-admin-surface .marketing-section[hidden] {
  display: none !important;
}

body.is-admin-surface .marketing-workspace.is-js-ready .marketing-section[hidden] {
  display: none !important;
}

body.is-admin-surface .marketing-workspace.is-js-ready .marketing-section[data-marketing-panel]:not(.marketing-section--overview):not([hidden]) {
  max-height: min(920px, calc(100vh - var(--toolbar-height) - 170px));
  overflow: auto;
  padding-right: 4px;
  scrollbar-gutter: stable;
}

body.is-admin-surface .marketing-section--overview {
  display: grid;
  gap: 18px;
}

body.is-admin-surface .marketing-section-card,
body.is-admin-surface .marketing-panel-card {
  display: grid;
  gap: 16px;
  overflow: hidden;
}

body.is-admin-surface .marketing-panel-card {
  padding: 18px;
}

body.is-admin-surface .marketing-panel-card--notice {
  min-height: 0;
}

body.is-admin-surface .marketing-panel-card__head {
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(242, 215, 161, 0.12);
}

body.is-admin-surface .marketing-panel-card__head h3,
body.is-admin-surface .marketing-panel-card__head .section-title {
  margin-bottom: 4px;
}

body.is-admin-surface .marketing-table-shell {
  max-height: min(62vh, 660px);
  overflow: auto;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 16px;
  background: rgba(5, 10, 18, 0.28);
}

body.is-admin-surface .marketing-table-shell--media {
  height: clamp(340px, 46vh, 540px);
  max-height: min(62vh, 660px);
}

body.is-admin-surface .media-track-summary,
body.is-admin-surface .media-track-source {
  display: grid;
  gap: 4px;
  min-width: 0;
}

body.is-admin-surface .media-track-summary strong,
body.is-admin-surface .media-track-source span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-admin-surface .media-track-summary span,
body.is-admin-surface .media-track-source small {
  min-width: 0;
  color: rgba(217, 226, 239, 0.64);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-admin-surface .media-sort-order-input--hidden {
  display: none !important;
}

body.is-admin-surface .media-track-actions {
  align-items: start;
  gap: 8px;
}

body.is-admin-surface .media-track-editor {
  min-width: min(520px, 54vw);
  border-radius: 8px;
  background: transparent;
}

body.is-admin-surface .media-track-editor > .marketing-action-detail__summary {
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border-radius: 8px;
}

body.is-admin-surface .media-track-editor__body {
  display: grid;
  gap: 12px;
  min-width: min(520px, 54vw);
  padding: 12px;
}

body.is-admin-surface .media-track-editor__body .marketing-pricing__editor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.is-admin-surface .media-track-editor__body .field--wide {
  grid-column: 1 / -1;
}

body.is-admin-surface .marketing-responsive-table {
  min-width: 780px;
}

body.is-admin-surface .marketing-responsive-table input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
body.is-admin-surface .marketing-responsive-table select,
body.is-admin-surface .marketing-responsive-table textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid rgba(242, 215, 161, 0.18);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.055);
  color: var(--text);
  color-scheme: dark;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

body.is-admin-surface .marketing-responsive-table input:focus,
body.is-admin-surface .marketing-responsive-table select:focus,
body.is-admin-surface .marketing-responsive-table textarea:focus {
  outline: none;
  border-color: rgba(202, 166, 93, 0.64);
  background: rgba(255, 253, 248, 0.09);
  box-shadow: 0 0 0 4px rgba(202, 166, 93, 0.14);
}

body.is-admin-surface .marketing-responsive-table input[type="file"] {
  box-sizing: border-box;
  width: 100%;
  padding: 9px;
  border: 1px dashed rgba(242, 215, 161, 0.22);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.045);
  color: rgba(217, 226, 239, 0.74);
}

body.is-admin-surface .marketing-responsive-table input[type="file"]::file-selector-button {
  margin-right: 8px;
  border: 1px solid rgba(242, 215, 161, 0.24);
  border-radius: 10px;
  background: rgba(202, 166, 93, 0.14);
  color: var(--text);
  font-weight: 800;
}

body.is-admin-surface .marketing-responsive-table th,
body.is-admin-surface .marketing-responsive-table td,
body.is-admin-surface .marketing-panel-card,
body.is-admin-surface .marketing-page-detail,
body.is-admin-surface .marketing-page-detail__body,
body.is-admin-surface .marketing-action-card,
body.is-admin-surface .marketing-overview-card,
body.is-admin-surface .marketing-overview-metrics .metric,
body.is-admin-surface .marketing-overview-metrics .metric__value,
body.is-admin-surface .preview-box,
body.is-admin-surface .marketing-faq__preview,
body.is-admin-surface .marketing-faq__preview li {
  min-width: 0;
  overflow-wrap: anywhere;
}

body.is-admin-surface .marketing-pricing__editor,
body.is-admin-surface .marketing-seo__editor,
body.is-admin-surface .marketing-faq__editor {
  padding: 16px;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.035);
}

body.is-admin-surface .marketing-faq__editor {
  grid-template-columns: minmax(0, 1fr);
}

body.is-admin-surface .marketing-faq__editor > .marketing-faq__editor-row,
body.is-admin-surface .marketing-faq__editor > .field,
body.is-admin-surface .marketing-faq__editor > .helper-text,
body.is-admin-surface .marketing-faq__editor > button {
  grid-column: 1 / -1;
  min-width: 0;
}

body.is-admin-surface .marketing-faq__editor-row {
  min-width: 0;
  grid-template-columns: 36px minmax(0, 0.8fr) minmax(0, 1.2fr);
}

body.is-admin-surface .marketing-faq__editor-row input,
body.is-admin-surface .marketing-faq__editor-row textarea {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.is-admin-surface .marketing-action-detail {
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.04);
  overflow: hidden;
}

body.is-admin-surface .marketing-action-detail__summary {
  min-height: 52px;
  cursor: pointer;
  list-style: none;
}

body.is-admin-surface .marketing-action-detail__summary::-webkit-details-marker {
  display: none;
}

body.is-admin-surface .marketing-action-detail[open] {
  border-color: rgba(242, 215, 161, 0.28);
  background: rgba(15, 118, 110, 0.08);
}

body.is-admin-surface .marketing-action-detail__body {
  margin: 0;
  border-width: 1px 0 0;
  border-radius: 0;
  background: rgba(5, 10, 18, 0.26);
}

body.is-admin-surface .marketing-action-detail:not([open]) > .marketing-action-detail__body {
  display: none !important;
}

body.is-admin-surface .marketing-action-detail--inline {
  margin-top: 12px;
}

body.is-admin-surface .marketing-action-detail--inline .marketing-action-detail__summary {
  min-height: 42px;
  padding: 10px 12px;
}

body.is-admin-surface .marketing-action-card--media-create > .marketing-action-detail__summary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.is-admin-surface .marketing-action-card--media-create:not([open]) {
  min-height: 76px;
}

body.is-admin-surface .marketing-action-card--media-create > .marketing-action-detail__summary span:first-child {
  display: grid;
  gap: 3px;
  min-width: 0;
}

body.is-admin-surface .marketing-action-card--media-create > .marketing-action-detail__summary h3 {
  margin: 0;
}

body.is-admin-surface .marketing-action-card--media-create > .marketing-action-detail__summary small {
  color: rgba(217, 226, 239, 0.64);
  font-size: 12px;
}

body.is-admin-surface .marketing-action-card--media-create .marketing-pricing__editor {
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.is-admin-surface .marketing-page-detail {
  gap: 0;
  padding: 0;
}

body.is-admin-surface .marketing-page-list {
  display: grid;
  gap: 14px;
  max-height: min(980px, 72vh);
  overflow: auto;
  padding: 2px 4px 10px;
  -webkit-overflow-scrolling: touch;
}

body.is-admin-surface .marketing-page-detail__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-height: 60px;
  padding: 14px;
}

body.is-admin-surface .marketing-page-detail__summary::-webkit-details-marker {
  display: none;
}

body.is-admin-surface .marketing-page-detail__body {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-top: 1px solid rgba(242, 215, 161, 0.12);
  background: rgba(5, 10, 18, 0.18);
}

body.is-admin-surface .marketing-overview-metrics {
  margin: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

body.is-admin-surface .marketing-overview-metrics .metric {
  min-height: 118px;
}

body.is-admin-surface .marketing-overview-metrics .metric__value {
  font-size: 22px;
}

body.is-admin-surface .marketing-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

body.is-admin-surface .marketing-overview-card {
  position: relative;
  isolation: isolate;
  min-height: 138px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(202, 166, 93, 0.16), transparent 34%),
    linear-gradient(150deg, rgba(255, 253, 248, 0.07), rgba(16, 26, 43, 0.72));
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
  color: var(--text);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.is-admin-surface .marketing-overview-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 12px;
  left: 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(202, 166, 93, 0.90), rgba(15, 118, 110, 0.68), transparent);
}

body.is-admin-surface .marketing-overview-card:hover {
  border-color: rgba(242, 215, 161, 0.34);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.30);
  transform: translateY(-2px);
}

body.is-admin-surface .marketing-overview-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.is-admin-surface .marketing-overview-card strong {
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
}

body.is-admin-surface .marketing-overview-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

body.is-admin-surface.is-internal-theme-light .marketing-overview-metrics .metric,
body.is-admin-surface.is-internal-theme-effective-light .marketing-overview-metrics .metric {
  border-color: rgba(22, 32, 43, 0.14);
  background:
    radial-gradient(circle at 86% 10%, rgba(202, 166, 93, 0.18), transparent 36%),
    radial-gradient(circle at 12% 0%, rgba(15, 118, 110, 0.10), transparent 34%),
    #fffdf8;
  box-shadow: 0 18px 48px rgba(44, 35, 23, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.is-admin-surface.is-internal-theme-light .marketing-overview-metrics .metric__label,
body.is-admin-surface.is-internal-theme-effective-light .marketing-overview-metrics .metric__label {
  color: #334155;
}

body.is-admin-surface.is-internal-theme-light .marketing-overview-metrics .metric__value,
body.is-admin-surface.is-internal-theme-effective-light .marketing-overview-metrics .metric__value {
  color: #101827;
}

body.is-admin-surface.is-internal-theme-light .marketing-overview-card,
body.is-admin-surface.is-internal-theme-effective-light .marketing-overview-card {
  border-color: rgba(22, 32, 43, 0.14);
  background:
    radial-gradient(circle at 84% 8%, rgba(202, 166, 93, 0.16), transparent 34%),
    linear-gradient(150deg, rgba(255, 253, 248, 0.94), rgba(241, 234, 223, 0.88)),
    #fffdf8;
  box-shadow: 0 20px 54px rgba(44, 35, 23, 0.14);
  color: #172033;
}

body.is-admin-surface.is-internal-theme-light .marketing-overview-card span,
body.is-admin-surface.is-internal-theme-effective-light .marketing-overview-card span {
  color: #334155;
}

body.is-admin-surface.is-internal-theme-light .marketing-overview-card strong,
body.is-admin-surface.is-internal-theme-effective-light .marketing-overview-card strong {
  color: #101827;
}

body.is-admin-surface.is-internal-theme-light .marketing-overview-card small,
body.is-admin-surface.is-internal-theme-effective-light .marketing-overview-card small {
  color: #425064;
}

body.is-admin-surface .marketing-track-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.is-admin-surface .marketing-track-preview span {
  max-width: 220px;
  overflow: hidden;
  padding: 7px 10px;
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-admin-surface .marketing-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(242, 215, 161, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.075), rgba(15, 118, 110, 0.08));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

body.is-admin-surface .marketing-section-heading .section-title {
  margin-bottom: 0;
}

body.is-admin-surface .settings-hub {
  display: grid;
  gap: 14px;
}

body.is-admin-surface .settings-hub__intro {
  padding: 18px 20px;
  border: 1px solid rgba(242, 215, 161, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.075), rgba(15, 118, 110, 0.08));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.20);
}

body.is-admin-surface .settings-hub__intro .section-title {
  max-width: 860px;
  margin-bottom: 8px;
}

body.is-admin-surface .settings-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

body.is-admin-surface .settings-hub-card {
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(242, 215, 161, 0.10), transparent 58%),
    rgba(21, 34, 56, 0.78);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

body.is-admin-surface .settings-hub-card:hover {
  border-color: rgba(242, 215, 161, 0.34);
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(202, 166, 93, 0.20), rgba(15, 118, 110, 0.14)),
    rgba(21, 34, 56, 0.84);
}

body.is-admin-surface .settings-hub-card strong {
  font-size: 17px;
  line-height: 1.18;
}

body.is-admin-surface .settings-hub-card small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.is-admin-surface .settings-hub-card__status {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(242, 215, 161, 0.24);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.is-admin-surface .settings-hub__security {
  display: grid;
  align-items: start;
  gap: 0;
  padding: 0;
}

body.is-admin-surface .settings-hub__security .section-title {
  margin-bottom: 0;
}

body.is-admin-surface .settings-hub__security-summary {
  box-sizing: border-box;
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 14px 16px;
}

body.is-admin-surface .settings-hub__security > .settings-hub__security-summary {
  box-sizing: border-box;
  min-height: 58px;
  padding: 8px 12px;
  gap: 8px;
}

body.is-admin-surface .settings-hub__security-body {
  padding: 14px 16px 16px;
}

body.is-admin-surface .settings-hub__security:not([open]) .settings-hub__security-body {
  display: none;
}

body.is-internal-surface [data-internal-crm-workspace] {
  min-width: 0;
  max-width: 100%;
}

body.is-admin-surface .legal-workspace {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: start;
  gap: 14px;
  min-width: 0;
}

body.is-admin-surface .legal-panel-card {
  min-width: 0;
  align-content: start;
}

body.is-admin-surface .legal-panel-card__head {
  gap: 12px;
}

body.is-admin-surface .legal-panel-card__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
}

body.is-admin-surface .legal-panel-card__title {
  min-width: 0;
  display: grid;
  gap: 3px;
}

body.is-admin-surface .legal-panel-card__title h2 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-admin-surface .legal-panel-card__meta {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-admin-surface .legal-panel-card__summary::-webkit-details-marker {
  display: none;
}

body.is-admin-surface .legal-panel-card__summary::after {
  content: "Ac";
  flex: 0 0 auto;
  min-width: 54px;
  border: 1px solid rgba(242, 215, 161, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--color-gold);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.is-admin-surface .legal-panel-card[open] .legal-panel-card__summary::after {
  content: "Kapat";
}

body.is-admin-surface .legal-panel-card__body {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

body.is-admin-surface .legal-panel-card__notice {
  margin: 0;
}

body.is-admin-surface .legal-panel-card__table {
  max-height: 240px;
  overflow: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
  scrollbar-width: thin;
}

body.is-admin-surface .legal-panel-card__version-draft {
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.045);
}

body.is-admin-surface .legal-panel-card__version-draft > summary {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  list-style: none;
}

body.is-admin-surface .legal-panel-card__version-draft > summary::-webkit-details-marker {
  display: none;
}

body.is-admin-surface .legal-panel-card__version-draft[open] {
  padding: 14px;
}

body.is-admin-surface .legal-panel-card__version-draft[open] > summary {
  margin-bottom: 14px;
}

body.is-admin-surface .legal-panel-card__version-form {
  margin-top: 0;
}

body.is-admin-surface .legal-panel-card__version-form textarea {
  min-height: 150px;
  resize: vertical;
}

body.is-admin-surface .settings-workspace {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.55fr);
  align-items: start;
  gap: 18px;
}

body.is-admin-surface .settings-workspace__aside,
body.is-admin-surface .settings-workspace__primary {
  min-width: 0;
  display: grid;
  gap: 18px;
}

body.is-admin-surface .settings-workspace__aside {
  position: sticky;
  top: calc(var(--toolbar-height) + 18px);
}

body.is-admin-surface .settings-runtime-card {
  border-color: rgba(242, 215, 161, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.075), rgba(15, 118, 110, 0.08)),
    rgba(16, 26, 43, 0.88);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.20);
}

body.is-admin-surface .settings-runtime-shell-card {
  overflow: hidden;
  border-radius: 22px;
}

body.is-admin-surface .settings-runtime-card--summary {
  overflow: hidden;
}

body.is-admin-surface .settings-runtime-card--summary::before {
  content: "";
  display: block;
  height: 4px;
  margin: -18px -18px 0;
  background: linear-gradient(90deg, var(--accent), rgba(15, 118, 110, 0.72));
}

body.is-admin-surface .settings-runtime-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

body.is-admin-surface .settings-runtime-card__head .section-title {
  margin-bottom: 0;
}

body.is-admin-surface .settings-runtime-shell-card__head {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242, 215, 161, 0.10);
}

body.is-admin-surface .settings-runtime-status-list {
  display: grid;
  gap: 8px;
}

body.is-admin-surface .settings-runtime-status-list div {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.055);
}

body.is-admin-surface .settings-runtime-status-list span {
  color: rgba(217, 226, 239, 0.64);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.is-admin-surface .settings-runtime-status-list strong {
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

body.is-admin-surface .settings-runtime-back {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(242, 215, 161, 0.22);
  border-radius: 999px;
  color: var(--accent-strong);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

body.is-admin-surface .settings-runtime-back:hover {
  border-color: rgba(242, 215, 161, 0.42);
  background: rgba(202, 166, 93, 0.12);
  color: var(--text);
}

body.is-admin-surface .settings-runtime-form {
  padding: 16px;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.36);
}

body.is-admin-surface .settings-runtime-table-wrap,
body.is-app-surface .settings-runtime-table-wrap {
  min-width: 0;
  overflow-x: auto;
}

body.is-admin-surface .settings-runtime-empty,
body.is-app-surface .settings-runtime-empty {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.36);
}

body.is-admin-surface .settings-runtime-form--compact {
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: end;
}

body.is-admin-surface .admin-two-factor-workspace {
  margin-top: 6px;
}

body.is-admin-surface .admin-two-factor-workspace .settings-runtime-card {
  display: grid;
  gap: 16px;
}

body.is-admin-surface .admin-two-factor-workspace .section-lead {
  max-width: 64ch;
  margin: 0;
}

body.is-admin-surface .admin-two-factor-workspace .admin-two-factor-status-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-admin-surface .admin-two-factor-form {
  max-width: none;
}

body.is-admin-surface .admin-two-factor-secret-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(260px, 1fr);
  gap: 14px;
}

body.is-admin-surface .admin-two-factor-secret-grid textarea,
body.is-admin-surface .admin-two-factor-secret-grid input,
body.is-admin-surface .admin-two-factor-message {
  overflow-wrap: anywhere;
}

body.is-admin-surface .admin-two-factor-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.is-admin-surface .admin-two-factor-detail {
  overflow: hidden;
}

body.is-admin-surface .admin-two-factor-card--actions .admin-dashboard-action-card {
  min-height: 176px;
}

body.is-admin-surface .admin-two-factor-action-card {
  min-height: 152px;
}

body.is-admin-surface .settings-runtime-actions {
  align-self: end;
  justify-content: flex-start;
}

body.is-admin-surface .settings-runtime-check {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.is-admin-surface .settings-runtime-diagnostics {
  margin-bottom: 18px;
}

body.is-admin-surface .settings-runtime-detail {
  padding: 0;
}

body.is-admin-surface .settings-runtime-detail-summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

body.is-admin-surface .settings-runtime-detail-summary::-webkit-details-marker {
  display: none;
}

body.is-admin-surface .settings-runtime-detail-summary::after {
  content: "Ac";
  min-width: 52px;
  justify-self: end;
  padding: 7px 11px;
  border: 1px solid rgba(242, 215, 161, 0.20);
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(202, 166, 93, 0.10);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

body.is-admin-surface .settings-runtime-detail[open] > .settings-runtime-detail-summary::after {
  content: "Kapat";
}

body.is-admin-surface .settings-runtime-detail__body {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

body.is-admin-surface .settings-runtime-detail__body > .helper-text {
  margin: 0;
}

body.is-admin-surface .settings-paytr-workspace .settings-runtime-form {
  margin: 0;
}

body.is-admin-surface .settings-email-workspace .settings-runtime-form {
  margin: 0;
}

body.is-admin-surface .settings-email-detail {
  overflow: hidden;
}

body.is-admin-surface .settings-branding-form-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.is-admin-surface .settings-branding-form {
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}

body.is-admin-surface .settings-branding-form .button {
  width: 100%;
}

body.is-admin-surface .settings-branding-social-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

body.is-admin-surface .settings-branding-social-form .button {
  grid-column: 1 / -1;
  justify-self: end;
  min-width: 168px;
}

body.is-admin-surface .settings-branding-assets .brand-asset-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-height: min(760px, 68vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
  scrollbar-width: thin;
  align-content: start;
}

body.is-admin-surface .settings-branding-assets .brand-asset-card {
  display: grid;
  align-content: start;
  gap: 10px;
  border-color: rgba(242, 215, 161, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(242, 215, 161, 0.08), transparent 58%),
    rgba(7, 17, 31, 0.42);
}

body.is-admin-surface .settings-branding-assets .brand-asset-preview {
  height: 116px;
  margin-bottom: 0;
  border-color: rgba(242, 215, 161, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(5, 10, 18, 0.92), rgba(16, 26, 43, 0.86));
}

body.is-admin-surface .settings-branding-assets .brand-asset-preview img {
  max-height: 86px;
}

body.is-admin-surface .settings-branding-assets .brand-asset-form {
  grid-template-columns: minmax(0, 1fr) minmax(116px, 0.72fr);
  align-items: end;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(242, 215, 161, 0.10);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.045);
}

body.is-admin-surface .settings-branding-assets .brand-asset-upload .button {
  grid-column: 1 / -1;
  justify-self: end;
  min-width: 96px;
}

body.is-admin-surface .settings-branding-assets .brand-asset-form:not(.brand-asset-upload) {
  grid-template-columns: minmax(0, 1fr) auto;
}

body.is-admin-surface .brand-asset-card__editor {
  min-width: 0;
  margin-top: 2px;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.045);
}

body.is-admin-surface .brand-asset-card__editor > summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  cursor: pointer;
  list-style: none;
}

body.is-admin-surface .brand-asset-card__editor > summary::-webkit-details-marker {
  display: none;
}

body.is-admin-surface .brand-asset-card__editor[open] {
  padding: 12px;
}

body.is-admin-surface .brand-asset-card__editor[open] > summary {
  margin-bottom: 12px;
}

body.is-admin-surface .brand-asset-card__editor .brand-asset-form:first-of-type {
  margin-top: 0;
}

body.is-admin-surface .settings-branding-detail {
  padding: 0;
  gap: 0;
  overflow: hidden;
}

body.is-admin-surface .settings-branding-detail-summary {
  min-height: 76px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

body.is-admin-surface .settings-branding-detail-summary::-webkit-details-marker {
  display: none;
}

body.is-admin-surface .settings-branding-detail-summary::after {
  content: "Ac";
  flex: 0 0 auto;
  min-width: 48px;
  padding: 7px 10px;
  border: 1px solid rgba(242, 215, 161, 0.20);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

body.is-admin-surface .settings-branding-detail[open] > .settings-branding-detail-summary::after {
  content: "Kapat";
}

body.is-admin-surface .settings-branding-detail__body {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

body.is-admin-surface .settings-branding-detail__body > .helper-text {
  margin: 0;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] {
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.9fr);
  gap: 14px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-workspace__aside,
body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-workspace__primary {
  gap: 12px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-runtime-card--summary {
  gap: 10px;
  padding: 14px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-runtime-card--summary::before {
  margin: -14px -14px 0;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-runtime-card--summary .settings-runtime-card__head {
  gap: 10px;
  padding-bottom: 10px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-runtime-status-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-runtime-status-list div {
  padding: 9px 10px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-runtime-status-list strong {
  font-size: 12px;
  line-height: 1.25;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-runtime-back {
  min-height: 38px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-detail-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  min-height: 62px;
  gap: 10px;
  padding: 12px 14px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-detail-summary .admin-header__eyebrow {
  margin-bottom: 2px;
  font-size: 10.5px;
  line-height: 1.1;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-detail-summary .section-title {
  font-size: 18px;
  line-height: 1.14;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-detail-summary .status-chip {
  min-height: 28px;
  padding: 4px 9px;
  font-size: 10.5px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-detail-summary::after {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 28px;
  padding: 0 9px;
  font-size: 10.5px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-detail__body {
  gap: 10px;
  padding: 0 14px 14px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-assets .settings-branding-detail__body > .helper-text {
  display: none;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-assets .brand-asset-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  max-height: min(430px, calc(100vh - 520px));
  gap: 10px;
  padding-right: 4px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-assets .brand-asset-card {
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-assets .brand-asset-card__heading {
  gap: 8px;
  margin-bottom: 0;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-assets .brand-asset-preview {
  height: 92px;
  border-radius: 14px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-assets .brand-asset-preview img {
  max-height: 70px;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .settings-branding-assets .brand-asset-card .helper-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-admin-surface .settings-branding-workspace[data-branding-compact] .brand-asset-card__editor > summary {
  min-height: 34px;
  padding: 0 10px;
}

body.is-admin-surface .operations-workspace {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

body.is-admin-surface .operations-workspace[data-operations-compact] {
  grid-template-columns: 1fr;
  gap: 14px;
}

body.is-admin-surface .operations-workspace--commercial[data-operations-compact] {
  grid-template-columns: 1fr;
}

body.is-admin-surface .operations-command-strip {
  position: static;
  top: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  min-width: 0;
}

body.is-admin-surface .operations-workspace[data-operations-compact] .operations-command-strip {
  gap: 10px;
}

body.is-admin-surface .operations-workspace[data-operations-compact] .operations-summary-card,
body.is-admin-surface .operations-workspace[data-operations-compact] .operations-panel-card {
  gap: 12px;
}

body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table-wrap {
  max-height: min(620px, calc(100vh - 240px));
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  gap: 9px;
}

@media (min-width: 901px) {
  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table,
  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table thead,
  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table tbody,
  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table tr,
  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table td {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table {
    table-layout: fixed;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table tbody {
    display: grid;
    gap: 12px;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table tr {
    display: grid;
    grid-template-columns: minmax(140px, 0.72fr) minmax(180px, 0.9fr) minmax(120px, 0.62fr) minmax(170px, 0.92fr) minmax(130px, 0.62fr) minmax(320px, 1.44fr);
    gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(242, 215, 161, 0.12);
    border-radius: 16px;
    background: rgba(7, 13, 22, 0.46);
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table td {
    min-width: 0;
    padding: 0;
    border: 0;
    overflow-wrap: anywhere;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: rgba(217, 226, 239, 0.62);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table td + td {
    border-top: 0;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .field {
    gap: 4px;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form label,
  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .helper-text {
    font-size: 10.5px;
    line-height: 1.18;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form input,
  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form select,
  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .button-danger {
    min-height: 32px;
    padding: 0 9px;
    font-size: 11px;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form [data-payment-correction-status] {
    grid-column: 1 / -1;
    margin: 0;
  }
}

body.is-admin-surface .operations-summary-card .settings-runtime-status-list {
  margin-top: 6px;
}

body.is-admin-surface .operations-tabs {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(242, 215, 161, 0.11);
  border-radius: 16px;
  background: rgba(7, 13, 22, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.05);
}

body.is-admin-surface .operations-tabs--inline {
  margin: 0;
}

body.is-admin-surface .operations-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 142px;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 13px;
  background: rgba(255, 253, 248, 0.045);
  color: #b9c3d3;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

body.is-admin-surface .operations-tab:hover,
body.is-admin-surface .operations-tab.is-active {
  border-color: rgba(242, 215, 161, 0.36);
  background: linear-gradient(135deg, rgba(202, 166, 93, 0.18), rgba(15, 118, 110, 0.12));
  color: var(--text);
}

body.is-admin-surface .operations-warning-grid {
  display: grid;
  gap: 10px;
}

body.is-admin-surface .operations-warning-grid .helper-text {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.08);
  color: #f7dca3;
}

body.is-admin-surface .operations-warning-detail {
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.08);
}

body.is-admin-surface .operations-warning-detail summary {
  min-width: 0;
  padding: 12px 14px;
  color: #f7dca3;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

body.is-admin-surface .operations-warning-grid .operations-warning-detail .helper-text {
  padding: 0 14px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.is-admin-surface .operations-panel,
body.is-admin-surface .operations-panel-card,
body.is-admin-surface .operations-content-card {
  border-color: rgba(242, 215, 161, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.06), rgba(15, 118, 110, 0.055)),
    rgba(16, 26, 43, 0.86);
}

body.is-admin-surface .operations-panel-card {
  display: grid;
  gap: 16px;
}

body.is-admin-surface .operations-section-card {
  display: grid;
  gap: 14px;
}

body.is-admin-surface .operations-panel-card__head {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(242, 215, 161, 0.10);
}

body.is-admin-surface .operations-panel-card__head h2 {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.08;
}

body.is-admin-surface .operations-backup-toolbar {
  align-items: start;
  gap: 14px;
}

body.is-admin-surface .operations-backup-toolbar form {
  margin: 0;
}

body.is-admin-surface .operations-table-wrap.operations-backup-table-wrap {
  max-height: min(58vh, 560px);
}

body.is-admin-surface .operations-backup-checksum {
  display: inline-block;
  max-width: 100%;
  font-family: var(--font-mono);
  letter-spacing: 0;
}

body.is-admin-surface .operations-backup-actions {
  display: grid;
  gap: 8px;
  align-items: stretch;
}

body.is-admin-surface .operations-backup-actions .operations-inline-form {
  margin-top: 0;
}

body.is-admin-surface .operations-backup-verification {
  margin: 0;
}

body.is-admin-surface .operations-table-wrap {
  max-height: min(62vh, 660px);
  max-width: 100%;
  overflow: auto;
  border: 1px solid rgba(242, 215, 161, 0.10);
  border-radius: 16px;
  background: rgba(5, 10, 18, 0.24);
}

body.is-admin-surface .operations-table-wrap .data-table {
  margin: 0;
  width: 100%;
  min-width: min(780px, 100%);
  table-layout: fixed;
}

body.is-admin-surface .operations-table-wrap .data-table th,
body.is-admin-surface .operations-table-wrap .data-table td {
  overflow-wrap: anywhere;
}

body.is-admin-surface .operations-table-wrap .data-table .button,
body.is-admin-surface .operations-table-wrap .data-table .button-ghost,
body.is-admin-surface .operations-table-wrap .data-table .button-danger {
  white-space: normal;
}

body.is-admin-surface .operations-inline-form {
  margin-top: 8px;
}

body.is-admin-surface .operations-panel .payment-correction-form,
body.is-admin-surface .operations-panel .coupon-inline-edit,
body.is-admin-surface .operations-panel td .form-grid {
  gap: 8px;
}

body.is-admin-surface .operations-panel .button-danger,
body.is-admin-surface .operations-panel .button,
body.is-admin-surface .operations-panel .button-ghost {
  white-space: nowrap;
}

body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form > *,
body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .field,
body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form label,
body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form input,
body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form select,
body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .helper-text,
body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .button-danger {
  min-width: 0;
  max-width: 100%;
}

body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form input,
body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form select,
body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .button-danger {
  width: 100%;
}

body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form label,
body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .helper-text,
body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .button-danger {
  overflow-wrap: anywhere;
  white-space: normal;
}

body.is-admin-surface .operations-player-lifecycle-detail {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 161, 0.13);
  border-radius: 14px;
  background: rgba(7, 17, 31, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.is-admin-surface .operations-player-lifecycle-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
}

body.is-admin-surface .operations-player-lifecycle-summary::-webkit-details-marker {
  display: none;
}

body.is-admin-surface .operations-player-lifecycle-summary strong,
body.is-admin-surface .operations-player-lifecycle-summary small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-admin-surface .operations-player-lifecycle-summary strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
}

body.is-admin-surface .operations-player-lifecycle-summary small {
  margin-top: 2px;
  color: rgba(217, 226, 239, 0.64);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
}

body.is-admin-surface .operations-player-lifecycle-summary::after {
  content: "Yonet";
  min-width: 54px;
  padding: 6px 10px;
  border: 1px solid rgba(242, 215, 161, 0.16);
  border-radius: 999px;
  background: rgba(242, 215, 161, 0.08);
  color: #f2d7a1;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

body.is-admin-surface .operations-player-lifecycle-detail[open] > .operations-player-lifecycle-summary::after {
  content: "Kapat";
}

body.is-admin-surface .operations-player-lifecycle-detail:not([open]) > .operations-player-lifecycle-body {
  display: none;
}

body.is-admin-surface .operations-player-lifecycle-body {
  display: grid;
  gap: 8px;
  padding: 0 10px 10px;
}

body.is-admin-surface .operations-player-lifecycle-form {
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  max-width: 100%;
  gap: 8px;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(242, 215, 161, 0.10);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.035);
}

body.is-admin-surface .operations-player-lifecycle-form > *,
body.is-admin-surface .operations-player-lifecycle-form input,
body.is-admin-surface .operations-player-lifecycle-form select,
body.is-admin-surface .operations-player-lifecycle-form textarea,
body.is-admin-surface .operations-player-lifecycle-form .button,
body.is-admin-surface .operations-player-lifecycle-form .button-ghost,
body.is-admin-surface .operations-player-lifecycle-form .button-danger {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  white-space: normal;
}

body.is-admin-surface .operations-player-lifecycle-form .helper-text {
  margin: 0;
}

body.is-admin-surface .operations-player-lifecycle-form label.helper-text {
  display: flex;
  gap: 7px;
  align-items: center;
}

body.is-admin-surface .draft-data-workspace {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.72fr);
}

body.is-admin-surface .draft-data-summary-card .settings-runtime-status-list {
  margin-top: 6px;
}

body.is-admin-surface .draft-data-tabs {
  display: grid;
  gap: 8px;
  padding: 12px;
}

body.is-admin-surface .draft-data-tab {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 13px;
  background: rgba(255, 253, 248, 0.045);
  color: #b9c3d3;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

body.is-admin-surface .draft-data-tab:hover,
body.is-admin-surface .draft-data-tab.is-active {
  border-color: rgba(242, 215, 161, 0.36);
  background: linear-gradient(135deg, rgba(202, 166, 93, 0.18), rgba(15, 118, 110, 0.12));
  color: var(--text);
}

body.is-admin-surface .draft-data-panel,
body.is-admin-surface .draft-data-action-card,
body.is-admin-surface .draft-data-audit-card {
  border-color: rgba(242, 215, 161, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.06), rgba(15, 118, 110, 0.055)),
    rgba(16, 26, 43, 0.86);
}

body.is-admin-surface .draft-data-panel-card,
body.is-admin-surface .draft-data-section-card {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.22);
}

body.is-admin-surface .draft-data-panel-card__head {
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242, 215, 161, 0.10);
}

body.is-admin-surface .draft-data-panel-card__head h2,
body.is-admin-surface .draft-data-panel-card__head h3 {
  margin-bottom: 4px;
}

body.is-admin-surface .draft-data-audit-detail {
  padding: 0;
}

body.is-admin-surface .draft-data-audit-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  min-height: 76px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

body.is-admin-surface .draft-data-audit-summary::-webkit-details-marker {
  display: none;
}

body.is-admin-surface .draft-data-audit-summary::after {
  content: "Ac";
  min-width: 52px;
  justify-self: end;
  padding: 7px 11px;
  border: 1px solid rgba(242, 215, 161, 0.20);
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(202, 166, 93, 0.10);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

body.is-admin-surface .draft-data-audit-detail[open] > .draft-data-audit-summary::after {
  content: "Kapat";
}

body.is-admin-surface .draft-data-audit-body {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
}

body.is-admin-surface .draft-data-audit-detail:not([open]) > .draft-data-audit-body {
  display: none;
}

body.is-admin-surface .draft-data-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

body.is-admin-surface .draft-data-kpi-grid .metric__value {
  font-size: 20px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

body.is-admin-surface .draft-data-table-wrap {
  max-width: 100%;
  max-height: min(62vh, 660px);
  overflow: auto;
  border: 1px solid rgba(242, 215, 161, 0.10);
  border-radius: 16px;
  background: rgba(5, 10, 18, 0.24);
}

body.is-admin-surface .draft-data-table-wrap .data-table {
  min-width: 780px;
  margin: 0;
}

body.is-admin-surface .draft-data-empty {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px dashed rgba(242, 215, 161, 0.24);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.045);
}

body.is-admin-surface .draft-data-empty strong {
  color: var(--text);
}

body.is-admin-surface .draft-data-action-card form {
  margin-top: 12px;
}

body.is-admin-surface .draft-data-panel .button-ghost,
body.is-admin-surface .draft-data-action-card .button-ghost {
  white-space: nowrap;
}

body.is-app-surface .app-console {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  align-items: start;
  width: 100%;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(202, 166, 93, 0.08), transparent 30%),
    linear-gradient(180deg, #050a12 0%, #07111f 52%, #101a2b 100%);
}

body.is-app-surface .app-sidebar {
  display: flex;
  flex-direction: column;
  grid-row: 1 / 3;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 18px;
  overflow-y: auto;
  background: linear-gradient(180deg, #07111f 0%, #050a12 100%);
  border-right: 1px solid rgba(242, 215, 161, 0.18);
  box-shadow: 18px 0 42px rgba(0, 0, 0, 0.25);
}

body.is-app-surface .app-sidebar::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(242, 215, 161, 0.72), transparent);
}

body.is-app-surface .app-sidebar__brand {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 56px;
  margin: 0 2px 10px;
  color: var(--text);
  text-decoration: none;
}

body.is-app-surface .app-sidebar__brand .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border-color: rgba(242, 215, 161, 0.48);
  background-size: 132%;
  box-shadow: 0 16px 34px rgba(202, 166, 93, 0.18), 0 0 0 1px rgba(202, 166, 93, 0.20);
}

body.is-app-surface .app-sidebar__brand-eyebrow,
body.is-app-surface .app-sidebar__role,
body.is-app-surface .app-sidebar__label {
  letter-spacing: 0;
  text-transform: uppercase;
}

body.is-app-surface .app-sidebar__brand-eyebrow {
  display: block;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
}

body.is-app-surface .app-sidebar__brand-title {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

body.is-app-surface .app-sidebar__role {
  display: inline-flex;
  max-width: 100%;
  margin: 0 2px 24px;
  padding: 7px 11px;
  border: 1px solid rgba(242, 215, 161, 0.32);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(202, 166, 93, 0.09);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-app-surface .app-sidebar__nav,
body.is-app-surface .app-sidebar__group {
  display: grid;
  gap: 6px;
}

body.is-app-surface .app-sidebar__nav {
  flex: 1 1 auto;
  align-content: start;
}

body.is-app-surface .app-sidebar__group {
  margin-bottom: 20px;
}

body.is-app-surface .app-sidebar__label {
  margin: 0 12px 5px;
  color: #7f8da3;
  font-size: 11px;
  font-weight: 800;
}

body.is-app-surface .app-sidebar__link {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px 12px 8px 10px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: #b9c3d3;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body.is-app-surface .app-sidebar__link-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 215, 161, 0.18);
  border-radius: 14px;
  color: var(--accent-strong);
  background: rgba(255, 253, 248, 0.06);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

body.is-app-surface .app-sidebar__link-svg {
  width: 18px;
  height: 18px;
}

body.is-app-surface .app-sidebar__link-copy {
  min-width: 0;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-app-surface .app-sidebar__link:hover,
body.is-app-surface .app-sidebar__link.is-active {
  color: var(--text);
  border-color: rgba(242, 215, 161, 0.30);
  background: linear-gradient(135deg, rgba(202, 166, 93, 0.20), rgba(15, 118, 110, 0.11));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.20);
}

body.is-app-surface .app-sidebar__link:hover .app-sidebar__link-icon,
body.is-app-surface .app-sidebar__link.is-active .app-sidebar__link-icon {
  border-color: rgba(242, 215, 161, 0.36);
  background: linear-gradient(135deg, rgba(242, 215, 161, 0.18), rgba(15, 118, 110, 0.16));
}

body.is-app-surface .app-sidebar__link.is-active::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2d7a1, #caa65d);
}

body.is-app-surface .app-sidebar__link:hover {
  transform: translateX(2px);
}

body.is-internal-surface.is-sidebar-compact .admin-sidebar,
body.is-internal-surface.is-sidebar-compact .app-sidebar {
  padding-inline: 14px;
}

body.is-internal-surface.is-sidebar-compact .admin-sidebar__brand,
body.is-internal-surface.is-sidebar-compact .app-sidebar__brand {
  grid-template-columns: 46px;
  justify-content: center;
  margin-inline: 0;
}

body.is-internal-surface.is-sidebar-compact .admin-sidebar__brand > span:not(.brand-mark),
body.is-internal-surface.is-sidebar-compact .app-sidebar__brand > span:not(.brand-mark),
body.is-internal-surface.is-sidebar-compact .admin-sidebar__role,
body.is-internal-surface.is-sidebar-compact .app-sidebar__role,
body.is-internal-surface.is-sidebar-compact .admin-sidebar__label,
body.is-internal-surface.is-sidebar-compact .app-sidebar__label,
body.is-internal-surface.is-sidebar-compact .admin-sidebar__link-copy,
body.is-internal-surface.is-sidebar-compact .app-sidebar__link-copy,
body.is-internal-surface.is-sidebar-compact .app-sidebar__logout {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  white-space: nowrap;
  clip: rect(0 0 0 0);
}

body.is-internal-surface.is-sidebar-compact .admin-sidebar__group,
body.is-internal-surface.is-sidebar-compact .app-sidebar__group {
  margin-bottom: 12px;
}

body.is-internal-surface.is-sidebar-compact .admin-sidebar__link,
body.is-internal-surface.is-sidebar-compact .app-sidebar__link {
  display: grid;
  grid-template-columns: 44px;
  place-items: center;
  min-height: 52px;
  padding: 6px;
  font-size: inherit;
}

body.is-internal-surface.is-sidebar-compact .admin-sidebar__link::before,
body.is-internal-surface.is-sidebar-compact .app-sidebar__link::before {
  content: none;
}

body.is-internal-surface.is-sidebar-compact .admin-sidebar__link-icon,
body.is-internal-surface.is-sidebar-compact .app-sidebar__link-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
}

body.is-internal-surface.is-sidebar-compact .admin-sidebar__link:hover,
body.is-internal-surface.is-sidebar-compact .app-sidebar__link:hover {
  transform: translateY(-1px);
}

body.is-app-surface .app-sidebar__logout {
  margin-top: 10px;
}

body.is-app-surface .app-sidebar__logout .button-ghost {
  width: 100%;
}

body.is-app-surface .app-main {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  padding: 22px clamp(18px, 2.6vw, 34px) 118px;
}

body.is-admin-surface .admin-topbar,
body.is-app-surface .app-topbar {
  grid-column: 2;
}

body.is-internal-surface .account-toolbar {
  position: sticky;
  top: 0;
  z-index: 35;
  min-height: var(--toolbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(18px, 2.6vw, 34px);
  border-bottom: 1px solid rgba(242, 215, 161, 0.14);
  background: rgba(5, 10, 18, 0.86);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px) saturate(150%);
}

body.is-internal-surface .account-toolbar__identity,
body.is-internal-surface .account-toolbar__actions,
body.is-internal-surface .account-toolbar__actions form {
  display: flex;
  align-items: center;
  min-width: 0;
}

body.is-internal-surface .account-toolbar__identity {
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

body.is-internal-surface .account-toolbar__identity:focus-visible {
  outline: 2px solid rgba(242, 215, 161, 0.78);
  outline-offset: 4px;
  border-radius: 18px;
}

body.is-internal-surface .account-toolbar__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(242, 215, 161, 0.35);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(242, 215, 161, 0.22), rgba(15, 118, 110, 0.18));
  color: var(--accent-strong);
  font-weight: 900;
}

body.is-internal-surface .account-toolbar__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

body.is-internal-surface .account-toolbar__copy strong,
body.is-internal-surface .account-toolbar__copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-internal-surface .account-toolbar__copy strong {
  color: var(--text);
  font-size: 14px;
}

body.is-internal-surface .account-toolbar__copy small {
  color: var(--muted);
  font-size: 12px;
}

body.is-internal-surface .account-toolbar__actions {
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

body.is-internal-surface .account-toolbar__actions a,
body.is-internal-surface .account-toolbar__actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(242, 215, 161, 0.18);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.055);
  color: #d9e2ef;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

body.is-internal-surface .account-toolbar__control {
  gap: 7px;
}

body.is-internal-surface .account-toolbar__control-svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--accent-strong);
  stroke-width: 2;
}

body.is-internal-surface .account-toolbar__control-icon {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 7px;
  background: rgba(242, 215, 161, 0.12);
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

body.is-internal-surface .account-toolbar__actions a:focus-visible,
body.is-internal-surface .account-toolbar__actions button:focus-visible {
  outline: 2px solid rgba(242, 215, 161, 0.78);
  outline-offset: 3px;
}

body.is-internal-surface .account-toolbar__actions button.is-active {
  border-color: rgba(79, 229, 169, 0.36);
  background: linear-gradient(135deg, rgba(79, 229, 169, 0.16), rgba(202, 166, 93, 0.12));
  color: var(--text);
}

body.is-internal-surface .account-toolbar__actions a:hover,
body.is-internal-surface .account-toolbar__actions button:hover {
  border-color: rgba(242, 215, 161, 0.34);
  background: linear-gradient(135deg, rgba(202, 166, 93, 0.20), rgba(15, 118, 110, 0.14));
  color: var(--text);
}

body.is-internal-surface.is-internal-focus-mode .account-toolbar {
  background: rgba(5, 10, 18, 0.94);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.20);
}

body.is-internal-surface.is-internal-focus-mode .settings-runtime-card,
body.is-internal-surface.is-internal-focus-mode .admin-dashboard-action-card,
body.is-internal-surface.is-internal-focus-mode .marketing-section-card,
body.is-internal-surface.is-internal-focus-mode .marketing-panel-card {
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

body.is-app-surface .app-main .page-shell {
  width: min(100%, 1240px);
  padding-top: 34px;
  padding-inline: 0;
}

body.is-app-surface .hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
}

body.is-app-surface .hero-copy,
body.is-app-surface .panel,
body.is-app-surface .glass-panel {
  border-color: rgba(242, 215, 161, 0.14);
  background: rgba(16, 26, 43, 0.84);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.30);
}

body.is-app-surface .metric,
body.is-admin-surface .metric {
  border-color: rgba(242, 215, 161, 0.13);
  background:
    linear-gradient(135deg, rgba(242, 215, 161, 0.10), transparent 58%),
    rgba(21, 34, 56, 0.72);
  border-radius: 16px;
}

body.is-internal-surface .stats-grid .metric,
body.is-admin-surface .draft-data-kpi-grid .metric {
  position: relative;
  isolation: isolate;
  min-height: 126px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(242, 215, 161, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 12%, rgba(202, 166, 93, 0.18), transparent 34%),
    radial-gradient(circle at 12% 0%, rgba(15, 118, 110, 0.12), transparent 30%),
    linear-gradient(150deg, rgba(255, 253, 248, 0.085), rgba(16, 26, 43, 0.82) 58%, rgba(5, 10, 18, 0.72));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.is-internal-surface .stats-grid .metric::before,
body.is-admin-surface .draft-data-kpi-grid .metric::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.12), transparent 34%),
    radial-gradient(circle at 74% 78%, rgba(242, 215, 161, 0.10), transparent 38%);
  opacity: 0.88;
}

body.is-internal-surface .stats-grid .metric::after,
body.is-admin-surface .draft-data-kpi-grid .metric::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  height: 3px;
  border-radius: 999px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(202, 166, 93, 0.94), rgba(15, 118, 110, 0.74), transparent);
}

body.is-internal-surface .stats-grid .metric:hover,
body.is-admin-surface .draft-data-kpi-grid .metric:hover {
  border-color: rgba(242, 215, 161, 0.34);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transform: translateY(-2px);
}

body.is-internal-surface .stats-grid .metric__label,
body.is-admin-surface .draft-data-kpi-grid .metric__label {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(217, 226, 239, 0.70);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

body.is-internal-surface .stats-grid .metric__value,
body.is-admin-surface .draft-data-kpi-grid .metric__value {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

body.is-internal-surface .stats-grid .metric__value .helper-text,
body.is-admin-surface .draft-data-kpi-grid .metric__value .helper-text {
  display: block;
  margin-top: 6px;
  color: rgba(217, 226, 239, 0.64);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

body.is-app-surface .button,
body.is-admin-surface .button {
  background: linear-gradient(135deg, #f2d7a1 0%, #caa65d 100%);
  color: #09111c;
}

body.is-app-surface .button-ghost,
body.is-admin-surface .button-ghost,
body.is-admin-surface .pill,
body.is-app-surface .pill {
  border-color: rgba(242, 215, 161, 0.18);
  background: rgba(202, 166, 93, 0.08);
}

body.is-app-surface .app-settings-page {
  display: grid;
  gap: 18px;
}

body.is-app-surface .app-settings-workspace {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.58fr);
  align-items: start;
  gap: 18px;
}

body.is-app-surface .app-settings-workspace__aside,
body.is-app-surface .app-settings-workspace__primary {
  min-width: 0;
  display: grid;
  gap: 18px;
}

body.is-app-surface .app-settings-workspace__aside {
  position: sticky;
  top: calc(var(--toolbar-height) + 18px);
}

body.is-app-surface .settings-runtime-card {
  border-color: rgba(242, 215, 161, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.075), rgba(15, 118, 110, 0.08)),
    rgba(16, 26, 43, 0.88);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.20);
}

body.is-app-surface .settings-runtime-card--summary {
  overflow: hidden;
}

body.is-app-surface .settings-runtime-card--summary::before {
  content: "";
  display: block;
  height: 4px;
  margin: -18px -18px 0;
  background: linear-gradient(90deg, var(--accent), rgba(15, 118, 110, 0.72));
}

body.is-app-surface .settings-runtime-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

body.is-app-surface .settings-runtime-card__head .section-title {
  margin-bottom: 0;
}

body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-card--summary {
  display: grid;
  gap: 14px;
}

body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-card--summary .settings-runtime-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-content: start;
  gap: 10px;
}

body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-card--summary .settings-runtime-card__head > div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-card--summary .section-title {
  max-width: 100%;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-card--summary .status-chip {
  width: fit-content;
  max-width: 100%;
  white-space: normal;
  line-height: 1.25;
}

body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-card--summary > .helper-text {
  margin: 0;
}

body.is-app-surface .settings-runtime-status-list {
  display: grid;
  gap: 8px;
}

body.is-app-surface .settings-runtime-status-list div {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.055);
}

body.is-app-surface .settings-runtime-status-list span {
  color: rgba(217, 226, 239, 0.64);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.is-app-surface .settings-runtime-status-list strong {
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

body.is-app-surface .settings-runtime-back {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(242, 215, 161, 0.22);
  border-radius: 999px;
  color: var(--accent-strong);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

body.is-app-surface .settings-runtime-back:hover {
  border-color: rgba(242, 215, 161, 0.42);
  background: rgba(202, 166, 93, 0.12);
  color: var(--text);
}

body.is-app-surface .settings-runtime-form {
  padding: 16px;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.36);
}

body.is-app-surface .app-settings-card-grid,
body.is-app-surface .app-settings-detail-grid,
body.is-app-surface .app-settings-privacy-grid {
  display: grid;
  gap: 14px;
}

body.is-app-surface .app-settings-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

body.is-app-surface .app-subscription-workspace,
body.is-app-surface .app-subscription-workspace .app-settings-workspace__primary,
body.is-app-surface .app-subscription-workspace .settings-runtime-card,
body.is-app-surface .app-subscription-workspace .app-settings-card-grid,
body.is-app-surface .subscription-table-shell {
  min-width: 0;
  max-width: 100%;
}

body.is-app-surface .app-subscription-status-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-app-surface .app-subscription-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-app-surface .app-subscription-action-card {
  min-height: 146px;
}

body.is-app-surface .app-settings-detail-grid,
body.is-app-surface .app-settings-privacy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-app-surface .app-settings-card,
body.is-app-surface .app-settings-state-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(242, 215, 161, 0.08), transparent 58%),
    rgba(7, 17, 31, 0.42);
}

body.is-app-surface .app-settings-card {
  color: var(--text);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

body.is-app-surface .app-settings-card:hover {
  border-color: rgba(242, 215, 161, 0.30);
  background:
    linear-gradient(135deg, rgba(242, 215, 161, 0.14), rgba(15, 118, 110, 0.10)),
    rgba(7, 17, 31, 0.58);
  transform: translateY(-1px);
}

body.is-app-surface.is-internal-theme-effective-dark .settings-runtime-card,
body.is-app-surface.is-internal-theme-effective-dark .app-settings-card,
body.is-app-surface.is-internal-theme-effective-dark .app-support-card {
  box-shadow:
    inset 5px 0 0 rgba(242, 215, 161, 0.78),
    0 18px 40px rgba(0, 0, 0, 0.22);
}

body.is-app-surface .app-settings-card strong,
body.is-app-surface .app-settings-state-card h3 {
  color: var(--text);
  font-size: 16px;
  line-height: 1.3;
}

body.is-app-surface .app-settings-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

body.is-app-surface .app-settings-state-card .button,
body.is-app-surface .app-settings-state-card .button-ghost,
body.is-app-surface .app-settings-state-card form {
  width: fit-content;
}

body.is-app-surface .app-trial-workspace .settings-runtime-card,
body.is-app-surface .app-checkout-workspace .settings-runtime-card,
body.is-app-surface .app-checkout-result-workspace .settings-runtime-card {
  display: grid;
  gap: 16px;
}

body.is-app-surface .app-trial-step-grid,
body.is-app-surface .app-checkout-rule-list,
body.is-app-surface .app-checkout-form,
body.is-app-surface .app-checkout-form-card,
body.is-app-surface .app-checkout-result-actions {
  display: grid;
  gap: 14px;
}

body.is-app-surface .app-trial-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.is-app-surface .app-checkout-rule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.is-app-surface .app-checkout-rule-list li {
  position: relative;
  min-width: 0;
  padding: 12px 12px 12px 34px;
  border: 1px solid rgba(242, 215, 161, 0.13);
  border-radius: 14px;
  background: rgba(7, 17, 31, 0.42);
  color: var(--muted);
  line-height: 1.5;
}

body.is-app-surface .app-checkout-rule-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(202, 166, 93, 0.12);
}

body.is-app-surface .app-checkout-plan-fieldset {
  padding: 0;
  border: 0;
  background: transparent;
}

body.is-app-surface .app-checkout-plan {
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(242, 215, 161, 0.08), transparent 58%),
    rgba(7, 17, 31, 0.46);
}

body.is-app-surface .app-checkout-plan.is-selected {
  border-color: rgba(202, 166, 93, 0.45);
  background:
    linear-gradient(135deg, rgba(202, 166, 93, 0.18), rgba(15, 118, 110, 0.11)),
    rgba(7, 17, 31, 0.62);
}

body.is-app-surface .app-checkout-coupon,
body.is-app-surface .app-checkout-billing,
body.is-app-surface .app-checkout-consents,
body.is-app-surface .app-checkout-total,
body.is-app-surface .app-checkout-frame {
  border-color: rgba(242, 215, 161, 0.13);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.38);
}

body.is-app-surface .app-checkout-billing h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 15px;
}

body.is-app-surface .app-checkout-coupon input,
body.is-app-surface .app-checkout-billing input,
body.is-app-surface .app-checkout-billing textarea {
  border-color: rgba(242, 215, 161, 0.15);
  background: rgba(255, 253, 248, 0.065);
}

body.is-app-surface .app-checkout-status {
  margin: 0;
}

body.is-app-surface .app-checkout-frame {
  padding: 18px;
}

body.is-app-surface .app-checkout-frame iframe {
  width: 100%;
  min-height: 680px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.92);
}

body.is-app-surface .app-checkout-result-console--guest {
  grid-template-columns: minmax(0, 1fr);
}

body.is-app-surface .app-checkout-result-console--guest .app-topbar,
body.is-app-surface .app-checkout-result-console--guest .app-main {
  grid-column: 1;
}

body.is-app-surface .app-checkout-result-workspace {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.42fr);
}

body.is-app-surface .app-account-action-console {
  grid-template-columns: minmax(0, 1fr);
}

body.is-app-surface .app-account-action-console .app-topbar,
body.is-app-surface .app-account-action-console .app-main {
  grid-column: 1;
}

body.is-app-surface .app-account-action-workspace {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.42fr);
}

body.is-app-surface .app-account-action-workspace .settings-runtime-card {
  display: grid;
  gap: 16px;
}

body.is-app-surface .app-account-action-form {
  gap: 14px;
}

body.is-app-surface .checkout-result--success {
  border-color: rgba(34, 197, 94, 0.22);
}

body.is-app-surface .checkout-result--fail {
  border-color: rgba(239, 68, 68, 0.24);
}

body.is-app-surface .app-settings-detail-section {
  display: grid;
  gap: 14px;
}

body.is-app-surface .app-settings-detail {
  padding: 0;
  gap: 0;
  overflow: hidden;
}

body.is-app-surface .app-settings-detail-summary {
  min-height: 78px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

body.is-app-surface .app-settings-detail-summary::-webkit-details-marker {
  display: none;
}

body.is-app-surface .app-settings-detail-summary::after {
  content: "Ac";
  flex: 0 0 auto;
  min-width: 48px;
  padding: 7px 10px;
  border: 1px solid rgba(242, 215, 161, 0.20);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

body.is-app-surface .app-settings-detail[open] > .app-settings-detail-summary::after {
  content: "Kapat";
}

body.is-app-surface .app-settings-detail-body {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

body.is-app-surface .app-profile-workspace .settings-runtime-card {
  display: grid;
  gap: 16px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] {
  grid-template-columns: minmax(248px, 0.72fr) minmax(0, 1.5fr);
  gap: 12px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .app-settings-workspace__aside,
body.is-app-surface .app-profile-workspace[data-profile-compact] .app-settings-workspace__primary {
  gap: 12px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .settings-runtime-card {
  gap: 12px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .settings-runtime-card--summary {
  gap: 10px;
  padding: 14px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .settings-runtime-card--summary .settings-runtime-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .settings-runtime-card--summary .section-title {
  font-size: 19px;
  line-height: 1.12;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .settings-runtime-card--summary .status-chip {
  justify-self: start;
  max-width: 100%;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-status-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-status-list div {
  min-height: 50px;
  padding: 8px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-status-list strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.12;
}

body.is-app-surface .app-profile-workspace .app-profile-actions-card {
  gap: 14px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-actions-card[data-profile-actions-compact] {
  gap: 10px;
  padding: 14px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-actions-card[data-profile-actions-compact] .settings-runtime-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

body.is-app-surface .app-profile-workspace .app-profile-actions-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-actions-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

body.is-app-surface .app-profile-workspace .app-profile-actions-grid .app-settings-card {
  min-height: 132px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-actions-grid .app-settings-card {
  min-height: 88px;
  gap: 6px;
  padding: 10px 9px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-actions-grid .app-settings-card .status-chip {
  min-height: 24px;
  padding: 4px 7px;
  font-size: 10px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-actions-grid .app-settings-card strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 12px;
  line-height: 1.16;
}

body.is-app-surface .app-profile-workspace .app-profile-actions-grid .app-settings-card small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-actions-grid .app-settings-card small {
  display: none;
}

body.is-app-surface .app-profile-workspace .profile-avatar-preview {
  width: 112px;
  height: 112px;
  border-radius: 24px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-avatar-preview {
  width: 88px;
  height: 88px;
  border-radius: 20px;
}

body.is-app-surface .app-profile-workspace .profile-identity {
  min-width: 0;
}

body.is-app-surface .app-profile-workspace .profile-editor-section {
  padding: 18px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-section {
  padding: 10px;
}

body.is-app-surface .app-profile-workspace .profile-editor-detail {
  padding: 0;
  gap: 0;
  overflow: hidden;
}

body.is-app-surface .app-profile-workspace .profile-editor-detail > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 78px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary {
  min-height: 52px;
  gap: 8px;
  padding: 9px 12px;
}

body.is-app-surface .app-profile-workspace .profile-editor-detail > summary > div {
  min-width: 0;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary > div {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary .hero-kicker {
  flex: 0 1 104px;
  max-width: 104px;
  padding: 4px 8px;
  font-size: 9px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary .section-title {
  flex: 1 1 auto;
  min-width: 84px;
  font-size: 15px;
  line-height: 1.14;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary .status-chip {
  flex: 0 1 124px;
  max-width: 124px;
  min-height: 24px;
  padding: 4px 8px;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-app-surface .app-profile-workspace .profile-editor-summary h2 {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-app-surface .app-profile-workspace .profile-editor-detail > summary::-webkit-details-marker {
  display: none;
}

body.is-app-surface .app-profile-workspace .profile-editor-detail > summary::after {
  content: "Ac";
  flex: 0 0 auto;
  min-width: 48px;
  padding: 7px 10px;
  border: 1px solid rgba(242, 215, 161, 0.20);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary::after {
  min-width: 38px;
  padding: 4px 7px;
  font-size: 10px;
  line-height: 1.1;
}

body.is-app-surface .app-profile-workspace .profile-editor-detail[open] > summary::after {
  content: "Kapat";
}

body.is-app-surface .app-profile-workspace .profile-editor-detail__body {
  display: grid;
  gap: 16px;
  padding: 0 18px 18px;
}

body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail__body {
  gap: 12px;
  padding: 0 10px 10px;
}

body.is-app-surface .app-profile-workspace .profile-form {
  height: auto;
}

body.is-app-surface .app-profile-workspace .access-step {
  border-color: rgba(242, 215, 161, 0.13);
  background: rgba(7, 17, 31, 0.42);
}

body.is-app-surface .app-two-factor-workspace .settings-runtime-card {
  display: grid;
  gap: 16px;
}

body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] {
  gap: 12px;
}

body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-settings-workspace__aside,
body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-settings-workspace__primary {
  gap: 12px;
}

body.is-app-surface .app-two-factor-workspace .section-lead {
  max-width: 62ch;
  margin: 0;
}

body.is-app-surface .app-two-factor-workspace .security-form {
  max-width: none;
  margin-top: 0;
}

body.is-app-surface .app-two-factor-workspace .app-two-factor-status-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-app-surface .app-two-factor-workspace .security-session-header {
  align-items: flex-start;
}

body.is-app-surface .app-two-factor-workspace .security-recovery,
body.is-app-surface .app-two-factor-workspace .security-secret {
  border-color: rgba(242, 215, 161, 0.13);
  background: rgba(7, 17, 31, 0.42);
}

body.is-app-surface .app-two-factor-workspace .security-secret__value,
body.is-app-surface .app-two-factor-workspace .security-uri,
body.is-app-surface .app-two-factor-workspace .recovery-code-grid code {
  overflow-wrap: anywhere;
}

body.is-app-surface .app-two-factor-workspace .app-settings-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

body.is-app-surface .app-two-factor-workspace .app-two-factor-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-app-surface .app-two-factor-workspace .app-two-factor-action-card {
  min-height: 132px;
}

body.is-app-surface .app-dashboard-workspace .settings-runtime-card {
  display: grid;
  gap: 16px;
}

body.is-app-surface .app-dashboard-summary .section-lead,
body.is-app-surface .app-dashboard-pool-card .section-lead {
  max-width: 62ch;
  margin: 0;
}

body.is-app-surface .app-dashboard-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.is-app-surface .app-dashboard-readiness {
  margin-top: 2px;
}

body.is-app-surface .app-dashboard-readiness div,
body.is-app-surface .app-dashboard-action-card,
body.is-app-surface .app-dashboard-pool-card .hero-token-list,
body.is-app-surface .app-dashboard-pills .pill {
  min-width: 0;
}

body.is-app-surface .app-dashboard-actions-card,
body.is-app-surface .app-dashboard-pool-card {
  padding: 18px;
}

body.is-app-surface .app-dashboard-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-app-surface .app-dashboard-action-card {
  min-height: 146px;
}

body.is-app-surface .app-settings-card--button {
  appearance: none;
  border-color: rgba(242, 215, 161, 0.14);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

body.is-app-surface .app-settings-card--button:hover,
body.is-app-surface .app-settings-card--button:focus-visible {
  border-color: rgba(242, 215, 161, 0.30);
  background:
    linear-gradient(135deg, rgba(242, 215, 161, 0.14), rgba(15, 118, 110, 0.10)),
    rgba(7, 17, 31, 0.58);
  outline: none;
  transform: translateY(-1px);
}

body.is-app-surface .app-dashboard-pills {
  align-items: center;
}

body.is-app-surface .app-dashboard-pool-card .hero-token-list {
  min-height: 72px;
  align-content: start;
  padding: 12px;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.34);
}

body.is-app-surface .app-history-workspace .settings-runtime-card,
body.is-app-surface .app-heroes-workspace .settings-runtime-card,
body.is-app-surface .app-hero-detail-workspace .settings-runtime-card,
body.is-app-surface .app-devices-workspace .settings-runtime-card,
body.is-app-surface .app-support-workspace .settings-runtime-card {
  display: grid;
  gap: 16px;
}

body.is-app-surface .app-history-list-card,
body.is-app-surface .app-heroes-list-card,
body.is-app-surface .app-hero-detail-flow-card,
body.is-app-surface .app-devices-card,
body.is-app-surface .app-support-card {
  padding: 18px;
}

body.is-app-surface .app-history-summary-card .settings-runtime-status-list {
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
}

body.is-app-surface .app-history-table-wrap {
  max-height: min(620px, calc(100vh - 300px));
  overflow: auto;
  scrollbar-gutter: stable;
  overscroll-behavior: contain;
}

body.is-app-surface .app-history-table-wrap .data-table {
  width: 100%;
  min-width: 720px;
}

body.is-app-surface .app-history-row {
  vertical-align: top;
}

body.is-app-surface .app-history-cell {
  min-width: 0;
}

body.is-app-surface .app-history-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.is-app-surface .app-history-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.42);
  color: rgba(241, 245, 249, 0.86);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

body.is-app-surface .app-history-count-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.is-app-surface .app-history-count-grid span {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 12px;
  background: rgba(7, 17, 31, 0.36);
  text-align: center;
}

body.is-app-surface .app-history-count-grid strong {
  color: #f2d7a1;
  font-size: 15px;
  line-height: 1;
}

body.is-app-surface .app-history-count-grid small {
  color: rgba(226, 232, 240, 0.64);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.is-app-surface .app-history-recommendation-card {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(15, 118, 110, 0.20);
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.10);
}

body.is-app-surface .app-history-alt-list {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 700px) {
  body.is-app-surface .app-history-table-wrap {
    max-height: min(520px, calc(100vh - 260px));
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 2px;
  }

  body.is-app-surface .app-history-table-wrap .data-table,
  body.is-app-surface .app-history-table-wrap .data-table thead,
  body.is-app-surface .app-history-table-wrap .data-table tbody,
  body.is-app-surface .app-history-table-wrap .data-table tr,
  body.is-app-surface .app-history-table-wrap .data-table th,
  body.is-app-surface .app-history-table-wrap .data-table td {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  body.is-app-surface .app-history-table-wrap .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  body.is-app-surface .app-history-table-wrap .data-table tbody {
    display: grid;
    gap: 8px;
  }

  body.is-app-surface .app-history-table-wrap .data-table tr {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(242, 215, 161, 0.12);
    border-radius: 16px;
    background: rgba(7, 17, 31, 0.48);
  }

  body.is-app-surface .app-history-table-wrap .data-table td {
    padding: 0 0 8px;
    border-bottom: 0;
    overflow-wrap: anywhere;
  }

  body.is-app-surface .app-history-table-wrap .data-table td + td {
    padding-top: 8px;
    border-top: 1px solid rgba(242, 215, 161, 0.10);
  }

  body.is-app-surface .app-history-table-wrap .data-table td:last-child {
    padding-bottom: 0;
  }

  body.is-app-surface .app-history-table-wrap .data-table td::before {
    display: block;
    margin-bottom: 5px;
    color: rgba(242, 215, 161, 0.64);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  body.is-app-surface .app-history-table-wrap .data-table td:nth-child(1)::before {
    content: "Zaman";
  }

  body.is-app-surface .app-history-table-wrap .data-table td:nth-child(2)::before {
    content: "Draft baglami";
  }

  body.is-app-surface .app-history-table-wrap .data-table td:nth-child(3)::before {
    content: "Secimler";
  }

  body.is-app-surface .app-history-table-wrap .data-table td:nth-child(4)::before {
    content: "Son oneriler";
  }

  body.is-app-surface .app-history-chip-list {
    gap: 5px;
  }

  body.is-app-surface .app-history-chip {
    min-height: 24px;
    padding: 4px 7px;
    font-size: 11px;
  }

  body.is-app-surface .app-history-count-grid {
    gap: 6px;
  }

  body.is-app-surface .app-history-count-grid span {
    padding: 7px 6px;
  }

  body.is-app-surface .app-history-recommendation-card {
    padding: 8px;
    border-radius: 12px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-settings-workspace {
    gap: 10px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .settings-runtime-card {
    gap: 10px;
    padding: 12px;
    border-radius: 15px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .settings-runtime-card--summary::before {
    margin: -12px -12px 0;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .admin-header__eyebrow,
  body.is-app-surface .app-history-workspace[data-app-history-compact] .settings-runtime-card__head .helper-text,
  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-summary-card > .helper-text,
  body.is-app-surface .app-history-workspace[data-app-history-compact] .settings-runtime-status-list span {
    display: none;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .section-title {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.15;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .settings-runtime-status-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .settings-runtime-status-list div {
    min-height: 40px;
    padding: 7px 6px;
    border-radius: 11px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .settings-runtime-status-list strong {
    font-size: 11px;
    line-height: 1.12;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 0;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .button-row .button,
  body.is-app-surface .app-history-workspace[data-app-history-compact] .button-row .button-ghost {
    width: 100%;
    min-height: 32px;
    padding: 7px 8px;
    border-radius: 11px;
    font-size: 10px;
    line-height: 1.12;
    text-align: center;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .settings-runtime-card__head {
    display: grid;
    gap: 0;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-table-wrap {
    max-height: min(360px, calc(100vh - 320px));
    padding-right: 0;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-table-wrap .data-table tbody {
    gap: 5px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-table-wrap .data-table tr {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 6px 8px;
    padding: 8px;
    border-radius: 12px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-table-wrap .data-table td {
    padding: 0;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-table-wrap .data-table td + td {
    padding-top: 0;
    border-top: 0;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-cell--context,
  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-cell--recommendation {
    grid-column: 1 / -1;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-table-wrap .data-table td::before {
    margin-bottom: 3px;
    font-size: 9px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-chip-list {
    gap: 3px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-chip {
    min-height: 19px;
    padding: 2px 5px;
    font-size: 9px;
    line-height: 1.08;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-count-grid {
    gap: 4px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-count-grid span {
    padding: 5px 4px;
    border-radius: 9px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-count-grid strong {
    font-size: 13px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-count-grid small {
    font-size: 9px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-recommendation-card {
    gap: 2px;
    padding: 6px;
    border-radius: 10px;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-recommendation-card .helper-text {
    font-size: 10px;
    line-height: 1.25;
  }

  body.is-app-surface .app-history-workspace[data-app-history-compact] .app-history-alt-list {
    -webkit-line-clamp: 1;
  }
}

body.is-admin-surface .legal-panel-card__table .table-lite {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

body.is-admin-surface .legal-panel-card__table .table-lite th,
body.is-admin-surface .legal-panel-card__table .table-lite td {
  overflow-wrap: anywhere;
}

body.is-admin-surface .legal-panel-card__table .button-row {
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  body.is-admin-surface .legal-workspace {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  body.is-admin-surface .legal-panel-card__summary {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
    align-items: center;
    padding-bottom: 8px;
  }

  body.is-admin-surface .legal-panel-card__title {
    gap: 1px;
  }

  body.is-admin-surface .legal-panel-card__title h2 {
    font-size: 0.92rem;
    line-height: 1.15;
  }

  body.is-admin-surface .legal-panel-card__meta {
    display: none;
  }

  body.is-admin-surface .legal-panel-card__summary .status-chip {
    grid-column: auto;
    grid-row: auto;
    justify-self: end;
    min-height: 28px;
    max-width: 96px;
    padding: 4px 7px;
    font-size: 10px;
    line-height: 1.1;
  }

  body.is-admin-surface .legal-panel-card__summary::after {
    grid-column: auto;
    grid-row: auto;
    min-width: 42px;
    padding: 4px 7px;
    font-size: 10px;
    line-height: 1.1;
  }

  body.is-admin-surface .legal-panel-card__body {
    gap: 8px;
    margin-top: 8px;
  }

  body.is-admin-surface .legal-panel-card__notice {
    font-size: 12px;
    line-height: 1.35;
  }

  body.is-admin-surface .legal-panel-card__table {
    max-height: 220px;
    padding-right: 2px;
  }

  body.is-admin-surface .legal-panel-card__version-draft > summary {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 11px;
  }

  body.is-admin-surface .legal-panel-card__version-draft[open] {
    padding: 10px;
  }

  body.is-admin-surface .legal-panel-card__version-draft[open] > summary {
    margin-bottom: 8px;
  }

  body.is-admin-surface .legal-panel-card__version-form textarea {
    min-height: 110px;
  }

  body.is-admin-surface .legal-panel-card__table .table-lite {
    display: block;
    min-width: 0;
  }

  body.is-admin-surface .legal-panel-card__table .table-lite thead {
    display: none;
  }

  body.is-admin-surface .legal-panel-card__table .table-lite tbody,
  body.is-admin-surface .legal-panel-card__table .table-lite tr,
  body.is-admin-surface .legal-panel-card__table .table-lite td {
    display: block;
    width: 100%;
  }

  body.is-admin-surface .legal-panel-card__table .table-lite tr {
    padding: 8px;
    border: 1px solid rgba(242, 215, 161, 0.10);
    border-radius: 12px;
    background: rgba(6, 13, 24, 0.32);
  }

  body.is-admin-surface .legal-panel-card__table .table-lite td {
    padding: 5px 0;
    border-bottom: 1px solid rgba(242, 215, 161, 0.08);
  }

  body.is-admin-surface .legal-panel-card__table .table-lite td:last-child {
    border-bottom: 0;
  }

  body.is-admin-surface .legal-panel-card__table .button-row {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  body.is-admin-surface .legal-panel-card__table .button-row form,
  body.is-admin-surface .legal-panel-card__table .button-row .button,
  body.is-admin-surface .legal-panel-card__table .button-row .button-ghost {
    width: 100%;
  }

  body.is-admin-surface .legal-panel-card__table .button-row .button,
  body.is-admin-surface .legal-panel-card__table .button-row .button-ghost {
    min-height: 34px;
    padding: 6px 10px;
    font-size: 11px;
  }
}

body.is-app-surface .app-support-workspace .support-layout {
  gap: 18px;
}

body.is-app-surface .app-support-workspace .support-column-stack {
  display: grid;
  gap: 18px;
  min-width: 0;
}

body.is-app-surface .app-support-workspace .support-thread,
body.is-app-surface .app-support-workspace .support-layout > .support-column-stack {
  min-width: 0;
}

body.is-app-surface .app-support-workspace .app-support-detail {
  display: block;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

body.is-app-surface .app-support-workspace .app-support-detail__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
}

body.is-app-surface .app-support-workspace .app-support-detail__summary > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

body.is-app-surface .app-support-workspace .app-support-detail__summary::-webkit-details-marker {
  display: none;
}

body.is-app-surface .app-support-workspace .app-support-detail__summary h2,
body.is-app-surface .app-support-workspace .app-support-detail__summary p {
  margin: 0;
}

body.is-app-surface .app-support-workspace .app-support-detail__summary h2 {
  overflow: hidden;
  color: #f8fafc;
  font-size: 18px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-app-surface .app-support-workspace .app-support-detail__summary .hero-kicker {
  width: fit-content;
  max-width: 100%;
  padding: 3px 8px;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.06em;
}

body.is-app-surface .app-support-workspace .app-support-detail__summary .helper-text {
  display: none;
}

body.is-app-surface .app-support-workspace .app-support-detail__summary .status-chip {
  justify-self: end;
  min-height: 28px;
  padding: 4px 8px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

body.is-app-surface .app-support-workspace .app-support-detail__body {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
  border-top: 1px solid rgba(242, 215, 161, 0.10);
}

body.is-app-surface .app-support-workspace .app-support-detail:not([open]) .app-support-detail__body {
  display: none;
}

body.is-app-surface .app-support-workspace .support-table-wrap {
  max-height: min(420px, 48vh);
  overflow: auto;
  scrollbar-gutter: stable;
  overscroll-behavior: contain;
}

@media (max-width: 700px) {
  body.is-app-surface .app-support-workspace {
    gap: 12px;
  }

  body.is-app-surface .app-support-workspace .security-heading {
    margin-bottom: 10px;
  }

  body.is-app-surface .app-support-workspace .security-heading h1 {
    font-size: 1.35rem;
    line-height: 1.05;
  }

  body.is-app-surface .app-support-workspace .security-heading .helper-text {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
  }

  body.is-app-surface .app-support-workspace .support-layout,
  body.is-app-surface .app-support-workspace .support-column-stack {
    gap: 10px;
  }

  body.is-app-surface .app-support-workspace .app-support-detail__summary {
    min-height: 44px;
    padding: 8px 10px;
    gap: 8px;
  }

  body.is-app-surface .app-support-workspace .app-support-detail__summary h2 {
    font-size: 15px;
  }

  body.is-app-surface .app-support-workspace .app-support-detail__summary .hero-kicker,
  body.is-app-surface .app-support-workspace .app-support-detail__summary .helper-text {
    display: none;
  }

  body.is-app-surface .app-support-workspace .app-support-detail__summary .status-chip {
    min-height: 24px;
    max-width: 92px;
    padding: 3px 7px;
    font-size: 10px;
  }

  body.is-app-surface .app-support-workspace .app-support-detail__body {
    gap: 10px;
    padding: 0 12px 12px;
  }

  body.is-app-surface .app-support-workspace .form-grid {
    gap: 10px;
  }

  body.is-app-surface .app-support-workspace .field label {
    font-size: 11px;
  }

  body.is-app-surface .app-support-workspace .field input,
  body.is-app-surface .app-support-workspace .field select,
  body.is-app-surface .app-support-workspace .field textarea {
    min-height: 42px;
  }

  body.is-app-surface .app-support-workspace .support-table-wrap {
    max-height: 240px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.is-app-surface .app-support-workspace .support-messages {
    max-height: 240px;
  }
}

body.is-app-surface .app-heroes-workspace .hero-catalog-grid {
  margin-top: 0;
  max-height: min(760px, 68vh);
  overflow: auto;
  overscroll-behavior: contain;
  align-content: start;
  padding-right: 6px;
  scrollbar-width: thin;
}

body.is-app-surface .app-heroes-workspace .hero-catalog-card {
  min-height: 176px;
  border-radius: 16px;
}

body.is-app-surface .app-heroes-workspace .hero-catalog-card__media {
  min-height: 96px;
}

body.is-app-surface .app-heroes-workspace .hero-catalog-card__media img {
  height: 96px;
}

body.is-app-surface .app-hero-detail-workspace .hero-detail-card {
  align-content: start;
}

body.is-app-surface .app-devices-workspace .device-session-row {
  border-color: rgba(242, 215, 161, 0.13);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.42);
}

body.is-app-surface .app-draft-workspace .settings-runtime-card,
body.is-app-surface .app-selection-workspace .settings-runtime-card,
body.is-app-surface .app-paywall-workspace .settings-runtime-card {
  display: grid;
  gap: 16px;
}

body.is-app-surface .app-draft-runtime-card #draft-app {
  min-height: 620px;
  max-height: min(920px, calc(100vh - 180px));
  overflow: auto;
  border: 1px solid rgba(242, 215, 161, 0.12);
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.46);
}

body.is-app-surface .app-draft-runtime-card[data-draft-asset-source="missing"] #draft-app {
  min-height: 0;
  max-height: none;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] .settings-runtime-card {
  gap: 12px;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] .app-draft-runtime-card #draft-app {
  min-height: 560px;
  max-height: min(780px, calc(100vh - 220px));
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .hero-band .container-xxl,
body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app section > .container-xxl {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .hero-band .container-xxl {
  padding-top: 12px !important;
  padding-bottom: 10px !important;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app section > .container-xxl.pb-4 {
  padding-top: 10px !important;
  padding-bottom: 12px !important;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .hero-band h1 {
  font-size: 24px;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .subtitle,
body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .panel-head p {
  display: none;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .status-strip {
  gap: 7px;
  margin-top: 10px;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .status-chip {
  min-width: 0;
  padding: 6px 8px;
  font-size: 11px;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .banner {
  margin: 10px 0;
  padding: 8px 10px;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .draft-grid,
body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .stack {
  gap: 12px;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .panel {
  padding: 12px;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .panel-head {
  margin-bottom: 10px;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .panel-head h2 {
  font-size: 16px;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .phase-list,
body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .recommendation-list,
body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .metric-stack {
  max-height: 260px;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .hero-list {
  max-height: min(420px, 46vh);
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

@media (max-width: 720px) {
  body.is-app-surface .app-draft-summary .settings-runtime-status-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.is-app-surface .app-draft-runtime-card #draft-app {
    min-height: 540px;
    max-height: min(720px, calc(100vh - 156px));
    border-radius: 16px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] {
    gap: 10px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] .app-draft-summary {
    padding: 12px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] .app-draft-summary .section-lead {
    display: none;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] .app-draft-summary .settings-runtime-status-list {
    gap: 6px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] .app-draft-summary .settings-runtime-status-list div {
    min-height: 0;
    padding: 7px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] .app-draft-summary .settings-runtime-status-list span {
    display: none;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] .app-draft-runtime-card {
    padding: 12px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] .app-draft-runtime-card .settings-runtime-card__head {
    align-items: center;
    gap: 8px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] .app-draft-runtime-card .section-title {
    font-size: 18px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] .app-draft-runtime-card #draft-app {
    min-height: 420px;
    max-height: min(500px, 59vh);
    border-radius: 12px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .hero-band .container-xxl {
    padding: 8px !important;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app section > .container-xxl.pb-4 {
    padding: 8px !important;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .topbar {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .eyebrow {
    display: none;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .hero-band h1 {
    font-size: 20px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .top-actions,
  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .cta-grid {
    gap: 6px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .top-actions {
    flex-wrap: nowrap;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .top-actions .icon-btn {
    min-height: 34px;
    min-width: 34px;
    padding: 8px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .top-actions .icon-btn span {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .status-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
    overflow: visible;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .status-chip {
    min-width: 0;
    padding: 5px 7px;
    font-size: 10.5px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .banner {
    margin: 8px 0;
    padding: 7px 8px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .panel {
    padding: 10px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .panel-head {
    align-items: center;
    margin-bottom: 8px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .panel-head h2 {
    font-size: 15px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app label {
    gap: 5px;
    font-size: 11px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app input,
  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app select {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 12px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .draft-depth {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .draft-depth-option {
    min-height: 56px;
    padding: 7px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .phase-list {
    max-height: 150px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .phase-btn,
  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .action-btn,
  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .icon-btn {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 12px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .hero-list {
    max-height: min(300px, 36vh);
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .hero-row {
    padding: 7px 8px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .hero-media img,
  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .hero-fallback {
    width: 34px;
    height: 34px;
  }

  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .recommendation-list,
  body.is-app-surface .app-draft-workspace[data-app-draft-compact] #draft-app .metric-stack {
    max-height: 220px;
  }
}

body.is-app-surface .app-selection-workspace.app-selection-runtime {
  min-height: 0;
  padding-bottom: 0;
  background: transparent;
  color: var(--text);
}

body.is-app-surface .app-selection-workspace .ctrl,
body.is-app-surface .app-selection-workspace .grid-wrap,
body.is-app-surface .app-selection-workspace .dock {
  width: 100%;
  margin: 0;
  padding: 0;
  position: static;
}

body.is-app-surface .app-selection-workspace .ctrl {
  gap: 12px;
}

body.is-app-surface .app-selection-workspace .search input,
body.is-app-surface .app-selection-workspace .pill,
body.is-app-surface .app-selection-workspace .dock-in,
body.is-app-surface .app-selection-workspace .state-card {
  border-color: rgba(242, 215, 161, 0.14);
  background: rgba(7, 17, 31, 0.42);
}

body.is-app-surface .app-selection-workspace .grid {
  min-height: 420px;
  max-height: min(720px, 68vh);
  overflow: auto;
  overscroll-behavior: contain;
  align-content: start;
  padding-right: 6px;
  scrollbar-width: thin;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

body.is-app-surface .app-selection-workspace .hc {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
}

body.is-app-surface .app-selection-workspace .dock-in {
  box-shadow: none;
  backdrop-filter: none;
}

body.is-app-surface .app-selection-workspace .pool-status {
  margin-left: 0;
}

body.is-app-surface .app-selection-workspace .app-selection-status-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.is-app-surface .app-paywall-prereqs,
body.is-app-surface .app-paywall-plan-grid {
  display: grid;
  gap: 14px;
}

body.is-app-surface .app-paywall-prereqs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.is-app-surface .app-paywall-prereqs div,
body.is-app-surface .app-paywall-plan-card {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(242, 215, 161, 0.14);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.42);
}

body.is-app-surface .app-paywall-prereqs span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.is-app-surface .app-paywall-prereqs strong,
body.is-app-surface .app-paywall-plan-card h3 {
  color: var(--text);
}

body.is-app-surface .app-paywall-plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body.is-app-surface .app-paywall-plan-card .button {
  width: fit-content;
}

.marketing-faq__preview {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.marketing-faq__preview p {
  margin: 4px 0 0;
}

.marketing-faq__preview strong {
  color: var(--text);
}

.marketing-faq__preview--compact {
  margin: 10px 0;
}

.marketing-faq__history details summary {
  color: var(--muted);
  cursor: pointer;
}

.marketing-faq__editor {
  display: grid;
  gap: 12px;
}

.marketing-seo__editor {
  display: grid;
  gap: 12px;
}

.marketing-seo__editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.marketing-seo__editor-grid .field--wide {
  grid-column: 1 / -1;
}

.marketing-pricing__editor {
  display: grid;
  gap: 12px;
}

.marketing-pricing__editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.marketing-pricing__editor-grid .field--wide {
  grid-column: 1 / -1;
}

.media-reorder-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.media-reorder-form .helper-text {
  flex: 1 1 280px;
  margin: 0;
}

.media-sort-table th:first-child,
.media-sort-table td:first-child {
  width: 92px;
}

.media-sort-row {
  transition: background 0.16s ease, outline-color 0.16s ease;
}

.media-sort-row.is-drag-over {
  outline: 2px solid rgba(92, 180, 255, 0.55);
  outline-offset: -2px;
  background: rgba(92, 180, 255, 0.08);
}

.media-sort-row.is-dragging {
  opacity: 0.58;
}

.media-sort-cell {
  vertical-align: middle;
}

.media-sort-handle,
.media-sort-controls button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: grab;
}

.media-sort-controls {
  display: inline-flex;
  gap: 4px;
  margin-left: 5px;
}

.media-sort-controls button {
  cursor: pointer;
}

.media-sort-handle:focus-visible,
.media-sort-controls button:focus-visible {
  outline: 2px solid #5cb4ff;
  outline-offset: 2px;
}

.media-upload-field {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.media-upload-field input[type="file"],
.field input[type="file"] {
  width: 100%;
  padding: 8px;
  border: 1px dashed var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.marketing-seo__schema {
  min-height: 180px;
  font-family: Consolas, "Courier New", monospace;
}

.marketing-faq__editor-row {
  display: grid;
  grid-template-columns: 36px minmax(190px, 0.8fr) minmax(240px, 1.2fr);
  gap: 12px;
  align-items: start;
}

.marketing-faq__order {
  display: grid;
  place-items: center;
  height: 38px;
  margin-top: 23px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
}

.marketing-faq__editor-row textarea {
  min-height: 78px;
  resize: vertical;
}

.admin-source-table th,
.admin-source-table td {
  vertical-align: middle;
}

.admin-source-action {
  min-height: 40px;
  padding: 0 14px;
}

.admin-source-sync-status {
  min-height: 24px;
  margin: 0;
}

.admin-source-sync-status.is-error {
  color: var(--danger);
}

.admin-source-sync-status.is-success {
  color: var(--success);
}

.admin-kpi-grid {
  margin-bottom: 20px;
}

.admin-kpi-grid .metric,
.admin-settings-grid .metric {
  border-radius: 22px;
}

.admin-settings-grid .metric__value {
  overflow-wrap: anywhere;
}

.brand-asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.brand-asset-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.brand-asset-card__heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
  margin-bottom: 12px;
}

.brand-asset-card__heading h3 {
  margin: 0;
  font-size: 15px;
}

.brand-asset-preview {
  display: grid;
  place-items: center;
  height: 84px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111820;
}

.brand-asset-preview img {
  display: block;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.brand-asset-form {
  gap: 10px;
  margin-top: 12px;
}

.brand-asset-upload {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.brand-asset-upload input[type="file"] {
  width: 100%;
  min-height: 42px;
  padding: 10px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
}

.smtp-diagnostics {
  border-color: rgba(239, 68, 68, 0.24);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.10), rgba(16, 26, 43, 0.88));
}

.smtp-diagnostics__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 0;
}

.smtp-diagnostics__meta div {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.62);
}

.smtp-diagnostics__meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.smtp-diagnostics__meta dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.smtp-diagnostics__error {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(239, 68, 68, 0.28);
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.10);
  color: #fecaca;
  overflow-wrap: anywhere;
}

.smtp-diagnostics__log {
  max-height: 320px;
  margin: 0;
  padding: 14px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050a12;
  color: #dbeafe;
  font: 12px/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

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

.admin-mobile-nav,
.app-mobile-nav {
  display: none;
}

.site-footer {
  margin-top: 36px;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  display: grid;
  gap: 22px;
}

.site-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}

.helper-text {
  color: var(--muted);
  line-height: 1.7;
}

.stack {
  display: grid;
  gap: 16px;
}

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

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

  .card-grid--three {
    grid-template-columns: 1fr;
  }

  .profile-editor-grid {
    grid-template-columns: 1fr;
  }

  .settings-detail-grid,
  .settings-privacy-grid {
    grid-template-columns: 1fr;
  }

  body.is-admin-surface .marketing-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.is-admin-surface .settings-workspace {
    grid-template-columns: 1fr;
  }

  body.is-admin-surface .settings-branding-workspace[data-branding-compact] {
    grid-template-columns: 1fr;
  }

  body.is-admin-surface .settings-hub {
    gap: 10px;
  }

  body.is-admin-surface .settings-hub__intro {
    padding: 12px;
    border-radius: 14px;
  }

  body.is-admin-surface .settings-hub__intro .admin-header__eyebrow {
    font-size: 10px;
  }

  body.is-admin-surface .settings-hub__intro .section-title {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.2;
  }

  body.is-admin-surface .settings-hub__intro .helper-text {
    display: none;
  }

  body.is-admin-surface .settings-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .settings-hub-card {
    min-height: 92px;
    gap: 6px;
    padding: 9px;
    border-radius: 14px;
  }

  body.is-admin-surface .settings-hub-card__status {
    padding: 4px 6px;
    font-size: 9px;
    line-height: 1.15;
  }

  body.is-admin-surface .settings-hub-card strong {
    font-size: 14px;
    line-height: 1.16;
  }

  body.is-admin-surface .settings-hub-card small {
    font-size: 10.5px;
    line-height: 1.28;
    -webkit-line-clamp: 2;
  }

  body.is-admin-surface .settings-hub__security-summary {
    box-sizing: border-box;
    min-height: 44px;
    padding: 8px 10px;
  }

  body.is-admin-surface .settings-hub__security > .settings-hub__security-summary {
    min-height: 44px;
    padding: 7px 9px;
    gap: 6px;
  }

  body.is-admin-surface .settings-hub__security-summary .admin-header__eyebrow {
    display: none;
  }

  body.is-admin-surface .settings-hub__security-summary .section-title {
    font-size: 15px;
    line-height: 1.2;
  }

  body.is-admin-surface .settings-hub__security-summary .status-chip {
    min-height: 24px;
    padding: 3px 7px;
    font-size: 10px;
  }

  body.is-admin-surface .settings-hub__security-body {
    padding: 10px;
  }

  body.is-admin-surface .settings-hub__security-body .settings-runtime-card__head {
    align-items: stretch;
    gap: 8px;
  }

  body.is-admin-surface .settings-hub__security-body .helper-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
  }

  body.is-admin-surface .settings-hub__security-body .settings-runtime-status-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.is-admin-surface .settings-workspace__aside,
  body.is-admin-surface .operations-workspace__aside,
  body.is-admin-surface .draft-data-workspace__aside,
  body.is-app-surface .app-settings-workspace__aside {
    position: static;
  }

  body.is-admin-surface .operations-workspace,
  body.is-admin-surface .draft-data-workspace,
  body.is-app-surface .app-settings-workspace {
    grid-template-columns: 1fr;
  }

  body.is-app-surface .app-settings-detail-grid,
  body.is-app-surface .app-settings-privacy-grid {
    grid-template-columns: 1fr;
  }

  body.is-app-surface .app-dashboard-workspace {
    gap: 12px;
  }

  body.is-app-surface .app-dashboard-workspace .settings-runtime-card {
    gap: 12px;
  }

  body.is-app-surface .app-dashboard-summary {
    padding: 14px;
  }

  body.is-app-surface .app-dashboard-summary::before {
    margin: -14px -14px 0;
  }

  body.is-app-surface .app-dashboard-summary .settings-runtime-card__head,
  body.is-app-surface .app-dashboard-actions-card .settings-runtime-card__head,
  body.is-app-surface .app-dashboard-pool-card .settings-runtime-card__head {
    gap: 10px;
  }

  body.is-app-surface .app-dashboard-summary .section-title,
  body.is-app-surface .app-dashboard-actions-card .section-title,
  body.is-app-surface .app-dashboard-pool-card .section-title {
    font-size: 17px;
    line-height: 1.2;
  }

  body.is-app-surface .app-dashboard-summary .section-lead,
  body.is-app-surface .app-dashboard-pool-card .section-lead {
    display: none;
  }

  body.is-app-surface .app-dashboard-metrics,
  body.is-app-surface .app-dashboard-readiness {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-app-surface .app-dashboard-metrics .metric {
    min-height: 74px;
    padding: 10px;
    border-radius: 18px;
  }

  body.is-app-surface .app-dashboard-metrics .metric__value {
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  body.is-app-surface .app-dashboard-metrics .metric__label {
    font-size: 10px;
    line-height: 1.25;
  }

  body.is-app-surface .app-dashboard-readiness div {
    min-height: 66px;
    padding: 9px;
    border-radius: 12px;
  }

  body.is-app-surface .app-dashboard-readiness span {
    font-size: 9px;
    line-height: 1.25;
  }

  body.is-app-surface .app-dashboard-readiness strong {
    font-size: 11px;
    line-height: 1.25;
  }

  body.is-app-surface .app-dashboard-actions-card,
  body.is-app-surface .app-dashboard-pool-card {
    padding: 14px;
  }

  body.is-app-surface .app-dashboard-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-app-surface .app-dashboard-action-card {
    min-height: 116px;
    gap: 7px;
    padding: 11px;
    border-radius: 14px;
  }

  body.is-app-surface .app-dashboard-action-card .status-chip {
    width: fit-content;
    min-height: 26px;
    padding: 4px 8px;
    font-size: 10px;
    line-height: 1.2;
  }

  body.is-app-surface .app-dashboard-action-card strong {
    font-size: 13px;
    line-height: 1.25;
  }

  body.is-app-surface .app-dashboard-action-card small {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(217, 226, 239, 0.68);
    font-size: 11px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.is-app-surface .app-dashboard-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-app-surface .app-dashboard-pills .pill {
    justify-content: center;
    min-height: 32px;
    padding: 6px 8px;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
  }

  body.is-app-surface .app-dashboard-pool-card .hero-token-list {
    min-height: 46px;
    max-height: 116px;
    padding: 8px;
    overflow: auto;
    border-radius: 14px;
    scrollbar-gutter: stable;
  }

  body.is-app-surface .app-dashboard-pool-card .helper-text {
    font-size: 12px;
    line-height: 1.45;
  }

  body.is-admin-surface .admin-dashboard-workspace {
    gap: 10px;
  }

  body.is-admin-surface .admin-dashboard-summary,
  body.is-admin-surface .admin-dashboard-actions {
    gap: 10px;
    padding: 12px;
  }

  body.is-admin-surface .admin-dashboard-summary::before,
  body.is-admin-surface .admin-dashboard-actions::before {
    margin: -12px -12px 0;
  }

  body.is-admin-surface .admin-dashboard-summary .settings-runtime-card__head,
  body.is-admin-surface .admin-dashboard-actions .settings-runtime-card__head {
    gap: 8px;
  }

  body.is-admin-surface .admin-dashboard-summary .section-title,
  body.is-admin-surface .admin-dashboard-actions .section-title {
    font-size: 17px;
    line-height: 1.2;
  }

  body.is-admin-surface .admin-dashboard-actions .section-lead {
    display: none;
  }

  body.is-admin-surface .admin-dashboard-health {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 8px;
    padding: 8px;
  }

  body.is-admin-surface .admin-dashboard-health .admin-health__item {
    min-width: 0;
    justify-content: center;
    gap: 4px;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
  }

  body.is-admin-surface .admin-dashboard-health .admin-health__item strong {
    display: block;
    font-size: 11px;
  }

  body.is-admin-surface .admin-dashboard-health .admin-health__dot {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
  }

  body.is-admin-surface .admin-dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .admin-dashboard-metrics .metric {
    min-width: 0;
    min-height: 68px;
    padding: 9px;
    border-radius: 18px;
  }

  body.is-admin-surface .admin-dashboard-metrics .metric__value {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  body.is-admin-surface .admin-dashboard-metrics .metric__label {
    font-size: 10px;
    line-height: 1.2;
  }

  body.is-admin-surface .admin-dashboard-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .admin-dashboard-action-card {
    min-height: 116px;
    gap: 7px;
    padding: 11px;
    border-radius: 14px;
  }

  body.is-admin-surface .admin-dashboard-action-card__status {
    min-height: 25px;
    padding: 4px 7px;
    font-size: 9px;
    line-height: 1.1;
  }

  body.is-admin-surface .admin-dashboard-action-card strong {
    font-size: 13px;
    line-height: 1.22;
  }

  body.is-admin-surface .admin-dashboard-action-card small {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(217, 226, 239, 0.68);
    font-size: 11px;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.is-admin-surface .admin-dashboard-action-card em {
    font-size: 11px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  body.is-admin-surface .operations-tabs,
  body.is-admin-surface .draft-data-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.is-admin-surface .operations-summary-card .settings-runtime-status-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .operations-summary-card .settings-runtime-status-list div {
    padding: 9px 10px;
  }

  body.is-admin-surface .operations-summary-card .settings-runtime-status-list strong {
    font-size: 12px;
    line-height: 1.25;
  }

  body.is-admin-surface .operations-workspace--backups {
    gap: 10px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-command-strip,
  body.is-admin-surface .operations-workspace--backups .settings-workspace__primary {
    gap: 10px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-summary-card,
  body.is-admin-surface .operations-workspace--backups .operations-panel-card {
    gap: 10px;
    padding: 14px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-summary-card > .helper-text,
  body.is-admin-surface .operations-workspace--backups .operations-backup-toolbar .helper-text {
    display: none;
  }

  body.is-admin-surface .operations-workspace--backups .settings-runtime-card__head {
    gap: 10px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-summary-card .section-title,
  body.is-admin-surface .operations-workspace--backups .operations-backup-toolbar h2 {
    font-size: 17px;
    line-height: 1.2;
  }

  body.is-admin-surface .operations-workspace--backups .operations-summary-card .settings-runtime-status-list {
    gap: 6px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-summary-card .settings-runtime-status-list div {
    min-height: 56px;
    padding: 8px;
    border-radius: 12px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-summary-card .settings-runtime-status-list span {
    font-size: 9px;
    line-height: 1.15;
  }

  body.is-admin-surface .operations-workspace--backups .operations-summary-card .settings-runtime-status-list strong {
    font-size: 11px;
    line-height: 1.2;
  }

  body.is-admin-surface .operations-workspace--backups .settings-runtime-back {
    width: 100%;
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-tabs {
    gap: 6px;
    padding: 7px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-tab {
    min-height: 36px;
    padding: 0 6px;
    font-size: 10px;
    line-height: 1.12;
  }

  body.is-admin-surface .operations-workspace--backups .operations-warning-detail summary {
    padding: 10px 12px;
    font-size: 11px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-warning-grid .operations-warning-detail .helper-text {
    padding: 0 12px 10px;
    font-size: 11px;
    line-height: 1.35;
  }

  body.is-admin-surface .operations-workspace--backups .operations-panel-card__head {
    gap: 8px;
    padding-bottom: 8px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-backup-toolbar .button {
    width: 100%;
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-backup-verification {
    margin: 0;
    font-size: 11px;
    line-height: 1.35;
  }

  body.is-admin-surface .settings-branding-form-stack {
    grid-template-columns: 1fr;
  }

  body.is-admin-surface .settings-branding-social-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.is-admin-surface .marketing-workspace {
    gap: 10px;
  }

  body.is-admin-surface .marketing-toolbar,
  body.is-admin-surface .marketing-section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  body.is-admin-surface .marketing-toolbar .button-ghost,
  body.is-admin-surface .marketing-toolbar .status-chip {
    width: 100%;
  }

  body.is-admin-surface .marketing-tabs {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
    padding: 4px;
    border-radius: 14px;
  }

  body.is-admin-surface .marketing-tab {
    min-width: 0;
    min-height: 34px;
    gap: 2px;
    padding: 5px 8px;
    border-radius: 10px;
  }

  body.is-admin-surface .marketing-tab small {
    display: none;
  }

  body.is-admin-surface .marketing-tab span {
    white-space: nowrap;
  }

  body.is-admin-surface .marketing-section--overview {
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }

  body.is-admin-surface .marketing-section--overview .settings-runtime-card__head {
    gap: 8px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  body.is-admin-surface .marketing-section--overview .settings-runtime-card__head .section-title {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.18;
  }

  body.is-admin-surface .marketing-section--overview .settings-runtime-card__head .helper-text,
  body.is-admin-surface .marketing-section--overview .settings-runtime-card__head .status-chip {
    display: none;
  }

  body.is-admin-surface .marketing-overview-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .marketing-overview-metrics .metric {
    min-height: 76px;
    padding: 10px;
    border-radius: 18px;
  }

  body.is-admin-surface .marketing-overview-metrics .metric__label {
    font-size: 10px;
  }

  body.is-admin-surface .marketing-overview-metrics .metric__value {
    overflow-wrap: anywhere;
    font-size: 16px;
    line-height: 1.15;
  }

  body.is-admin-surface .marketing-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .marketing-overview-card {
    min-height: 82px;
    gap: 5px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    padding: 10px;
    border-radius: 18px;
  }

  body.is-admin-surface .marketing-overview-card span {
    font-size: 10px;
  }

  body.is-admin-surface .marketing-overview-card strong {
    color: var(--accent-strong);
    font-size: 16px;
    line-height: 1.15;
    text-align: left;
  }

  body.is-admin-surface .marketing-overview-card small {
    display: none;
  }

  body.is-admin-surface .marketing-track-preview {
    flex-wrap: wrap;
    max-height: 40px;
    overflow: hidden;
    padding-bottom: 2px;
  }

  body.is-admin-surface .marketing-track-preview span {
    flex: 0 0 auto;
    max-width: 160px;
    padding: 6px 8px;
    font-size: 11px;
  }

  body.is-admin-surface .marketing-action-detail__body,
  body.is-admin-surface .marketing-page-detail__body {
    max-height: min(720px, 72vh);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.is-admin-surface .marketing-page-detail__summary {
    min-height: 52px;
    padding: 11px 12px;
  }

  body.is-admin-surface .marketing-section-heading {
    margin-bottom: 8px;
    padding: 14px;
  }

  body.is-admin-surface .settings-runtime-card__head {
    display: grid;
  }

  body.is-app-surface .settings-runtime-card__head {
    display: grid;
  }

  body.is-app-surface .app-selection-workspace {
    gap: 10px;
  }

  body.is-app-surface .app-selection-workspace .settings-runtime-card {
    gap: 10px;
    padding: 12px;
  }

  body.is-app-surface .app-selection-summary-card {
    gap: 8px;
  }

  body.is-app-surface .app-selection-summary-card::before {
    margin: -12px -12px 0;
  }

  body.is-app-surface .app-selection-summary-card .settings-runtime-card__head,
  body.is-app-surface .app-selection-control-card .settings-runtime-card__head {
    gap: 5px;
  }

  body.is-app-surface .app-selection-summary-card .section-title,
  body.is-app-surface .app-selection-control-card .section-title {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.18;
  }

  body.is-app-surface .app-selection-summary-card .status-chip,
  body.is-app-surface .app-selection-summary-card .section-lead {
    display: none;
  }

  body.is-app-surface .app-selection-counter {
    min-height: 40px;
    padding: 7px 12px;
  }

  body.is-app-surface .app-selection-workspace .app-selection-status-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-app-surface .app-selection-workspace .app-selection-status-list div {
    gap: 3px;
    min-height: 54px;
    padding: 7px 7px;
  }

  body.is-app-surface .app-selection-workspace .app-selection-status-list span {
    font-size: 9px;
  }

  body.is-app-surface .app-selection-workspace .app-selection-status-list strong {
    font-size: 10px;
    line-height: 1.2;
  }

  body.is-app-surface .app-selection-workspace .ctrl,
  body.is-app-surface .app-selection-workspace .grid-wrap,
  body.is-app-surface .app-selection-workspace .dock,
  body.is-app-surface .app-selection-workspace .dock-in,
  body.is-app-surface .app-selection-workspace .search,
  body.is-app-surface .app-selection-workspace .grid {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  body.is-app-surface .app-selection-workspace .ctrl {
    gap: 7px;
  }

  body.is-app-surface .app-selection-workspace .search input {
    height: 40px;
    padding: 0 36px;
  }

  body.is-app-surface .app-selection-workspace .search .lead {
    left: 13px;
  }

  body.is-app-surface .app-selection-workspace .search .kbd {
    display: none;
  }

  body.is-app-surface .app-selection-workspace .pills-row {
    flex-wrap: wrap;
    min-width: 0;
    overflow-x: visible;
    gap: 5px;
    padding-bottom: 0;
  }

  body.is-app-surface .app-selection-workspace .dock-l,
  body.is-app-surface .app-selection-workspace .dock-r,
  body.is-app-surface .app-selection-workspace .dock-portraits {
    flex-wrap: wrap;
    min-width: 0;
    overflow-x: visible;
  }

  body.is-app-surface .app-selection-workspace .pill {
    flex: 1 1 calc(25% - 5px);
    justify-content: center;
    min-width: 0;
    min-height: 29px;
    padding: 5px 8px;
    font-size: 11px;
  }

  body.is-app-surface .app-selection-workspace .app-selection-attr-pills .pill {
    flex-basis: calc(20% - 5px);
  }

  body.is-app-surface .app-selection-workspace .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 300px;
    max-height: min(360px, 43vh);
    gap: 7px;
    padding-right: 4px;
  }

  body.is-app-surface .app-selection-workspace .hc {
    aspect-ratio: 1 / 1.18;
    border-radius: 12px;
  }

  body.is-app-surface .app-selection-workspace .hc-meta {
    padding: 34px 8px 8px;
  }

  body.is-app-surface .app-selection-workspace .hc-name {
    font-size: 12px;
  }

  body.is-app-surface .app-selection-workspace .hc-stat {
    font-size: 9px;
  }

  body.is-app-surface .app-selection-workspace .hc-attr {
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    font-size: 11px;
  }

  body.is-app-surface .app-selection-workspace .hc-tier {
    top: 8px;
    right: 8px;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 8px;
    font-size: 10px;
  }

  body.is-app-surface .app-selection-workspace .dock-in {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 6px;
  }

  body.is-app-surface .app-selection-workspace .dock-l {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    justify-content: stretch;
  }

  body.is-app-surface .app-selection-workspace .dock-r {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-app-surface .app-selection-workspace .dock-l-lab {
    display: none;
  }

  body.is-app-surface .app-selection-workspace .dp-slot,
  body.is-app-surface .app-selection-workspace .dp-more {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 9px;
  }

  body.is-app-surface .app-selection-workspace .btn {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 11px;
  }

  body.is-app-surface .app-selection-workspace .search input,
  body.is-app-surface .app-selection-workspace .dock-r .btn {
    min-width: 0;
  }

  body.is-app-surface .app-main .app-selection-page {
    padding-top: 12px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] {
    gap: 8px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-settings-workspace__aside,
  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-settings-workspace__primary {
    gap: 8px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .settings-runtime-card {
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-summary-card::before {
    margin: -10px -10px 0;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-summary-card .hero-kicker,
  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-control-card .hero-kicker {
    display: none;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-summary-card .section-title,
  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-control-card .section-title {
    font-size: 16px;
    line-height: 1.12;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-counter {
    min-height: 32px;
    gap: 7px;
    padding: 5px 9px;
    font-size: 11px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-counter .counter-bar {
    width: 52px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-status-list div {
    min-height: 36px;
    place-content: center;
    padding: 5px 6px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-status-list span {
    display: none;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-status-list strong {
    font-size: 9.5px;
    line-height: 1.12;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .settings-runtime-back {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 11px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .pool-status {
    margin: 0;
    font-size: 10px;
    line-height: 1.2;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .ctrl {
    gap: 5px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .search input {
    height: 34px;
    padding: 0 30px;
    font-size: 12px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .search .lead {
    left: 10px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .pill {
    min-height: 26px;
    padding: 4px 7px;
    font-size: 10px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-role-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-role-pills::-webkit-scrollbar {
    display: none;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-role-pills .pill {
    flex: 0 0 auto;
    min-width: 72px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .grid {
    min-height: 240px;
    max-height: min(300px, 36vh);
    gap: 5px;
    padding-right: 3px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc {
    aspect-ratio: 1 / 1.08;
    border-radius: 10px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc-meta {
    padding: 29px 6px 6px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc-name {
    font-size: 11px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc-stat {
    font-size: 8.5px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc-attr {
    top: 6px;
    left: 6px;
    width: 21px;
    height: 21px;
    border-radius: 7px;
    font-size: 10px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc-tier {
    top: 6px;
    right: 6px;
    min-width: 21px;
    height: 21px;
    padding: 0 6px;
    border-radius: 7px;
    font-size: 9px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .dock-in {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 0.82fr);
    align-items: center;
    gap: 6px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .dock-l {
    display: block;
    min-width: 0;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .dock-portraits {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    overflow: hidden;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .dock-r {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .dp-slot,
  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .dp-more {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 8px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .btn {
    min-height: 30px;
    padding: 5px 6px;
    font-size: 10px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] #contLabel {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-app-surface .app-settings-workspace[data-app-settings-compact] {
    gap: 8px;
  }

  body.is-app-surface .app-settings-workspace[data-app-settings-compact] .settings-runtime-card {
    gap: 8px;
    padding: 10px;
  }

  body.is-app-surface .app-settings-workspace[data-app-settings-compact] .settings-runtime-card--summary::before {
    margin: -10px -10px 0;
  }

  body.is-app-surface .app-settings-workspace[data-app-settings-compact] .settings-runtime-card__head {
    gap: 7px;
  }

  body.is-app-surface .app-settings-workspace[data-app-settings-compact] .section-title {
    font-size: 17px;
    line-height: 1.12;
  }

  body.is-app-surface .app-settings-workspace[data-app-settings-compact] .settings-runtime-card--summary > .helper-text {
    display: none;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-card--summary .settings-runtime-card__head {
    gap: 6px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-card--summary .status-chip {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 10px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-status-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-status-list div {
    min-height: 44px;
    padding: 6px 7px;
    border-radius: 11px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-status-list span {
    font-size: 10px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-status-list strong {
    font-size: 11.5px;
    line-height: 1.16;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-actions-card .settings-runtime-card__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 7px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-back {
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1.1;
    white-space: nowrap;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-card {
    min-height: 66px;
    padding: 8px;
    gap: 4px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-card strong {
    font-size: 12px;
    line-height: 1.16;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-card .status-chip {
    min-height: 20px;
    padding: 3px 7px;
    font-size: 9.5px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-card small {
    display: none;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-detail-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 50px;
    padding: 8px 10px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-detail-summary::after {
    min-width: 42px;
    padding: 5px 8px;
    font-size: 10px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-detail-body {
    gap: 7px;
    padding: 0 10px 10px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-detail-body > .helper-text,
  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-state-card .helper-text {
    display: none;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-detail-grid,
  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-privacy-grid {
    gap: 7px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .settings-workspace {
    gap: 10px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .settings-runtime-card {
    gap: 10px;
    padding: 12px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .settings-runtime-card--summary::before {
    margin: -12px -12px 0;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-summary .section-title,
  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .app-heroes-list-card .section-title {
    font-size: 18px;
    line-height: 1.15;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-summary > .helper-text,
  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .app-heroes-list-card .settings-runtime-card__head .helper-text,
  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .settings-runtime-status-list span {
    display: none;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .settings-runtime-status-list div {
    min-height: 42px;
    padding: 7px 8px;
    border-radius: 12px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .settings-runtime-status-list strong {
    font-size: 13px;
    line-height: 1;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .search-box input {
    min-height: 40px;
    padding: 9px 11px;
    border-radius: 12px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .button-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 0;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .button-row .button,
  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .button-row .button-ghost {
    width: 100%;
    min-height: 36px;
    padding: 8px 7px;
    border-radius: 11px;
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .app-heroes-list-card .settings-runtime-card__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .app-heroes-list-card .pill {
    min-height: 28px;
    padding: 5px 8px;
    font-size: 10px;
    white-space: nowrap;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-grid {
    max-height: min(430px, 50vh);
    gap: 8px;
    padding-right: 2px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card {
    min-height: 128px;
    border-radius: 13px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card__media,
  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card__media img {
    min-height: 72px;
    height: 72px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card__body {
    gap: 3px;
    padding: 9px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card__body strong {
    overflow: hidden;
    font-size: 12px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card__body span {
    font-size: 10px;
    line-height: 1.1;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .settings-runtime-form,
  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-state-card {
    padding: 8px;
    border-radius: 12px;
    gap: 6px;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-state-card h3 {
    font-size: 13px;
    line-height: 1.24;
  }

  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-state-card .button,
  body.is-app-surface .app-settings-workspace[data-settings-runtime-panel="player-settings"] .app-settings-state-card .button-ghost {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  body.is-app-surface .app-subscription-workspace {
    gap: 12px;
  }

  body.is-app-surface .app-subscription-workspace .settings-runtime-card {
    gap: 12px;
    padding: 14px;
  }

  body.is-app-surface .app-subscription-summary-card::before {
    margin: -14px -14px 0;
  }

  body.is-app-surface .app-subscription-summary-card .helper-text {
    display: none;
  }

  body.is-app-surface .app-subscription-summary-card .settings-runtime-card__head,
  body.is-app-surface .app-subscription-actions-card .settings-runtime-card__head,
  body.is-app-surface .app-subscription-section .settings-runtime-card__head {
    gap: 10px;
  }

  body.is-app-surface .app-subscription-summary-card .section-title,
  body.is-app-surface .app-subscription-actions-card .section-title,
  body.is-app-surface .app-subscription-section .section-title {
    font-size: 17px;
    line-height: 1.2;
  }

  body.is-app-surface .app-subscription-status-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-app-surface .app-subscription-status-grid div {
    min-height: 58px;
    padding: 8px;
    border-radius: 12px;
  }

  body.is-app-surface .app-subscription-status-grid span {
    font-size: 10px;
    line-height: 1.12;
  }

  body.is-app-surface .app-subscription-status-grid strong {
    font-size: 12px;
    line-height: 1.16;
  }

  body.is-app-surface .app-subscription-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-app-surface .app-subscription-action-card {
    min-height: 112px;
    padding: 12px;
    gap: 6px;
    border-radius: 14px;
  }

  body.is-app-surface .app-subscription-action-card strong {
    font-size: 14px;
    line-height: 1.18;
  }

  body.is-app-surface .app-subscription-action-card small {
    display: -webkit-box;
    min-height: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 11px;
    line-height: 1.25;
  }

  body.is-app-surface .subscription-table-shell {
    overflow: visible;
  }

  body.is-app-surface .subscription-table,
  body.is-app-surface .subscription-table thead,
  body.is-app-surface .subscription-table tbody,
  body.is-app-surface .subscription-table tr,
  body.is-app-surface .subscription-table th,
  body.is-app-surface .subscription-table td {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  body.is-app-surface .subscription-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  body.is-app-surface .subscription-table tbody {
    display: grid;
    gap: 8px;
  }

  body.is-app-surface .subscription-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(242, 215, 161, 0.12);
    border-radius: 14px;
    background: rgba(7, 17, 31, 0.48);
  }

  body.is-app-surface .subscription-table td {
    display: grid;
    gap: 3px;
    padding: 0;
    border-bottom: 0;
    color: var(--text);
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  body.is-app-surface .subscription-table td::before {
    content: attr(data-label);
    color: rgba(217, 226, 239, 0.62);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
  }

  body.is-app-surface .subscription-table td + td {
    padding-top: 0;
    border-top: 0;
  }

  body.is-app-surface .subscription-table td:last-child {
    padding-bottom: 0;
  }

  body.is-app-surface .invoice-table td:last-child {
    grid-column: span 2;
  }

  body.is-app-surface .subscription-table .button,
  body.is-app-surface .subscription-table .button-ghost {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] {
    gap: 8px;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .settings-runtime-card {
    gap: 7px;
    padding: 10px;
    border-radius: 14px;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .app-subscription-summary-card::before {
    display: none;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .settings-runtime-card__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 6px;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .hero-kicker {
    font-size: 9px;
    line-height: 1;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .section-title {
    font-size: 15px;
    line-height: 1.08;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .status-chip {
    min-height: 22px;
    padding: 3px 6px;
    border-radius: 999px;
    font-size: 8px;
    line-height: 1;
    white-space: normal;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .settings-runtime-back {
    min-height: 28px;
    padding: 0 8px;
    font-size: 10px;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .app-subscription-status-grid {
    gap: 4px;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .app-subscription-status-grid div {
    min-height: 40px;
    padding: 5px;
    border-radius: 10px;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .app-subscription-status-grid span {
    font-size: 7px;
    line-height: 1;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .app-subscription-status-grid strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 9px;
    line-height: 1.08;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .app-subscription-action-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .app-subscription-action-card {
    min-height: 66px;
    padding: 7px;
    gap: 3px;
    border-radius: 11px;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .app-subscription-action-card span {
    font-size: 8px;
    line-height: 1;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .app-subscription-action-card strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 10px;
    line-height: 1.08;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .app-subscription-action-card small {
    display: none;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .app-subscription-section {
    scroll-margin-top: 80px;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .subscription-table tbody {
    gap: 5px;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .subscription-table tr {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 7px;
    border-radius: 11px;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .subscription-table td {
    gap: 2px;
    font-size: 10px;
    line-height: 1.12;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .subscription-table td::before {
    font-size: 7px;
    line-height: 1;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .invoice-table td:last-child {
    grid-column: auto;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .subscription-table .button,
  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .subscription-table .button-ghost {
    min-height: 28px;
    padding: 0 6px;
    font-size: 9px;
    line-height: 1;
  }

  body.is-app-surface .app-subscription-workspace[data-app-subscription-compact] .invoice-button__icon {
    display: none;
  }

  body.is-admin-surface .operations-tabs,
  body.is-admin-surface .draft-data-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
    padding: 8px;
  }

  body.is-admin-surface .operations-tab,
  body.is-admin-surface .draft-data-tab {
    min-width: 0;
    max-width: 100%;
    min-height: 40px;
    padding: 0 8px;
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 11px;
    line-height: 1.15;
  }

  body.is-admin-surface .draft-data-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }

  body.is-admin-surface .draft-data-tab {
    min-width: 0;
    min-height: 38px;
    padding: 0 6px;
    font-size: 10px;
  }

  body.is-admin-surface .operations-table-wrap,
  body.is-admin-surface .draft-data-table-wrap {
    max-height: none;
    overflow: visible;
    border-radius: 16px;
  }

  body.is-admin-surface .operations-table-wrap.operations-backup-table-wrap {
    max-height: min(400px, 48vh);
    overflow: auto;
    overscroll-behavior: contain;
  }

  body.is-admin-surface .operations-workspace--backups .operations-table-wrap.operations-backup-table-wrap {
    max-height: min(390px, 46vh);
  }

  body.is-admin-surface .operations-workspace--backups .operations-table-wrap .data-table tbody {
    gap: 8px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-table-wrap .data-table tr {
    padding: 10px;
    border-radius: 14px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-table-wrap .data-table td {
    padding-bottom: 8px;
    font-size: 13px;
    line-height: 1.35;
  }

  body.is-admin-surface .operations-workspace--backups .operations-table-wrap .data-table td + td {
    padding-top: 8px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-backup-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .operations-workspace--backups .operations-backup-actions .button-ghost {
    min-height: 34px;
    padding: 0 8px;
    font-size: 11px;
    line-height: 1.15;
  }

  body.is-admin-surface .draft-data-summary-card .settings-runtime-status-list,
  body.is-admin-surface .draft-data-workspace .draft-data-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .draft-data-summary-card {
    gap: 10px;
    padding: 12px;
  }

  body.is-admin-surface .draft-data-summary-card .settings-runtime-card__head {
    gap: 8px;
    padding-bottom: 0;
  }

  body.is-admin-surface .draft-data-summary-card .settings-runtime-status-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-admin-surface .draft-data-summary-card .settings-runtime-status-list > div {
    min-height: 52px;
    padding: 8px 6px;
  }

  body.is-admin-surface .draft-data-summary-card .settings-runtime-status-list span {
    font-size: 9px;
    line-height: 1.15;
  }

  body.is-admin-surface .draft-data-summary-card .settings-runtime-status-list strong {
    font-size: 11px;
    line-height: 1.15;
  }

  body.is-admin-surface .draft-data-summary-card .settings-runtime-back {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  body.is-admin-surface .draft-data-audit-detail .draft-data-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.is-admin-surface .draft-data-workspace .draft-data-kpi-grid .metric {
    min-height: 60px;
    padding: 8px;
  }

  body.is-admin-surface .draft-data-workspace .draft-data-kpi-grid .metric__value {
    font-size: 14px;
    line-height: 1.25;
  }

  body.is-admin-surface .draft-data-workspace .draft-data-kpi-grid .metric__label {
    font-size: 10px;
    line-height: 1.25;
  }

  body.is-admin-surface .draft-data-panel-card__head {
    gap: 10px;
    padding-bottom: 10px;
  }

  body.is-admin-surface .draft-data-panel-card__head .helper-text {
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.35;
  }

  body.is-admin-surface .draft-data-audit-summary {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 58px;
    padding: 12px;
  }

  body.is-admin-surface .draft-data-audit-summary .helper-text {
    display: none;
  }

  body.is-admin-surface .draft-data-audit-summary .section-title {
    font-size: 16px;
    line-height: 1.2;
  }

  body.is-admin-surface .draft-data-audit-summary::after {
    min-width: 40px;
    padding: 6px 9px;
    font-size: 11px;
  }

  body.is-admin-surface .draft-data-audit-body {
    padding: 0 12px 12px;
  }

  body.is-admin-surface .draft-data-table-wrap {
    max-height: min(420px, 50vh);
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  body.is-admin-surface .draft-data-table-wrap .data-table tbody {
    gap: 8px;
  }

  body.is-admin-surface .draft-data-table-wrap .data-table tr {
    padding: 8px;
  }

  body.is-admin-surface .draft-data-table-wrap .data-table td {
    padding-bottom: 7px;
  }

  body.is-admin-surface .operations-table-wrap .data-table,
  body.is-admin-surface .operations-table-wrap .data-table thead,
  body.is-admin-surface .operations-table-wrap .data-table tbody,
  body.is-admin-surface .operations-table-wrap .data-table tr,
  body.is-admin-surface .operations-table-wrap .data-table th,
  body.is-admin-surface .operations-table-wrap .data-table td,
  body.is-admin-surface .draft-data-table-wrap .data-table,
  body.is-admin-surface .draft-data-table-wrap .data-table thead,
  body.is-admin-surface .draft-data-table-wrap .data-table tbody,
  body.is-admin-surface .draft-data-table-wrap .data-table tr,
  body.is-admin-surface .draft-data-table-wrap .data-table th,
  body.is-admin-surface .draft-data-table-wrap .data-table td {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  body.is-admin-surface .operations-table-wrap .data-table thead,
  body.is-admin-surface .draft-data-table-wrap .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  body.is-admin-surface .operations-table-wrap .data-table tbody,
  body.is-admin-surface .draft-data-table-wrap .data-table tbody {
    display: grid;
    gap: 12px;
  }

  body.is-admin-surface .operations-table-wrap .data-table tr,
  body.is-admin-surface .draft-data-table-wrap .data-table tr {
    padding: 12px;
    border: 1px solid rgba(242, 215, 161, 0.12);
    border-radius: 16px;
    background: rgba(7, 17, 31, 0.48);
  }

  body.is-admin-surface .operations-table-wrap .data-table td,
  body.is-admin-surface .draft-data-table-wrap .data-table td {
    padding: 0 0 12px;
    border-bottom: 0;
    overflow-wrap: anywhere;
  }

  body.is-admin-surface .operations-table-wrap .data-table td + td,
  body.is-admin-surface .draft-data-table-wrap .data-table td + td {
    padding-top: 8px;
    border-top: 1px solid rgba(242, 215, 161, 0.10);
  }

  body.is-admin-surface .operations-table-wrap .data-table td:last-child,
  body.is-admin-surface .draft-data-table-wrap .data-table td:last-child {
    padding-bottom: 0;
  }

  body.is-admin-surface .operations-table-wrap .data-table form,
  body.is-admin-surface .operations-table-wrap .data-table input,
  body.is-admin-surface .operations-table-wrap .data-table select,
  body.is-admin-surface .operations-table-wrap .data-table textarea,
  body.is-admin-surface .operations-table-wrap .data-table .button,
  body.is-admin-surface .operations-table-wrap .data-table .button-ghost,
  body.is-admin-surface .operations-table-wrap .data-table .button-danger,
  body.is-admin-surface .draft-data-table-wrap .data-table form,
  body.is-admin-surface .draft-data-table-wrap .data-table input,
  body.is-admin-surface .draft-data-table-wrap .data-table select,
  body.is-admin-surface .draft-data-table-wrap .data-table textarea,
  body.is-admin-surface .draft-data-table-wrap .data-table .button,
  body.is-admin-surface .draft-data-table-wrap .data-table .button-ghost {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
  }

  body.is-admin-surface .operations-table-wrap .data-table .button,
  body.is-admin-surface .operations-table-wrap .data-table .button-ghost,
  body.is-admin-surface .operations-table-wrap .data-table .button-danger,
  body.is-admin-surface .draft-data-table-wrap .data-table .button,
  body.is-admin-surface .draft-data-table-wrap .data-table .button-ghost {
    width: 100%;
  }

  body.is-admin-surface .operations-workspace--players {
    gap: 8px;
  }

  body.is-admin-surface .operations-workspace--players .operations-summary-card,
  body.is-admin-surface .operations-workspace--players .operations-panel-card {
    gap: 8px;
    padding: 10px;
  }

  body.is-admin-surface .operations-workspace--players .operations-summary-card .helper-text,
  body.is-admin-surface .operations-workspace--players .operations-panel-card__head .helper-text {
    display: none;
  }

  body.is-admin-surface .operations-workspace--players .operations-summary-card .settings-runtime-status-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-admin-surface .operations-workspace--players .operations-summary-card .settings-runtime-status-list > div {
    min-height: 46px;
    padding: 6px;
  }

  body.is-admin-surface .operations-workspace--players .operations-summary-card .settings-runtime-status-list span {
    font-size: 9px;
    line-height: 1.15;
  }

  body.is-admin-surface .operations-workspace--players .operations-summary-card .settings-runtime-status-list strong {
    font-size: 11px;
    line-height: 1.15;
  }

  body.is-admin-surface .operations-workspace--players .operations-panel-card__head {
    gap: 6px;
    padding-bottom: 6px;
  }

  body.is-admin-surface .operations-workspace--players .operations-panel-card__head h2 {
    font-size: 16px;
    line-height: 1.2;
  }

  body.is-admin-surface .operations-workspace--players .operations-warning-grid {
    display: none;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-table-wrap .data-table tbody {
    gap: 6px;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-table-wrap .data-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border-radius: 12px;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-table-wrap .data-table td {
    display: grid;
    gap: 2px;
    padding: 0;
    border: 0;
    font-size: 11px;
    line-height: 1.25;
    color: var(--text);
  }

  body.is-admin-surface .operations-workspace--players .operations-player-table-wrap .data-table td::before {
    content: attr(data-label);
    color: rgba(217, 226, 239, 0.62);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-table-wrap .data-table td[data-label="Oyuncu"] .helper-text {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: rgba(217, 226, 239, 0.58);
    font-size: 10px;
    line-height: 1.12;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-table-wrap .data-table td[data-label="Plan / erişim"] br,
  body.is-admin-surface .operations-workspace--players .operations-player-table-wrap .data-table td[data-label="Plan / erişim"] .helper-text {
    display: none;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-table-wrap .data-table td + td {
    padding-top: 0;
    border-top: 0;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-table-wrap .data-table td:last-child {
    grid-column: 1 / -1;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-lifecycle-summary {
    min-height: 38px;
    padding: 5px 8px;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-lifecycle-summary strong {
    font-size: 11px;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-lifecycle-summary small {
    display: none;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-lifecycle-summary::after {
    min-width: 42px;
    padding: 4px 7px;
    font-size: 10px;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-lifecycle-body {
    padding: 0 8px 8px;
  }

  body.is-admin-surface .operations-workspace--players .operations-player-lifecycle-form {
    gap: 7px;
    padding: 8px;
  }

  body.is-admin-surface .admin-coupon-panel {
    gap: 10px;
  }

  body.is-admin-surface .coupon-panel-heading {
    gap: 10px;
  }

  body.is-admin-surface .coupon-panel-heading h2 {
    font-size: 17px;
    line-height: 1.2;
  }

  body.is-admin-surface .coupon-panel-heading .helper-text {
    display: none;
  }

  body.is-admin-surface .operations-coupon-create-summary {
    min-height: 58px;
    padding: 12px;
  }

  body.is-admin-surface .operations-coupon-create-summary strong {
    margin-bottom: 0;
    font-size: 14px;
  }

  body.is-admin-surface .operations-coupon-create-summary .helper-text {
    display: none;
  }

  body.is-admin-surface .operations-coupon-create-summary .status-chip {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 10px;
    line-height: 1.1;
  }

  body.is-admin-surface .operations-coupon-create-body {
    padding: 0 12px 12px;
  }

  body.is-admin-surface .coupon-form-grid {
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }

  body.is-admin-surface .coupon-table-shell .data-table td {
    display: grid;
    gap: 4px;
  }

  body.is-admin-surface .coupon-table-shell .data-table td::before {
    content: attr(data-label);
    color: rgba(217, 226, 239, 0.62);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
  }

  body.is-admin-surface .coupon-table-shell .coupon-inline-edit {
    gap: 8px;
  }

  body.is-admin-surface .settings-runtime-form,
  body.is-admin-surface .settings-runtime-form--compact {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  body.is-admin-surface .admin-two-factor-workspace {
    gap: 10px;
  }

  body.is-admin-surface .admin-two-factor-workspace .settings-runtime-card {
    gap: 10px;
    padding: 12px;
  }

  body.is-admin-surface .admin-two-factor-summary-card {
    gap: 8px;
  }

  body.is-admin-surface .admin-two-factor-summary-card::before {
    margin: -12px -12px 0;
  }

  body.is-admin-surface .admin-two-factor-workspace .settings-runtime-card__head {
    gap: 8px;
  }

  body.is-admin-surface .admin-two-factor-workspace .section-lead,
  body.is-admin-surface .admin-two-factor-workspace .helper-text {
    font-size: 12px;
    line-height: 1.35;
  }

  body.is-admin-surface .admin-two-factor-summary-card .section-lead,
  body.is-admin-surface .admin-two-factor-detail .settings-runtime-detail-summary .helper-text {
    display: none;
  }

  body.is-admin-surface .admin-two-factor-detail .settings-runtime-detail-summary {
    min-height: 58px;
    padding: 10px;
  }

  body.is-admin-surface .admin-two-factor-secret-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.is-admin-surface .admin-two-factor-secret-grid textarea {
    max-height: 62px;
    overflow: auto;
  }

  body.is-admin-surface .admin-two-factor-secret-grid input,
  body.is-admin-surface .admin-two-factor-secret-grid textarea,
  body.is-admin-surface .admin-two-factor-workspace .admin-two-factor-form input {
    min-height: 38px;
    padding-block: 8px;
  }

  body.is-admin-surface .admin-two-factor-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .admin-two-factor-workspace .settings-runtime-status-list,
  body.is-admin-surface .admin-two-factor-workspace .admin-two-factor-status-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-admin-surface .admin-two-factor-workspace .settings-runtime-status-list div {
    padding: 7px 6px;
  }

  body.is-admin-surface .admin-two-factor-workspace .settings-runtime-status-list span {
    font-size: 8px;
    line-height: 1.1;
  }

  body.is-admin-surface .admin-two-factor-workspace .settings-runtime-status-list strong {
    font-size: 10px;
    line-height: 1.15;
  }

  body.is-admin-surface .admin-two-factor-card--actions .admin-dashboard-action-card,
  body.is-admin-surface .admin-two-factor-workspace .admin-two-factor-action-card {
    min-height: 88px;
    gap: 6px;
    padding: 9px;
  }

  body.is-admin-surface .admin-two-factor-workspace .admin-two-factor-action-card .admin-dashboard-action-card__status {
    padding: 4px 7px;
    font-size: 9px;
    line-height: 1.1;
  }

  body.is-admin-surface .admin-two-factor-workspace .admin-two-factor-action-card strong {
    font-size: 11px;
    line-height: 1.18;
  }

  body.is-admin-surface .admin-two-factor-workspace .admin-two-factor-action-card small {
    display: none;
  }

  body.is-admin-surface .admin-two-factor-workspace .admin-two-factor-action-card em {
    font-size: 10px;
    line-height: 1.15;
  }

  body.is-admin-surface .admin-two-factor-message {
    margin: 0;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] {
    gap: 8px;
    margin-top: 0;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .settings-runtime-card {
    gap: 7px;
    padding: 10px;
    border-radius: 14px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-summary-card::before {
    display: none;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-summary-card .settings-runtime-card__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-summary-card .section-title,
  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .settings-runtime-detail-summary .section-title {
    font-size: 15px;
    line-height: 1.15;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-header__eyebrow {
    margin-bottom: 2px;
    font-size: 9px;
    line-height: 1.1;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .status-chip {
    min-height: 24px;
    padding: 4px 7px;
    font-size: 9px;
    line-height: 1.1;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-status-grid {
    gap: 4px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .settings-runtime-status-list div {
    min-height: 38px;
    gap: 2px;
    padding: 5px;
    border-radius: 10px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .settings-runtime-status-list span {
    font-size: 7px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .settings-runtime-status-list strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 9px;
    line-height: 1.08;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .settings-runtime-back {
    min-height: 28px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 1.1;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .settings-runtime-detail-summary {
    min-height: 46px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 5px;
    padding: 8px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .settings-runtime-detail-summary::after {
    min-width: 32px;
    padding: 4px 6px;
    font-size: 9px;
    line-height: 1.1;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .settings-runtime-detail__body {
    gap: 7px;
    padding: 0 8px 8px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-secret-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-secret-grid .field,
  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-form .field {
    gap: 3px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-secret-grid label,
  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-form label {
    font-size: 10px;
    line-height: 1.1;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-secret-grid textarea {
    min-height: 32px;
    max-height: 42px;
    line-height: 1.2;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-secret-grid input,
  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-secret-grid textarea,
  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-form input {
    min-height: 32px;
    padding: 6px 8px;
    border-radius: 10px;
    font-size: 11px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-form {
    gap: 7px;
    padding: 8px;
    border-radius: 12px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] [data-two-factor-section="enable"] .admin-two-factor-form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-form .button,
  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-form button {
    min-height: 32px;
    padding: 0 9px;
    border-radius: 10px;
    font-size: 10px;
    line-height: 1.1;
    white-space: nowrap;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-action-grid {
    gap: 5px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-action-card {
    min-height: 64px;
    gap: 4px;
    padding: 7px;
    border-radius: 11px;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-action-card strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.is-admin-surface .admin-two-factor-workspace[data-admin-two-factor-compact] .admin-two-factor-action-card em {
    font-size: 9px;
  }

  body.is-app-surface .app-paywall-prereqs {
    grid-template-columns: 1fr;
  }

  body.is-admin-surface .settings-branding-form,
  body.is-admin-surface .settings-branding-social-form,
  body.is-admin-surface .settings-branding-assets .brand-asset-form,
  body.is-admin-surface .settings-branding-assets .brand-asset-form:not(.brand-asset-upload) {
    grid-template-columns: 1fr;
  }

  body.is-admin-surface .admin-console--settings-branding .admin-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 56px;
    gap: 8px;
    margin-bottom: 10px;
  }

  body.is-admin-surface .admin-console--settings-branding .admin-header .section-title {
    font-size: 22px;
    line-height: 1.12;
  }

  body.is-admin-surface .admin-console--settings-branding .admin-header .status-chip {
    justify-self: end;
  }

  body.is-admin-surface .settings-branding-workspace {
    gap: 10px;
  }

  body.is-admin-surface .settings-branding-workspace .settings-runtime-card--summary {
    gap: 8px;
    padding: 10px;
  }

  body.is-admin-surface .settings-branding-workspace .settings-runtime-card--summary::before {
    margin: -10px -10px 0;
  }

  body.is-admin-surface .settings-paytr-workspace[data-paytr-compact] {
    gap: 10px;
  }

  body.is-admin-surface .settings-paytr-workspace[data-paytr-compact] .settings-runtime-card--summary {
    gap: 8px;
    padding: 10px;
  }

  body.is-admin-surface .settings-paytr-workspace[data-paytr-compact] .settings-runtime-card--summary::before {
    margin: -10px -10px 0;
  }

  body.is-admin-surface .settings-paytr-workspace[data-paytr-compact] .settings-runtime-card--summary > div > .helper-text {
    display: none;
  }

  body.is-admin-surface .settings-paytr-workspace[data-paytr-compact] .settings-runtime-detail-summary {
    min-height: 50px;
    gap: 8px;
    padding: 8px 10px;
  }

  body.is-admin-surface .settings-paytr-workspace[data-paytr-compact] .settings-runtime-detail-summary .section-title {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.18;
  }

  body.is-admin-surface .settings-paytr-workspace[data-paytr-compact] .settings-runtime-detail-summary .helper-text {
    display: none;
  }

  body.is-admin-surface .settings-paytr-workspace[data-paytr-compact] .settings-runtime-detail-summary::after {
    min-width: 44px;
    min-height: 24px;
    padding: 5px 8px;
  }

  body.is-admin-surface .settings-paytr-workspace[data-paytr-compact] .settings-runtime-detail__body {
    gap: 10px;
    padding: 0 10px 10px;
  }

  body.is-admin-surface .settings-paytr-workspace[data-paytr-compact] .settings-runtime-form {
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
  }

  body.is-admin-surface .settings-runtime-actions .button,
  body.is-admin-surface .settings-runtime-check .button,
  body.is-admin-surface .settings-runtime-back {
    width: 100%;
  }

  body.is-admin-surface .settings-paytr-workspace .settings-runtime-status-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .settings-paytr-workspace .settings-runtime-status-list div {
    padding: 9px 10px;
  }

  body.is-admin-surface .settings-paytr-workspace .settings-runtime-status-list strong {
    font-size: 12px;
    line-height: 1.25;
  }

  body.is-admin-surface .settings-email-workspace .settings-runtime-status-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .settings-email-workspace .settings-runtime-status-list div {
    padding: 9px 10px;
  }

  body.is-admin-surface .settings-email-workspace .settings-runtime-status-list strong {
    font-size: 12px;
    line-height: 1.25;
  }

  body.is-admin-surface .settings-runtime-detail-summary {
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 14px;
    gap: 10px;
  }

  body.is-admin-surface .settings-runtime-detail-summary .status-chip {
    justify-self: end;
  }

  body.is-admin-surface .settings-runtime-detail-summary::after {
    min-width: 44px;
    padding: 6px 9px;
  }

  body.is-admin-surface .settings-runtime-detail__body {
    gap: 10px;
    padding: 0 14px 14px;
  }

  body.is-admin-surface .settings-branding-assets .brand-asset-grid {
    grid-template-columns: 1fr;
    max-height: min(320px, 42vh);
    padding-right: 0;
  }

  body.is-admin-surface .settings-branding-workspace .settings-runtime-status-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-admin-surface .settings-branding-workspace .settings-runtime-status-list div {
    padding: 8px 9px;
  }

  body.is-admin-surface .settings-branding-workspace .settings-runtime-status-list strong {
    font-size: 12px;
    line-height: 1.25;
  }

  body.is-admin-surface .settings-branding-detail-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    min-height: 50px;
    padding: 8px 10px;
    gap: 8px;
  }

  body.is-admin-surface .settings-branding-detail-summary > div {
    min-width: 0;
  }

  body.is-admin-surface .settings-branding-detail-summary .admin-header__eyebrow {
    margin-bottom: 2px;
    font-size: 10px;
    line-height: 1.1;
  }

  body.is-admin-surface .settings-branding-detail-summary .section-title {
    font-size: 16px;
    line-height: 1.15;
  }

  body.is-admin-surface .settings-branding-detail-summary .status-chip {
    justify-self: end;
    min-height: 24px;
    padding: 3px 8px;
    font-size: 10px;
  }

  body.is-admin-surface .settings-branding-detail-summary::after {
    display: inline-grid;
    place-items: center;
    min-width: 40px;
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
  }

  body.is-admin-surface .settings-branding-detail__body {
    gap: 8px;
    padding: 0 10px 10px;
  }

  body.is-admin-surface .settings-branding-assets .settings-branding-detail__body > .helper-text {
    display: none;
  }

  body.is-admin-surface .settings-branding-assets .brand-asset-card {
    gap: 7px;
    padding: 10px;
  }

  body.is-admin-surface .settings-branding-assets .brand-asset-card__heading {
    margin-bottom: 0;
  }

  body.is-admin-surface .settings-branding-assets .brand-asset-card .helper-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-admin-surface .settings-branding-assets .brand-asset-preview {
    height: 92px;
    border-radius: 14px;
  }

  body.is-admin-surface .settings-branding-assets .brand-asset-preview img {
    max-height: 74px;
  }

  body.is-admin-surface .brand-asset-card__editor > summary {
    min-height: 34px;
    padding: 0 10px;
  }

  .marketing-seo__editor-grid,
  .marketing-pricing__editor-grid {
    grid-template-columns: 1fr;
  }

  .marketing-faq__editor-row {
    grid-template-columns: 1fr;
  }

  .marketing-faq__order {
    width: 36px;
    margin-top: 0;
  }

  body.is-admin-surface .marketing-table-shell {
    width: 100%;
    max-width: 100%;
    max-height: min(420px, 52vh);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
  }

  body.is-admin-surface .marketing-table-shell--media {
    height: clamp(320px, 44vh, 420px);
    max-height: min(420px, 52vh);
  }

  body.is-admin-surface .marketing-responsive-table,
  body.is-admin-surface .marketing-responsive-table thead,
  body.is-admin-surface .marketing-responsive-table tbody,
  body.is-admin-surface .marketing-responsive-table tr,
  body.is-admin-surface .marketing-responsive-table th,
  body.is-admin-surface .marketing-responsive-table td {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  body.is-admin-surface .marketing-responsive-table {
    min-width: 0;
    table-layout: fixed;
  }

  body.is-admin-surface .marketing-responsive-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  body.is-admin-surface .marketing-responsive-table tbody {
    display: grid;
    gap: 12px;
  }

  body.is-admin-surface .marketing-responsive-table tr {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    background: rgba(7, 13, 22, 0.72);
  }

  body.is-admin-surface .marketing-responsive-table td {
    padding: 0 0 12px;
    border: 0;
    color: var(--text);
    min-width: 0;
    overflow-wrap: anywhere;
  }

  body.is-admin-surface .marketing-responsive-table td + td {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.is-admin-surface .marketing-responsive-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  body.is-admin-surface .marketing-responsive-table input,
  body.is-admin-surface .marketing-responsive-table textarea,
  body.is-admin-surface .marketing-responsive-table select,
  body.is-admin-surface .marketing-responsive-table .media-upload-field {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  body.is-admin-surface .marketing-responsive-table input[type="checkbox"] {
    width: auto;
  }

  body.is-admin-surface .marketing-responsive-table input[type="file"] {
    font-size: 11px;
  }

  body.is-admin-surface .media-track-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.is-admin-surface .media-track-editor,
  body.is-admin-surface .media-track-editor__body {
    min-width: 0;
    width: 100%;
  }

  body.is-admin-surface .media-track-editor > .marketing-action-detail__summary {
    width: 100%;
  }

  body.is-admin-surface .media-track-editor__body .marketing-pricing__editor-grid {
    grid-template-columns: 1fr;
  }

  body.is-admin-surface .media-sort-cell {
    justify-content: flex-start;
  }

  .support-form-columns,
  .support-thread__heading,
  .security-heading,
  .security-session-header,
  .device-session-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .security-actions {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 48px;
  }

  .page-shell,
  .site-header__inner,
  .site-footer__inner {
    width: min(100vw - 24px, 1240px);
  }

  .site-header__inner {
    padding: 12px 0;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .section-heading-row {
    display: grid;
  }

  .profile-preference-grid,
  .profile-avatar-tool {
    grid-template-columns: 1fr;
  }

  body.is-app-surface .app-profile-workspace .profile-editor-detail > summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    min-height: 44px;
    gap: 6px;
    padding: 9px 10px;
  }

  body.is-app-surface .app-profile-workspace .profile-editor-detail > summary > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
  }

  body.is-app-surface .app-profile-workspace .settings-runtime-card {
    gap: 10px;
  }

  body.is-app-surface .app-profile-workspace .settings-runtime-card--summary {
    gap: 8px;
    padding: 12px;
  }

  body.is-app-surface .app-profile-workspace .settings-runtime-card--summary .settings-runtime-card__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  body.is-app-surface .app-profile-workspace .settings-runtime-card--summary .section-title {
    font-size: 17px;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-app-surface .app-profile-workspace .app-profile-status-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-app-surface .app-profile-workspace .app-profile-status-list div {
    min-height: 48px;
    padding: 7px 6px;
    border-radius: 10px;
  }

  body.is-app-surface .app-profile-workspace .app-profile-status-list span {
    font-size: 9px;
    line-height: 1.1;
  }

  body.is-app-surface .app-profile-workspace .app-profile-status-list strong {
    font-size: 10px;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-app-surface .app-profile-workspace .app-profile-actions-card {
    gap: 8px;
    padding: 12px;
  }

  body.is-app-surface .app-profile-workspace .app-profile-actions-card .settings-runtime-card__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  body.is-app-surface .app-profile-workspace .app-profile-actions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-app-surface .app-profile-workspace .app-profile-actions-grid .app-settings-card {
    min-height: 80px;
    gap: 5px;
    padding: 8px 7px;
    border-radius: 12px;
  }

  body.is-app-surface .app-profile-workspace .app-profile-actions-grid .app-settings-card .status-chip {
    min-height: 22px;
    padding: 3px 6px;
    font-size: 9px;
  }

  body.is-app-surface .app-profile-workspace .app-profile-actions-grid .app-settings-card strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 11px;
    line-height: 1.15;
  }

  body.is-app-surface .app-profile-workspace .app-profile-actions-grid .app-settings-card small {
    display: none;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .app-settings-workspace__aside,
  body.is-app-surface .app-profile-workspace[data-profile-compact] .app-settings-workspace__primary {
    gap: 8px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .settings-runtime-card--summary {
    gap: 8px;
    padding: 12px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .settings-runtime-card--summary .settings-runtime-card__head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .settings-runtime-card--summary .section-title {
    font-size: 17px;
    line-height: 1.15;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .settings-runtime-card--summary .status-chip {
    justify-self: end;
    max-width: 128px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-status-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-status-list div {
    min-height: 44px;
    padding: 6px 4px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-actions-card[data-profile-actions-compact] {
    gap: 8px;
    padding: 12px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-actions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-actions-grid .app-settings-card {
    min-height: 72px;
    gap: 4px;
    padding: 7px 6px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .app-profile-actions-grid .app-settings-card strong {
    font-size: 10.5px;
    line-height: 1.12;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-avatar-preview {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-section {
    padding: 7px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary {
    min-height: 42px;
    gap: 6px;
    padding: 7px 8px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary > div {
    gap: 6px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary .hero-kicker {
    flex-basis: 78px;
    max-width: 78px;
    padding: 3px 6px;
    font-size: 8px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary .section-title {
    min-width: 64px;
    font-size: 13px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary .status-chip {
    flex-basis: 82px;
    max-width: 82px;
    min-height: 22px;
    padding: 3px 6px;
    font-size: 9px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail > summary::after {
    min-width: 34px;
    padding: 4px 6px;
  }

  body.is-app-surface .app-profile-workspace[data-profile-compact] .profile-editor-detail__body {
    gap: 9px;
    padding: 0 8px 8px;
  }

  body.is-app-surface .app-two-factor-workspace {
    gap: 12px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] {
    gap: 8px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-settings-workspace__aside,
  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-settings-workspace__primary {
    gap: 8px;
  }

  body.is-app-surface .app-two-factor-workspace .settings-runtime-card {
    gap: 12px;
    padding: 14px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .settings-runtime-card {
    gap: 8px;
    padding: 11px;
    border-radius: 16px;
  }

  body.is-app-surface .app-two-factor-workspace .app-two-factor-summary-card {
    gap: 10px;
  }

  body.is-app-surface .app-two-factor-workspace .app-two-factor-summary-card::before {
    margin: -14px -14px 0;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-summary-card::before {
    margin: -11px -11px 0;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .section-title {
    font-size: 16px;
    line-height: 1.14;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .hero-kicker {
    max-width: 132px;
    padding: 3px 7px;
    font-size: 9px;
    line-height: 1.05;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .status-chip {
    min-height: 22px;
    padding: 3px 7px;
    font-size: 9px;
    line-height: 1.05;
  }

  body.is-app-surface .app-two-factor-workspace .app-two-factor-summary-card .section-lead,
  body.is-app-surface .app-two-factor-workspace .app-two-factor-control-card .section-lead {
    font-size: 12px;
    line-height: 1.35;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-summary-card .section-lead,
  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-control-card .helper-text,
  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-start-form .helper-text {
    display: none;
  }

  body.is-app-surface .app-two-factor-workspace .app-two-factor-status-grid,
  body.is-app-surface .app-two-factor-workspace .app-two-factor-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-status-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  body.is-app-surface .app-two-factor-workspace .app-two-factor-status-grid div {
    padding: 9px 10px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-status-grid div {
    min-height: 44px;
    padding: 5px 4px;
  }

  body.is-app-surface .app-two-factor-workspace .app-two-factor-status-grid span {
    font-size: 10px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-status-grid span {
    font-size: 8px;
    line-height: 1.05;
  }

  body.is-app-surface .app-two-factor-workspace .app-two-factor-status-grid strong {
    font-size: 12px;
    line-height: 1.25;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-status-grid strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 9.5px;
    line-height: 1.12;
  }

  body.is-app-surface .app-two-factor-workspace .settings-runtime-card__head {
    gap: 8px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .security-session-header,
  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .settings-runtime-card__head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 7px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .settings-runtime-back {
    min-height: 28px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 1.1;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-actions-card .settings-runtime-card__head .settings-runtime-back {
    max-width: 108px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-action-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-app-surface .app-two-factor-workspace .app-two-factor-action-card {
    min-height: 106px;
    gap: 7px;
    padding: 12px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-action-card {
    min-height: 70px;
    gap: 4px;
    padding: 7px 5px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-action-card .status-chip {
    max-width: 100%;
    justify-content: center;
  }

  body.is-app-surface .app-two-factor-workspace .app-two-factor-action-card strong {
    font-size: 13px;
    line-height: 1.25;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-action-card strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 10.5px;
    line-height: 1.12;
  }

  body.is-app-surface .app-two-factor-workspace .app-two-factor-action-card small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 11px;
    line-height: 1.3;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .app-two-factor-action-card small {
    display: none;
  }

  body.is-app-surface .app-two-factor-workspace .settings-runtime-form {
    padding: 12px;
    border-radius: 14px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .settings-runtime-form {
    gap: 8px;
    padding: 9px;
    border-radius: 12px;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .settings-runtime-form .button,
  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .settings-runtime-form .button-ghost {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  body.is-app-surface .app-two-factor-workspace .security-secret,
  body.is-app-surface .app-two-factor-workspace .security-recovery {
    max-height: min(360px, 44vh);
    overflow: auto;
  }

  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .security-secret,
  body.is-app-surface .app-two-factor-workspace[data-app-two-factor-compact] .security-recovery {
    max-height: min(280px, 36vh);
  }

  body.is-app-surface .app-profile-workspace .profile-editor-detail > summary .hero-kicker {
    max-width: 88px;
    padding: 3px 7px;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-app-surface .app-profile-workspace .profile-editor-detail > summary .section-title {
    min-width: 0;
    font-size: 14px;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-app-surface .app-profile-workspace .profile-editor-detail > summary .status-chip {
    min-height: 24px;
    max-width: 92px;
    padding: 3px 7px;
    font-size: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-app-surface .app-profile-workspace .profile-editor-detail > summary::after {
    min-width: 38px;
    padding: 4px 7px;
    font-size: 10px;
    line-height: 1.1;
  }

  body.is-app-surface .app-profile-workspace .profile-editor-detail__body {
    gap: 10px;
    padding: 0 12px 12px;
  }

  body.is-app-surface .app-profile-workspace .profile-form.settings-runtime-form {
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }

  body.is-app-surface .app-profile-workspace .profile-form .field {
    gap: 5px;
  }

  body.is-app-surface .app-profile-workspace .profile-form .field label {
    font-size: 11px;
    line-height: 1.2;
  }

  body.is-app-surface .app-profile-workspace .profile-form .field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
  body.is-app-surface .app-profile-workspace .profile-form .field select,
  body.is-app-surface .app-profile-workspace .profile-form .field textarea {
    min-height: 42px;
    padding: 9px 12px;
    border-radius: 14px;
  }

  body.is-app-surface .app-profile-workspace .profile-avatar-preview {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin-bottom: 2px;
  }

  body.is-app-surface .app-profile-workspace .profile-avatar-preview span {
    font-size: 26px;
  }

  body.is-app-surface .app-profile-workspace .profile-identity {
    gap: 2px;
  }

  body.is-app-surface .app-profile-workspace .profile-identity strong,
  body.is-app-surface .app-profile-workspace .profile-identity span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-app-surface .app-profile-workspace .settings-runtime-back {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .profile-avatar-tool canvas {
    width: min(100%, 176px);
    height: auto;
    aspect-ratio: 1;
    justify-self: center;
    border-radius: 20px;
  }

  body.is-app-surface .app-profile-workspace .profile-avatar-tool {
    gap: 8px;
  }

  body.is-app-surface .app-profile-workspace .profile-avatar-tool__copy {
    gap: 6px;
  }

  body.is-app-surface .app-profile-workspace .profile-avatar-tool__copy h3 {
    display: none;
  }

  body.is-app-surface .app-profile-workspace .profile-avatar-tool__copy p {
    font-size: 12px;
    line-height: 1.35;
  }

  .profile-form .button,
  .profile-file-trigger,
  .settings-preference-form .button,
  .settings-state-panel .button-ghost,
  .settings-privacy-grid .button,
  .settings-privacy-grid .button-ghost {
    width: 100%;
  }

  .draft-mode-dialog {
    padding: 12px;
    align-items: end;
  }

  .draft-mode-dialog__panel {
    max-height: calc(100vh - 24px);
    padding: 18px;
    border-radius: 18px 18px 0 0;
  }

  .draft-mode-grid {
    grid-template-columns: 1fr;
  }

  .draft-mode-card {
    min-height: 136px;
  }

  .hero-catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  body.is-app-surface .app-heroes-workspace .hero-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: min(620px, 62vh);
    gap: 10px;
  }

  .hero-catalog-card {
    min-height: 184px;
  }

  body.is-app-surface .app-heroes-workspace .hero-catalog-card {
    min-height: 154px;
  }

  .hero-catalog-card__media,
  .hero-catalog-card__media img {
    min-height: 110px;
    height: 110px;
  }

  body.is-app-surface .app-heroes-workspace .hero-catalog-card__media,
  body.is-app-surface .app-heroes-workspace .hero-catalog-card__media img {
    min-height: 86px;
    height: 86px;
  }

  .access-step {
    grid-template-columns: 1fr;
  }

  .auth-canvas {
    display: block;
    padding: 24px;
  }

  .auth-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .auth-card h1 {
    font-size: 26px;
  }

  .commerce-canvas {
    padding: 24px 12px 32px;
  }

  .commerce-topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .commerce-provider {
    flex-wrap: wrap;
  }

  .commerce-panel {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .commerce-panel--trial {
    padding-top: 30px;
  }

  .commerce-panel h1 {
    font-size: 29px;
  }

  .commerce-lock {
    width: 74px;
    height: 74px;
  }

  .commerce-lock span {
    width: 50px;
    height: 50px;
  }

  .commerce-prereqs {
    grid-template-columns: 1fr;
  }

  .commerce-actions .commerce-button {
    width: 100%;
  }

  .commerce-plan {
    grid-template-columns: 22px minmax(0, 1fr);
    padding: 16px;
  }

  .commerce-plan-price {
    grid-column: 2;
    font-size: 19px;
    text-align: left;
  }

  .commerce-coupon div {
    grid-template-columns: 1fr;
  }

  .commerce-coupon .commerce-button {
    width: 100%;
  }

  .commerce-field-grid {
    grid-template-columns: 1fr;
  }

  .commerce-payment-action .commerce-button {
    width: 100%;
  }

  .coupon-form-grid,
  .coupon-inline-edit {
    grid-template-columns: 1fr;
  }

  .coupon-field,
  .coupon-field--code,
  .coupon-field--type,
  .coupon-field--number,
  .coupon-field--date,
  .coupon-toggle,
  .coupon-form-actions {
    grid-column: auto;
  }

  .coupon-inline-edit {
    min-width: 0;
  }

  .commerce-frame iframe {
    min-height: 580px;
  }

  body.is-admin-surface .admin-console,
  body.is-app-surface .app-console {
    display: block;
    min-height: 100vh;
    padding-bottom: 0;
  }

  body.is-admin-surface .admin-sidebar,
  body.is-app-surface .app-sidebar {
    display: none;
  }

  body.is-admin-surface .admin-topbar,
  body.is-app-surface .app-topbar {
    grid-column: auto;
  }

  body.is-internal-surface .account-toolbar {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 8px 12px;
  }

  body.is-internal-surface .account-toolbar__identity {
    gap: 8px;
  }

  body.is-internal-surface .account-toolbar__avatar {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  body.is-internal-surface .account-toolbar__copy strong {
    font-size: 13px;
  }

  body.is-internal-surface .account-toolbar__copy small {
    font-size: 11px;
  }

  body.is-internal-surface .arama {
    width: 100%;
    max-width: none;
    min-width: 0;
    flex: 0 0 auto;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
  }

  body.is-internal-surface .account-toolbar__search {
    flex: 0 0 auto;
  }

  body.is-internal-surface .account-toolbar__search-results {
    max-height: min(280px, 52vh);
    overflow: auto;
  }

  body.is-internal-surface .account-toolbar__actions {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    justify-content: stretch;
    overflow: hidden;
    flex-wrap: nowrap;
    gap: 4px;
  }

  body.is-internal-surface .account-toolbar__actions a,
  body.is-internal-surface .account-toolbar__actions button {
    min-width: 0;
    width: 100%;
    min-height: 32px;
    padding: 0 4px;
    border-radius: 11px;
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.is-internal-surface .account-toolbar__actions form {
    min-width: 0;
    width: 100%;
  }

  body.is-internal-surface .account-toolbar__control {
    gap: 0;
  }

  body.is-internal-surface .account-toolbar__control-svg {
    width: 16px;
    height: 16px;
  }

  body.is-internal-surface .account-toolbar__control-icon {
    display: none;
  }

  body.is-admin-surface .admin-main,
  body.is-app-surface .app-main {
    padding: 18px 12px 32px;
  }

  body.is-app-surface .app-main {
    padding-bottom: 132px;
  }

  body.is-app-surface .app-main .page-shell {
    width: min(100%, 1240px);
    padding-top: 24px;
  }

  body.is-admin-surface .admin-header {
    flex-direction: column;
    margin: -18px -12px 18px;
    padding: 12px;
  }

  body.is-admin-surface .admin-mobile-nav,
  body.is-app-surface .app-mobile-nav {
    position: sticky;
    top: 0;
    z-index: 45;
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 8px;
    overflow-x: auto;
    background: rgba(5, 10, 18, 0.96);
    border-top: 0;
    border-bottom: 1px solid rgba(242, 215, 161, 0.16);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
  }

  body.is-admin-surface .admin-mobile-nav a,
  body.is-app-surface .app-mobile-nav a {
    flex: 1 1 0;
    min-width: 0;
    min-height: 38px;
    padding: 9px 12px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: rgba(226, 232, 240, 0.72);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  body.is-admin-surface .admin-mobile-nav a.is-active,
  body.is-app-surface .app-mobile-nav a.is-active {
    color: #f8fafc;
    border-color: rgba(242, 215, 161, 0.2);
    background: linear-gradient(135deg, rgba(202, 166, 93, 0.24), rgba(15, 118, 110, 0.16));
  }
}

@media (max-width: 430px) {
  body.is-admin-surface .marketing-overview-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-summary .button-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
}

body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-summary .button-row .button,
body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-summary .button-row .button-ghost {
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 7px 6px;
  overflow: hidden;
  font-size: 10px;
  line-height: 1.05;
  text-align: center;
  text-overflow: ellipsis;
}

@media (max-width: 760px) {
  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-grid {
    max-height: min(430px, 50vh);
    gap: 8px;
    padding-right: 2px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card {
    min-height: 128px;
    border-radius: 13px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card__media,
  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card__media img {
    min-height: 72px;
    height: 72px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card__body {
    gap: 3px;
    padding: 9px;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card__body strong {
    overflow: hidden;
    font-size: 12px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-card__body span {
    font-size: 10px;
    line-height: 1.1;
  }

  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-summary .button-row .button,
  body.is-app-surface .app-heroes-workspace[data-app-heroes-compact] .hero-catalog-summary .button-row .button-ghost {
    min-height: 36px;
    padding: 7px 5px;
    font-size: 9.5px;
  }
}

body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-tabs {
  gap: 6px;
}

body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-tab {
  min-height: 36px;
  padding: 0 8px;
  line-height: 1.05;
}

@media (min-width: 961px) {
  body.is-app-surface .app-selection-workspace[data-app-selection-tight] {
    grid-template-columns: minmax(230px, 0.5fr) minmax(0, 1.9fr);
    gap: 12px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-settings-workspace__aside,
  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-settings-workspace__primary {
    gap: 12px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .settings-runtime-card {
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .settings-runtime-card__head {
    gap: 8px;
    padding-bottom: 8px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-summary-card .section-title,
  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-control-card .section-title {
    font-size: 20px;
    line-height: 1.12;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-summary-card .helper-text,
  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-control-card .helper-text {
    font-size: 12px;
    line-height: 1.35;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-summary-card::before {
    height: 3px;
    margin: -14px -14px 0;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-counter {
    min-height: 34px;
    gap: 8px;
    padding: 6px 10px;
    font-size: 12px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-status-list {
    gap: 8px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-status-list div {
    min-height: 48px;
    padding: 8px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-status-list span {
    font-size: 10px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-status-list strong {
    font-size: 12px;
    line-height: 1.15;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .settings-runtime-back {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .pool-status {
    margin: 0;
    font-size: 11px;
    line-height: 1.25;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-control-card .settings-runtime-card__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .ctrl {
    gap: 8px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .search input {
    height: 36px;
    padding: 0 32px;
    font-size: 12px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .pills-row {
    gap: 6px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .pill {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 10.5px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-role-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-role-pills::-webkit-scrollbar {
    display: none;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-role-pills .pill {
    flex: 0 0 auto;
    min-width: 76px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .app-selection-grid-card,
  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .grid-wrap {
    min-height: 0;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .grid {
    grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
    min-height: 420px;
    max-height: min(560px, 52vh);
    gap: 8px;
    padding-right: 6px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc {
    aspect-ratio: 1 / 1.06;
    border-radius: 12px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc-meta {
    padding: 31px 8px 8px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc-name {
    font-size: 11.5px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc-stat {
    font-size: 9px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc-attr {
    top: 7px;
    left: 7px;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    font-size: 10px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .hc-tier {
    top: 7px;
    right: 7px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 7px;
    font-size: 9px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .dock-in {
    gap: 8px;
    align-items: center;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .dock-r {
    gap: 6px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .dp-slot,
  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .dp-more {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
  }

  body.is-app-surface .app-selection-workspace[data-app-selection-tight] .btn {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 11px;
  }
}

@media (min-width: 961px) {
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] {
    grid-template-columns: minmax(232px, 0.5fr) minmax(0, 1.9fr);
    gap: 12px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .settings-workspace__aside,
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .settings-workspace__primary {
    gap: 12px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-summary-card,
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-panel-card,
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-section-card {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .settings-runtime-card--summary::before {
    height: 3px;
    margin: -14px -14px 0;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-summary-card .settings-runtime-card__head,
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-panel-card__head {
    gap: 10px;
    padding-bottom: 8px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-summary-card .section-title,
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-panel-card__head .section-title,
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-audit-summary .section-title {
    font-size: 17px;
    line-height: 1.12;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-panel-card__head .helper-text,
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-panel > p.helper-text {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.25;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-summary-card .status-chip,
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-panel-card__head > .status-chip,
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-audit-summary > .status-chip {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 10px;
    line-height: 1;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-summary-card .settings-runtime-status-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 0;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-summary-card .settings-runtime-status-list > div {
    min-height: 42px;
    padding: 7px 6px;
    border-radius: 12px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-summary-card .settings-runtime-status-list span {
    font-size: 9px;
    line-height: 1.05;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-summary-card .settings-runtime-status-list strong {
    font-size: 11px;
    line-height: 1.08;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-summary-card .settings-runtime-back {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-tabs {
    gap: 5px;
    padding: 8px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-tab {
    min-height: 30px;
    padding: 0 7px;
    font-size: 10px;
    line-height: 1.05;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-kpi-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-kpi-grid .metric {
    min-height: 46px;
    padding: 7px 6px;
    border-radius: 12px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-kpi-grid .metric__label {
    font-size: 9px;
    line-height: 1.05;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-kpi-grid .metric__value {
    font-size: 12px;
    line-height: 1.1;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-table-wrap {
    max-height: min(360px, 42vh);
    border-radius: 12px;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-table-wrap .data-table th,
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-table-wrap .data-table td {
    padding: 8px 9px;
    font-size: 12px;
    line-height: 1.24;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-table-wrap .data-table th {
    font-size: 10px;
    line-height: 1.1;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-table-wrap .data-table strong {
    font-size: 12px;
    line-height: 1.15;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-table-wrap .helper-text {
    font-size: 10px;
    line-height: 1.12;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-table-wrap .data-table .button,
  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-table-wrap .data-table .button-ghost {
    min-height: 30px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 1.05;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .admin-source-sync-status {
    min-height: 0;
    margin: 4px 0 0;
    font-size: 11px;
    line-height: 1.2;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-audit-summary {
    min-height: 48px;
    padding: 10px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-audit-summary .helper-text {
    display: none;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-audit-summary::after {
    min-width: 38px;
    padding: 5px 8px;
    font-size: 10px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-tight] .draft-data-audit-body {
    padding: 0 12px 12px;
  }
}

@media (max-width: 760px) {
  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] {
    gap: 9px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .settings-workspace__aside,
  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .settings-workspace__primary {
    gap: 9px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-summary-card,
  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-panel-card,
  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-section-card {
    gap: 8px;
    padding: 10px;
    border-radius: 15px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-tabs {
    display: flex;
    gap: 5px;
    padding: 7px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-tab {
    flex: 0 0 auto;
    min-width: 84px;
    max-width: 112px;
    min-height: 32px;
    padding: 0 7px;
    overflow: hidden;
    font-size: 9px;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-summary-card .settings-runtime-card__head {
    gap: 6px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-summary-card .section-title,
  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-panel-card__head .section-title,
  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-audit-summary .section-title {
    font-size: 15px;
    line-height: 1.1;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-summary-card .status-chip,
  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-panel-card__head > .status-chip,
  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-audit-summary > .status-chip {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 10px;
    line-height: 1;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-summary-card .settings-runtime-status-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-summary-card .settings-runtime-status-list > div {
    min-height: 42px;
    padding: 6px 5px;
    border-radius: 12px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-summary-card .settings-runtime-status-list span {
    font-size: 8.5px;
    line-height: 1.05;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-summary-card .settings-runtime-status-list strong {
    font-size: 10px;
    line-height: 1.05;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-summary-card .settings-runtime-back {
    min-height: 30px;
    padding: 0 8px;
    font-size: 10px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-panel-card__head {
    gap: 7px;
    padding-bottom: 4px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-panel-card__head .helper-text,
  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-panel > p.helper-text {
    display: none;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-kpi-grid .metric {
    min-height: 46px;
    padding: 6px 5px;
    border-radius: 12px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-kpi-grid .metric__label {
    font-size: 8.5px;
    line-height: 1.05;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-kpi-grid .metric__value {
    font-size: 11px;
    line-height: 1.1;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-table-wrap {
    max-height: min(340px, 40vh);
    border-radius: 13px;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-table-wrap .data-table tbody {
    gap: 6px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-table-wrap .data-table tr {
    padding: 8px;
    border-radius: 13px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-table-wrap .data-table td {
    padding-bottom: 6px;
    font-size: 11px;
    line-height: 1.25;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-table-wrap .data-table td + td {
    padding-top: 6px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-table-wrap .data-table .button,
  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-table-wrap .data-table .button-ghost {
    min-height: 30px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 1.05;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .admin-source-sync-status {
    min-height: 0;
    margin: 4px 0 0;
    font-size: 10px;
    line-height: 1.2;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-audit-summary {
    min-height: 48px;
    padding: 9px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-audit-summary::after {
    min-width: 34px;
    padding: 5px 7px;
    font-size: 10px;
  }

  body.is-admin-surface .draft-data-workspace[data-draft-data-compact] .draft-data-audit-body {
    padding: 0 10px 10px;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-command-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-summary-card,
  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-panel-card {
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-summary-card .helper-text {
    display: none;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-summary-card .settings-runtime-card__head {
    gap: 8px;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-summary-card .section-title {
    font-size: 17px;
    line-height: 1.15;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-summary-card .settings-runtime-status-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-top: 0;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-summary-card .settings-runtime-status-list div {
    min-height: 42px;
    padding: 6px 5px;
    border-radius: 12px;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-summary-card .settings-runtime-status-list span {
    font-size: 8.5px;
    line-height: 1.05;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-summary-card .settings-runtime-status-list strong {
    font-size: 10.5px;
    line-height: 1.1;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .settings-runtime-back {
    min-height: 30px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 1.05;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 6px;
    border-radius: 14px;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-tab {
    flex: 1 1 74px;
    min-height: 32px;
    padding: 0 5px;
    border-radius: 10px;
    font-size: 9.5px;
    line-height: 1.05;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-warning-grid {
    gap: 6px;
  }

  body.is-admin-surface .operations-workspace[data-operations-compact] .operations-warning-grid .helper-text {
    max-height: 48px;
    padding: 7px 9px;
    border-radius: 12px;
    overflow: auto;
    font-size: 11px;
    line-height: 1.25;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table-wrap {
    max-height: min(360px, 43vh);
    border-radius: 13px;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table tbody {
    gap: 6px;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 9px;
    border-radius: 13px;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table td {
    display: grid;
    gap: 3px;
    padding: 0;
    border: 0;
    font-size: 11px;
    line-height: 1.22;
    color: var(--text);
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table td::before {
    content: attr(data-label);
    color: rgba(217, 226, 239, 0.62);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table td + td {
    padding-top: 0;
    border-top: 0;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .operations-commercial-table td:last-child {
    grid-column: 1 / -1;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form {
    gap: 6px;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .field {
    gap: 3px;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form label,
  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .helper-text {
    font-size: 10px;
    line-height: 1.2;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form input,
  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form select {
    min-height: 32px;
    padding: 0 9px;
    font-size: 11px;
  }

  body.is-admin-surface .operations-workspace--commercial[data-operations-compact] .payment-correction-form .button-danger {
    min-height: 32px;
    padding: 0 9px;
    font-size: 10px;
    line-height: 1.05;
  }
}

/* --- PREMIUM EMLAK CRM INTEGRATION --- */

:root {
  --renk-altin: #caa65d;
  --renk-altin-parlak: #f2d7a1;
  --renk-altin-soluk: rgba(202, 166, 93, 0.16);
  --renk-teal: #0f766e;
  --renk-zumrut: #047857;
  --golge-altin: 0 18px 54px rgba(202, 166, 93, 0.13);
}

body.is-internal-surface .profil-karti {
  display: block;
  margin: auto 10px 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease, padding 0.3s ease, margin 0.3s ease;
}

body.is-internal-surface .profil-karti:hover {
  border-color: rgba(242, 215, 161, 0.28);
  background:
    linear-gradient(135deg, rgba(202, 166, 93, 0.14), rgba(15, 118, 110, 0.08)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

body.is-internal-surface .profil-karti:focus-visible {
  outline: 2px solid rgba(242, 215, 161, 0.78);
  outline-offset: 4px;
}

body.is-internal-surface.is-sidebar-compact .profil-karti {
  padding: 8px;
  margin: auto 4px 8px;
}

body.is-internal-surface .profil-ust {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
}

body.is-internal-surface.is-sidebar-compact .profil-ust {
  justify-content: center;
  gap: 0;
}

body.is-internal-surface .profil-ust .avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--renk-altin-parlak);
  font-weight: 900;
  background: rgba(202, 166, 93, 0.16);
  border: 1px solid rgba(202, 166, 93, 0.24);
  font-size: 14px;
}

body.is-internal-surface .profil-detay {
  min-width: 0;
  transition: opacity 0.2s ease;
}

body.is-internal-surface.is-sidebar-compact .profil-detay,
body.is-internal-surface.is-sidebar-compact .profil-alt {
  display: none !important;
}

body.is-internal-surface .profil-detay strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.is-internal-surface .profil-detay span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.is-internal-surface .profil-alt {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

body.is-internal-surface .canli-nokta {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12), 0 0 12px rgba(16, 185, 129, 0.55);
}

body.is-internal-surface .sayfa-kimlik {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

body.is-internal-surface .sayfa-kimlik h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

body.is-internal-surface .baslik-ayrac {
  width: 1px;
  height: 20px;
  background: var(--line);
}

body.is-internal-surface .sayfa-kodu {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.is-internal-surface .arama {
  position: relative;
  width: 280px;
  max-width: 380px;
  min-width: 220px;
  flex: 1 1 280px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  box-shadow: var(--shadow);
}

body.is-internal-surface .account-toolbar__search {
  flex: 0 1 min(380px, 42vw);
  min-height: 40px;
  max-height: 40px;
}

body.is-internal-surface .arama svg {
  width: 16px;
  height: 16px;
  stroke: var(--muted);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

body.is-internal-surface .arama input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
}

body.is-internal-surface .arama input::placeholder {
  color: var(--muted);
}

body.is-internal-surface .account-toolbar__search-results {
  position: absolute;
  inset: calc(100% + 8px) 0 auto 0;
  z-index: 70;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(242, 215, 161, 0.18);
  border-radius: 16px;
  background: rgba(8, 15, 26, 0.96);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px) saturate(150%);
}

body.is-internal-surface .account-toolbar__search-results[hidden] {
  display: none;
}

body.is-internal-surface .account-toolbar__search-result,
body.is-internal-surface .account-toolbar__search-empty {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

body.is-internal-surface .account-toolbar__search-empty {
  color: var(--muted);
}

body.is-internal-surface .account-toolbar__search-result:hover,
body.is-internal-surface .account-toolbar__search-result:focus-visible {
  outline: 0;
  background: linear-gradient(135deg, rgba(202, 166, 93, 0.20), rgba(15, 118, 110, 0.16));
  color: var(--accent-strong);
}

body.is-internal-surface .admin-sidebar__link.is-search-match,
body.is-internal-surface .app-sidebar__link.is-search-match,
body.is-internal-surface .profil-karti.is-search-match {
  border-color: rgba(242, 215, 161, 0.42);
  background: linear-gradient(135deg, rgba(202, 166, 93, 0.20), rgba(15, 118, 110, 0.12));
}

body.is-internal-surface .admin-sidebar__link.is-search-dimmed,
body.is-internal-surface .app-sidebar__link.is-search-dimmed,
body.is-internal-surface .profil-karti.is-search-dimmed {
  opacity: 0.42;
}

/* Premium Card Structures (Replacing details/summary) */
body.is-internal-surface .kart {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 20px;
}

body.is-internal-surface .kart::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--renk-altin), transparent);
  opacity: 0.65;
}

body.is-internal-surface .kart-baslik {
  min-height: 60px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.is-internal-surface .kart-baslik h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

body.is-internal-surface .kart-baslik-sol {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.is-internal-surface .kart-aksiyon {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.is-internal-surface .kart-icerik {
  padding: 20px;
}

body.is-internal-surface .icerik-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.62fr);
  gap: 20px;
  align-items: start;
}

@media (max-width: 960px) {
  body.is-internal-surface .icerik-grid {
    grid-template-columns: 1fr;
  }
}

/* Dynamic Configuration Source Badges */
.status-chip--database {
  color: #7cf4b3;
  border-color: rgba(124, 244, 179, 0.25);
  background: rgba(124, 244, 179, 0.08);
}

.status-chip--env {
  color: #ffc774;
  border-color: rgba(255, 199, 116, 0.25);
  background: rgba(255, 199, 116, 0.08);
}

/* Internal CRM Theme Contract */
body.is-internal-surface.is-internal-theme-dark,
body.is-internal-surface.is-internal-theme-effective-dark {
  color-scheme: dark;
}

body.is-internal-surface.is-internal-theme-light,
body.is-internal-surface.is-internal-theme-effective-light {
  --bg: #f5f1e8;
  --bg-alt: #ebe4d7;
  --panel: rgba(255, 253, 248, 0.94);
  --panel-soft: rgba(241, 234, 223, 0.92);
  --line: rgba(22, 32, 43, 0.14);
  --line-strong: rgba(202, 166, 93, 0.34);
  --text: #172033;
  --muted: #5b6473;
  --accent: #caa65d;
  --accent-strong: #8b682a;
  --success: #0f766e;
  --warn: #9a6815;
  --danger: #b42335;
  --shadow: 0 24px 64px rgba(44, 35, 23, 0.16);
  background:
    radial-gradient(circle at 18% 10%, rgba(202, 166, 93, 0.18), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(15, 118, 110, 0.12), transparent 30%),
    linear-gradient(135deg, #f8f4ec 0%, #eee7da 58%, #e5dccd 100%);
  color: var(--text);
  color-scheme: light;
}

@media (prefers-color-scheme: light) {
  body.is-internal-surface.is-internal-theme-system {
    --bg: #050a12;
    --bg-alt: #07111f;
    --panel: rgba(16, 26, 43, 0.88);
    --panel-soft: rgba(21, 34, 56, 0.76);
    --line: rgba(242, 215, 161, 0.16);
    --line-strong: rgba(242, 215, 161, 0.34);
    --text: #fffaf0;
    --muted: #aeb8c8;
    --accent: #caa65d;
    --accent-strong: #f2d7a1;
    --success: #4fe5a9;
    --warn: #f2d7a1;
    --danger: #ff8c8c;
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
    background:
      linear-gradient(135deg, rgba(202, 166, 93, 0.10), transparent 28%),
      linear-gradient(180deg, #050a12 0%, #07111f 42%, #101a2b 100%);
    color-scheme: dark;
  }
}

body.is-internal-surface.is-internal-theme-light .admin-console,
body.is-internal-surface.is-internal-theme-light .app-console,
body.is-internal-surface.is-internal-theme-effective-light .admin-console,
body.is-internal-surface.is-internal-theme-effective-light .app-console {
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(202, 166, 93, 0.16), transparent 31%),
    radial-gradient(circle at 95% 8%, rgba(15, 118, 110, 0.12), transparent 28%),
    linear-gradient(135deg, #f8f4ec 0%, #eee7da 58%, #e5dccd 100%);
}

body.is-internal-surface.is-internal-theme-light .admin-topbar,
body.is-internal-surface.is-internal-theme-light .app-topbar,
body.is-internal-surface.is-internal-theme-light .admin-header,
body.is-internal-surface.is-internal-theme-light .app-header,
body.is-internal-surface.is-internal-theme-light .settings-runtime-card,
body.is-internal-surface.is-internal-theme-light .kart,
body.is-internal-surface.is-internal-theme-light .metric,
body.is-internal-surface.is-internal-theme-light .app-settings-card,
body.is-internal-surface.is-internal-theme-light .account-toolbar__search-results,
body.is-internal-surface.is-internal-theme-effective-light .admin-topbar,
body.is-internal-surface.is-internal-theme-effective-light .app-topbar,
body.is-internal-surface.is-internal-theme-effective-light .admin-header,
body.is-internal-surface.is-internal-theme-effective-light .app-header,
body.is-internal-surface.is-internal-theme-effective-light .settings-runtime-card,
body.is-internal-surface.is-internal-theme-effective-light .kart,
body.is-internal-surface.is-internal-theme-effective-light .metric,
body.is-internal-surface.is-internal-theme-effective-light .app-settings-card,
body.is-internal-surface.is-internal-theme-effective-light .account-toolbar__search-results {
  color: var(--text);
  border-color: var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

body.is-internal-surface.is-internal-theme-light .admin-sidebar,
body.is-internal-surface.is-internal-theme-light .app-sidebar,
body.is-internal-surface.is-internal-theme-effective-light .admin-sidebar,
body.is-internal-surface.is-internal-theme-effective-light .app-sidebar {
  --text: #fffaf0;
  --muted: #aeb8c8;
  --panel: rgba(10, 18, 31, 0.94);
  --panel-soft: rgba(16, 28, 48, 0.88);
  --line: rgba(242, 215, 161, 0.18);
  background:
    radial-gradient(circle at 20% 0%, rgba(202, 166, 93, 0.18), transparent 30%),
    linear-gradient(180deg, #102036 0%, #07111f 100%);
  box-shadow: 18px 0 70px rgba(12, 22, 37, 0.22);
}

body.is-internal-surface .account-toolbar__control[data-internal-theme-toggle] {
  min-width: 44px;
}

body.is-internal-surface .account-toolbar__control[data-internal-theme-toggle].is-active {
  color: var(--accent-strong);
  border-color: rgba(202, 166, 93, 0.42);
  background: linear-gradient(135deg, rgba(202, 166, 93, 0.18), rgba(15, 118, 110, 0.14));
}

body.is-internal-surface.is-internal-theme-light .account-toolbar__control,
body.is-internal-surface.is-internal-theme-light .account-toolbar__search input,
body.is-internal-surface.is-internal-theme-light .field input,
body.is-internal-surface.is-internal-theme-light .field select,
body.is-internal-surface.is-internal-theme-light .field textarea,
body.is-internal-surface.is-internal-theme-effective-light .account-toolbar__control,
body.is-internal-surface.is-internal-theme-effective-light .account-toolbar__search input,
body.is-internal-surface.is-internal-theme-effective-light .field input,
body.is-internal-surface.is-internal-theme-effective-light .field select,
body.is-internal-surface.is-internal-theme-effective-light .field textarea {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
  color-scheme: light;
}

body.is-internal-surface.is-internal-theme-light .helper-text,
body.is-internal-surface.is-internal-theme-light .hero-kicker,
body.is-internal-surface.is-internal-theme-light .account-toolbar__search-label,
body.is-internal-surface.is-internal-theme-light .settings-runtime-card small,
body.is-internal-surface.is-internal-theme-effective-light .helper-text,
body.is-internal-surface.is-internal-theme-effective-light .hero-kicker,
body.is-internal-surface.is-internal-theme-effective-light .account-toolbar__search-label,
body.is-internal-surface.is-internal-theme-effective-light .settings-runtime-card small {
  color: var(--muted);
}

/* Internal CRM page shells must not create a second sticky sidebar inside the page. */
body.is-internal-surface .settings-workspace[data-internal-crm-workspace],
body.is-internal-surface .app-settings-workspace[data-internal-crm-workspace],
body.is-internal-surface .operations-workspace[data-internal-crm-workspace] {
  grid-template-columns: 1fr;
}

body.is-internal-surface .settings-workspace[data-internal-crm-workspace] > .settings-workspace__aside,
body.is-internal-surface .app-settings-workspace[data-internal-crm-workspace] > .app-settings-workspace__aside {
  position: static;
  top: auto;
  min-width: 0;
}

body.is-internal-surface .settings-workspace[data-internal-crm-workspace] .settings-runtime-status-list,
body.is-internal-surface .app-settings-workspace[data-internal-crm-workspace] .settings-runtime-status-list {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}
