:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #211c25;
  background: #f6f2f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #8b1e5b;
  text-decoration: none;
}

button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  color: #fff;
  background: #8b1e5b;
  font-weight: 700;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d7cbd4;
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

textarea {
  font-family: "Cascadia Mono", Consolas, monospace;
  resize: vertical;
}

label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.admin-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  font-size: 13px;
  line-height: 1.42;
  background: #f6f2f5;
}

.admin-app button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.admin-app input,
.admin-app select,
.admin-app textarea {
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 13px;
}

.admin-app label {
  gap: 5px;
  font-size: 12px;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 16px;
  border-right: 1px solid #e2d7df;
  background: #221824;
  color: #fff;
}

.admin-local .sidebar {
  border-right-color: #c3ab87;
  background: #d8c3a5;
  color: #2f2618;
}

.admin-local .brand {
  color: #2f2618;
}

.admin-local .brand span {
  color: #6d5b3f;
}

.admin-local .side-nav a {
  color: #3b2f1e;
}

.admin-local .side-nav a:hover,
.admin-local .side-nav a.active {
  background: #8b1e5b;
  color: #fff;
}

.admin-local .logout-form button {
  color: #2f2618;
  background: #fff7e8;
}

.brand {
  display: grid;
  gap: 4px;
  padding: 8px 10px 22px;
  color: #fff;
}

.brand strong {
  font-size: 20px;
}

.brand span {
  color: #cdbfca;
  font-size: 13px;
}

.side-nav {
  display: grid;
  gap: 6px;
}

.side-nav a {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  color: #efe6ed;
  font-weight: 700;
}

.side-nav a:hover,
.side-nav a.active {
  background: #8b1e5b;
  color: #fff;
}

.logout-form {
  margin-top: 22px;
}

.logout-form button {
  width: 100%;
  color: #221824;
  background: #fff;
}

.admin-main {
  min-width: 0;
  padding: 22px;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f6f2f5;
}

.login-panel {
  width: min(100%, 420px);
  border: 1px solid #e1d8df;
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(50, 24, 45, 0.08);
}

.login-panel h1,
.login-panel p {
  margin-top: 0;
}

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

.login-error {
  border-radius: 6px;
  padding: 10px 12px;
  color: #a52a2a;
  background: #fde8e8;
}

.notice {
  border: 1px solid #b7e4c7;
  border-radius: 6px;
  padding: 10px 12px;
  color: #1d6a35;
  background: #e4f5e9;
}

.warning {
  border: 1px solid #f0c36d;
  border-radius: 6px;
  padding: 10px 12px;
  color: #7a4b00;
  background: #fff4d8;
}

.domain-blueprint-form {
  display: grid;
  gap: 18px;
}

.form-section {
  display: grid;
  gap: 12px;
}

.form-section h3 {
  margin: 0;
  font-size: 16px;
}

.toolbar,
.panel,
.metrics {
  margin-bottom: 16px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.toolbar h1,
.toolbar p {
  margin: 0;
}

.toolbar h1 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.toolbar p {
  margin-top: 8px;
  color: #695d68;
}

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

.button-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  color: #fff;
  background: #8b1e5b;
  font-weight: 800;
}

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

.admin-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

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

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

.metric,
.panel {
  border: 1px solid #e1d8df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(50, 24, 45, 0.06);
}

.metric {
  padding: 14px;
}

.metric span {
  display: block;
  color: #695d68;
  font-size: 13px;
}

.metric strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.panel {
  padding: 16px;
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

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

.panel-heading h2,
.panel-heading p {
  margin: 0;
}

.panel-heading p {
  color: #695d68;
}

.grid-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

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

.data-table {
  display: grid;
  gap: 6px;
  overflow-x: auto;
}

.data-row {
  min-width: 760px;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid #eee7ec;
  border-radius: 6px;
  color: inherit;
  background: #fff;
}

.data-row.table-head {
  border-color: transparent;
  background: #f8f2f6;
  color: #695d68;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.link-row:hover {
  border-color: #d8b3ca;
}

.models-table .data-row {
  grid-template-columns: 220px 120px 90px 100px 220px 80px 80px 130px 70px;
}

.domains-table .data-row,
.dns-table .data-row {
  grid-template-columns: 220px 120px 180px 90px 180px 260px;
}

.seo-table .data-row {
  grid-template-columns: 170px 100px 120px 260px 1fr;
}

.search-metrics-table .data-row {
  grid-template-columns: 110px 170px 260px 220px 80px 80px 80px 80px;
}

.search-signals-table .data-row {
  grid-template-columns: 260px 220px 80px 80px 80px;
}

.stacked-actions {
  display: grid;
  gap: 12px;
}

.model-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.model-cell img,
.mini-models img {
  width: 52px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: cover;
  background: #eadde6;
}

.data-row small,
.model-cell small {
  display: block;
  color: #756a74;
}

.prompt-variables {
  grid-column: 1 / -1;
  border: 1px solid #eee7ec;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fbf8fa;
}

.prompt-variables summary {
  cursor: pointer;
  font-weight: 800;
}

.variable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.variable-grid div {
  display: grid;
  gap: 3px;
  border: 1px solid #eee7ec;
  border-radius: 5px;
  padding: 8px;
  background: #fff;
}

.variable-grid code {
  color: #8b1e5b;
  font-size: 12px;
  font-weight: 800;
}

.variable-grid span {
  color: #695d68;
  font-size: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tag-list b {
  border-radius: 999px;
  padding: 2px 7px;
  background: #f3e6ef;
  color: #72204f;
  font-size: 11px;
}

.row {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #eee7ec;
  border-radius: 6px;
  color: inherit;
  background: #fff;
}

.row small {
  display: block;
  color: #756a74;
}

.status {
  border-radius: 999px;
  padding: 4px 10px;
  background: #f3e6ef;
  color: #72204f;
  font-weight: 700;
}

.status-online,
.status-ok,
.status-live {
  background: #e4f5e9;
  color: #1d6a35;
}

.status-error,
.status-private {
  background: #fde8e8;
  color: #a52a2a;
}

.status-concept,
.status-dns_waiting,
.status-pending {
  background: #fff1d6;
  color: #84540c;
}

.detail-list {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 0;
}

.detail-list dt {
  color: #695d68;
  font-weight: 800;
}

.detail-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.detail-preview {
  width: 100%;
  max-height: 460px;
  border-radius: 8px;
  object-fit: cover;
  background: #eadde6;
}

.detail-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.inline-actions {
  margin-top: 0;
}

.inline-actions button {
  min-height: 34px;
  padding: 0 10px;
}

.json-block {
  max-height: 420px;
  overflow: auto;
  border-radius: 8px;
  padding: 14px;
  background: #201821;
  color: #fff;
  font-size: 12px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.tabs a {
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid #eadde6;
  font-weight: 800;
}

.tabs a.active,
.tabs a[aria-current="page"] {
  color: #fff;
  background: #8b1e5b;
  border-color: #8b1e5b;
}

.domain-status-bar {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.domain-status-bar .metric strong {
  font-size: 16px;
}

.mini-models {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mini-models span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.warning-list {
  margin: 0;
  padding-left: 18px;
}

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

.draft-box {
  margin-top: 16px;
  border: 1px solid #eadde6;
  border-radius: 8px;
  padding: 14px;
  background: #fbf7fa;
}

.draft-box h3,
.draft-box p {
  margin-top: 0;
}

.hint,
.back {
  color: #756a74;
}

.public-shell {
  min-height: 100vh;
  background: #fff8fb;
}

.hero {
  min-height: 46vh;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(21, 14, 26, 0.82), rgba(21, 14, 26, 0.28)),
    linear-gradient(135deg, var(--accent), #f0a04b);
}

.site-hero,
.category-hero {
  min-height: 42vh;
}

.hero nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(44px, 12vh, 110px);
}

.hero nav a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.98;
}

.hero p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 19px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 28px auto;
  padding: 0 24px;
}

.section-heading,
.seo-copy,
.category-overview {
  max-width: 1220px;
  margin: 28px auto;
  padding: 0 24px;
}

.section-heading h2,
.section-heading p {
  margin: 0;
}

.section-heading h2 {
  font-size: 28px;
}

.section-heading p {
  margin-top: 6px;
  color: #695d68;
}

.seo-copy {
  display: grid;
  gap: 12px;
  color: #332a34;
  font-size: 17px;
}

.seo-copy p {
  max-width: 860px;
  margin: 0;
}

.category-overview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.category-overview a {
  min-height: 116px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid #eadde6;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.category-overview strong {
  color: #211c25;
}

.category-overview span {
  color: #695d68;
  font-size: 14px;
}

.model-card {
  overflow: hidden;
  border: 1px solid #eadde6;
  border-radius: 8px;
  background: #fff;
}

.model-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.model-card div {
  padding: 14px;
}

.model-card h2,
.model-card p {
  margin: 0;
}

.model-card p {
  min-height: 42px;
  color: #695d68;
}

.model-card a {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 800;
}

.category-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1220px;
  margin: 0 auto 42px;
  padding: 0 24px;
}

.category-band a,
.empty {
  border: 1px solid #eadde6;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
}

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

.public-model-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  max-width: 1220px;
  margin: 28px auto;
  padding: 0 24px;
}

.model-detail-media,
.model-detail-info {
  overflow: hidden;
  border: 1px solid #eadde6;
  border-radius: 8px;
  background: #fff;
}

.model-detail-media {
  margin: 0;
}

.model-detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #211c25;
}

.model-detail-media figcaption,
.model-detail-info {
  padding: 18px;
}

.model-detail-info h2,
.model-detail-info p {
  margin-top: 0;
}

.model-detail-badges,
.stripcash-model-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.model-detail-badges span,
.stripcash-model-badges span {
  border-radius: 999px;
  padding: 5px 10px;
  color: #fff;
  background: #8b1e5b;
  font-size: 12px;
  font-weight: 900;
}

.model-facts {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px 16px;
  margin: 0 0 18px;
}

.model-facts dt {
  color: #756a74;
  font-weight: 800;
}

.model-facts dd {
  min-width: 0;
  margin: 0;
}

.model-detail-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 18px;
  color: #fff;
  background: #8b1e5b;
  font-weight: 900;
}

.model-video-player {
  overflow: hidden;
  border: 1px solid #eadde6;
  border-radius: 8px;
  background: #09090a;
}

.model-video-stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: var(--player-ratio, 16 / 9);
  min-height: 360px;
  background: #000;
}

.model-video-stage video,
.model-video-stage img,
.js-stripchat-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.js-stripchat-player {
  display: grid;
  place-items: center;
}

.js-stripchat-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.model-video-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 36px 16px 14px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.76));
  pointer-events: none;
}

.model-video-overlay strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model-video-status {
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(178, 31, 45, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.model-video-controls {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  color: #d7d7dc;
  background: #151518;
}

.model-video-controls > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.model-video-controls button {
  min-height: 28px;
  border-radius: 4px;
  padding: 0 9px;
  color: #fff;
  background: #2c2c31;
  font-size: 12px;
}

.model-video-fallback {
  margin: 0;
  padding: 12px;
  color: #d7d7dc;
  background: #151518;
}

.stripcash-shell {
  min-height: 100vh;
  color: #f7f7f7;
  background: #050505;
}

.stripcash-shell a {
  color: inherit;
}

.stripcash-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  display: grid;
  grid-template-columns: 44px auto 10px auto minmax(240px, 540px) auto auto auto;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: #b21f2d;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.stripcash-menu {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: grid;
  align-content: center;
  gap: 5px;
}

.stripcash-menu span {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

.stripcash-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.stripcash-logo span {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, #fff 0 45%, transparent 45%),
    #780713;
}

.stripcash-logo strong {
  overflow: hidden;
  font-size: 20px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stripcash-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8cff00;
}

.stripcash-live-count {
  white-space: nowrap;
}

.stripcash-search {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-radius: 999px;
  background: #8f1724;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.stripcash-search input {
  min-width: 0;
  border: 0;
  color: #fff;
  background: transparent;
}

.stripcash-search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.stripcash-search button,
.stripcash-pill,
.stripcash-login {
  min-height: 34px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.stripcash-search button {
  margin-right: 4px;
  color: #fff;
  background: #70101a;
}

.stripcash-pill {
  display: inline-flex;
  align-items: center;
  color: #7f111b;
  background: #fff;
}

.stripcash-login {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.stripcash-toplink {
  color: #fff;
  white-space: nowrap;
}

.stripcash-tabs {
  position: sticky;
  top: 64px;
  z-index: 18;
  display: flex;
  gap: 28px;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid #262626;
  background: #2a2a2a;
}

.stripcash-tabs a {
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  color: #d8d8d8;
  font-weight: 700;
}

.stripcash-tabs a.active {
  border-color: #ff3b5b;
  color: #fff;
}

.stripcash-page {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  align-items: start;
}

.stripcash-sidebar-open .stripcash-page {
  grid-template-columns: 0 minmax(0, 1fr);
}

.stripcash-sidebar-open .stripcash-sidebar {
  width: 0;
  padding-right: 0;
  padding-left: 0;
  border-right: 0;
  overflow: hidden;
}

.stripcash-sidebar {
  position: sticky;
  top: 112px;
  height: calc(100vh - 112px);
  overflow: auto;
  padding: 14px 10px 24px;
  border-right: 1px solid #242424;
  background: #141416;
}

.stripcash-side-primary,
.stripcash-sidebar section {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #2a2a2d;
}

.stripcash-sidebar h2 {
  margin: 0 0 8px;
  color: #8f96a3;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.stripcash-sidebar a {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 4px;
  padding: 7px 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

.stripcash-sidebar a.active,
.stripcash-sidebar a:hover {
  background: #303033;
}

.stripcash-sidebar b {
  color: #fff;
  font-size: 12px;
}

.stripcash-main {
  min-width: 0;
  padding: 18px 26px 48px;
}

.stripcash-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}

.stripcash-intro span,
.stripcash-breadcrumb {
  color: #a0a0a7;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.stripcash-intro h1 {
  margin: 4px 0 8px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

.stripcash-intro p {
  max-width: 860px;
  margin: 0;
  color: #d6d6dc;
}

.stripcash-intro nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.stripcash-intro nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #fff;
  background: #202023;
}

.stripcash-intro nav a.active,
.stripcash-intro nav a:hover {
  background: var(--stripcash-accent);
}

.stripcash-promo {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 10px 0 26px;
  border-radius: 4px;
  padding: 12px 20px;
  background: linear-gradient(90deg, #72020b, #b20e21);
}

.stripcash-promo strong {
  font-size: 21px;
}

.stripcash-promo span {
  color: #ffd7dc;
  font-weight: 700;
}

.stripcash-promo a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #380006;
  background: #ffc400;
  font-weight: 900;
  white-space: nowrap;
}

.stripcash-section {
  margin: 0 0 30px;
}

.stripcash-section-head {
  min-height: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.stripcash-section-head h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.stripcash-section-head p {
  margin: 4px 0 0;
  color: #aaaab1;
}

.stripcash-section-head a {
  color: #a9a9b0;
  font-weight: 800;
  white-space: nowrap;
}

.stripcash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 7px;
}

.stripcash-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 3px;
  background: #1b1b1d;
}

.stripcash-card a {
  position: relative;
  display: block;
  min-height: 100%;
  color: #fff;
}

.stripcash-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #242427;
  transition: transform 180ms ease, filter 180ms ease;
}

.stripcash-card:hover img {
  filter: brightness(0.78);
  transform: scale(1.025);
}

.stripcash-card-badges {
  position: absolute;
  top: 6px;
  left: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.stripcash-card-badges b {
  border-radius: 3px;
  padding: 2px 5px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 10px;
  line-height: 1.3;
}

.stripcash-card-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 34px 10px 9px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.stripcash-card-info strong,
.stripcash-card-info small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stripcash-card-info strong {
  font-size: 13px;
}

.stripcash-card-info small {
  color: #d6d6d9;
  font-size: 11px;
}

.stripcash-card-cta {
  position: absolute;
  inset: auto 10px 42px 10px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  opacity: 0;
  color: #fff;
  background: var(--stripcash-accent);
  font-weight: 900;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.stripcash-card:hover .stripcash-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.stripcash-category-grid {
  margin: 18px 0 30px;
}

.stripcash-category-grid > div:last-child {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.stripcash-category-grid a {
  min-height: 112px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid #29292d;
  border-radius: 4px;
  padding: 12px;
  background: #141416;
}

.stripcash-category-grid strong {
  color: #fff;
}

.stripcash-category-grid span {
  color: #a9a9b0;
  font-size: 13px;
}

.stripcash-shell .seo-copy {
  max-width: none;
  margin: 28px 0;
  padding: 18px;
  border: 1px solid #242428;
  border-radius: 4px;
  color: #c8c8ce;
  background: #101012;
  font-size: 15px;
}

.stripcash-shell .seo-copy p {
  max-width: 980px;
}

.stripcash-empty {
  grid-column: 1 / -1;
  border: 1px solid #29292d;
  border-radius: 4px;
  padding: 18px;
  color: #d6d6dc;
  background: #141416;
}

.stripcash-room {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 10px;
  margin: -18px -26px 26px;
  background: #050505;
}

.stripcash-room-main {
  min-width: 0;
  background: #000;
}

.stripcash-room .model-video-player {
  border: 0;
  border-radius: 0;
}

.stripcash-room .model-video-stage {
  height: clamp(420px, calc(100vh - 260px), 720px);
  min-height: 0;
  aspect-ratio: auto;
}

.stripcash-room .model-video-controls {
  border-top: 1px solid #1f1f22;
}

.stripcash-room-panel {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border-left: 1px solid #242428;
  background: #111114;
}

.stripcash-chat-panel {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #242424;
}

.stripcash-chat-tabs {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-bottom: 1px solid #303033;
  background: #222;
}

.stripcash-chat-tabs a,
.stripcash-chat-tabs span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid transparent;
  color: #aeb0b6;
  font-weight: 850;
}

.stripcash-chat-tabs a.active {
  border-color: #ff3b5b;
  color: #fff;
}

.stripcash-chat-tabs span {
  padding: 0 8px;
  color: #bec2c8;
}

.stripcash-chat-menu {
  letter-spacing: 2px;
}

.stripcash-chat-feed {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  overflow: hidden;
  background: #252525;
}

.stripcash-chat-message {
  margin: 0;
  padding: 11px 12px;
  border-bottom: 1px solid #303033;
  color: #f3f3f6;
  font-size: 15px;
  line-height: 1.35;
}

.stripcash-chat-message b {
  color: #fff;
}

.stripcash-chat-message.tip {
  color: #c8c9cf;
}

.stripcash-chat-message.tip span {
  width: 17px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-top: 4px solid #ffbe45;
  border-radius: 50% 50% 0 0;
}

.stripcash-chat-message.chat b,
.stripcash-chat-message:not(.tip, .status) b {
  color: #ff8a36;
}

.stripcash-chat-message.status {
  color: #bcc2cc;
}

.stripcash-chat-compose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid #303033;
  background: #303033;
}

.stripcash-chat-compose input {
  min-width: 0;
  height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: #111;
  font: inherit;
}

.stripcash-chat-compose button {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  color: transparent;
  background: #3182f6;
  cursor: pointer;
  position: relative;
}

.stripcash-chat-compose button::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #fff;
}

.stripcash-chat-join {
  min-height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  margin: 12px;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: var(--stripcash-accent);
  font-weight: 900;
}

.stripcash-room-footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border-top: 1px solid #202024;
  background: #111114;
}

.stripcash-room-avatar {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stripcash-room-avatar img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.stripcash-room-avatar h1 {
  overflow: hidden;
  margin: 2px 0 0;
  font-size: 24px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stripcash-room-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.stripcash-room-actions span {
  color: #b8b8bf;
  font-weight: 800;
}

.stripcash-room-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: var(--stripcash-accent);
  font-weight: 950;
}

.stripcash-profile-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  margin-bottom: 30px;
}

.stripcash-profile-main,
.stripcash-profile-side,
.stripcash-profile-card {
  min-width: 0;
}

.stripcash-model-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  min-height: 50px;
  align-items: center;
  border-bottom: 1px solid #29292d;
}

.stripcash-model-tabs a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  color: #b8b8bf;
  font-weight: 850;
}

.stripcash-model-tabs a.active {
  border-color: var(--stripcash-accent);
  color: #fff;
}

.stripcash-profile-card,
.stripcash-profile-side {
  margin-top: 16px;
  border: 1px solid #29292d;
  border-radius: 4px;
  padding: 16px;
  background: #141416;
}

.stripcash-profile-card h2,
.stripcash-profile-side h2 {
  margin: 0 0 14px;
}

.stripcash-profile-card p {
  margin: 0;
  color: #d6d6dc;
}

.stripcash-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stripcash-tag-cloud a,
.stripcash-tag-cloud span {
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  background: #242429;
  font-size: 13px;
  font-weight: 850;
}

.stripcash-profile-side .model-facts dt {
  color: #9898a0;
}

.stripcash-profile-side .model-facts dd {
  color: #fff;
}

.stripcash-model-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: var(--stripcash-accent);
  font-weight: 950;
}

.stripcash-model-copy {
  margin: 18px 0 0;
  font-size: 14px;
}

.base-template-v2-shell {
  color: #fff;
  background: #050507;
}

.base-v2-topbar {
  min-height: 56px;
  grid-template-columns: 36px minmax(210px, auto) minmax(0, 1fr) 74px auto;
  gap: 18px;
  padding: 0 20px;
  background: #19182f;
  box-shadow: none;
}

.base-v2-logo {
  overflow: hidden;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.base-v2-nav {
  min-width: 0;
  display: flex;
  gap: 26px;
  overflow: hidden;
  white-space: nowrap;
}

.base-v2-nav a {
  color: #c7c5d6;
  font-weight: 700;
}

.base-v2-nav a:hover {
  color: #fff;
}

.base-v2-search {
  width: 74px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: #13131a;
}

.base-v2-search input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.base-v2-search button {
  width: 42px;
  min-height: 42px;
  overflow: hidden;
  border-radius: 999px;
  padding: 0;
  color: transparent;
  background: transparent;
  position: relative;
}

.base-v2-search button::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 11px;
  width: 13px;
  height: 13px;
  border: 2px solid #aaa8b7;
  border-radius: 50%;
}

.base-v2-search button::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 27px;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: #aaa8b7;
  transform: rotate(45deg);
  transform-origin: left center;
}

.base-v2-events {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.base-v2-events::before {
  content: "";
  width: 22px;
  height: 22px;
  background:
    linear-gradient(35deg, transparent 45%, #fff 45% 55%, transparent 55%),
    linear-gradient(125deg, transparent 45%, #fff 45% 55%, transparent 55%);
}

.base-v2-events b {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #ff006a;
  font-size: 12px;
}

.base-v2-page {
  grid-template-columns: 303px minmax(0, 1fr);
}

.base-v2-main {
  padding: 12px 7px 44px 12px;
}

.base-v2-sidebar {
  top: 56px;
  height: calc(100vh - 56px);
  padding: 14px 8px 26px 0;
  border-right: 8px solid #15152d;
  background: #020203;
}

.base-v2-side-primary {
  display: grid;
  gap: 0;
  margin: 0 5px 18px 2px;
  overflow: hidden;
  border-radius: 8px;
  background: #171719;
}

.base-v2-sidebar section {
  gap: 0;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #151519;
}

.base-v2-sidebar a {
  min-height: 40px;
  border-radius: 0;
  padding: 7px 8px 7px 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.base-v2-sidebar a.active,
.base-v2-sidebar a:hover {
  color: #19a7ff;
  background: #171719;
}

.base-v2-sidebar b {
  color: #9ca9bc;
  font-size: 16px;
  font-weight: 500;
}

.base-v2-offer {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto minmax(0, max-content) auto;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: -12px -7px 12px -12px;
  padding: 12px 18px;
  background: linear-gradient(90deg, #080328, #a600a8 43%, #ff006a);
}

.base-v2-offer span {
  min-height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  padding: 0 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.base-v2-offer span::before {
  content: "Gift";
  margin-right: 10px;
  color: #ffc400;
}

.base-v2-offer strong {
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}

.base-v2-offer a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
  white-space: nowrap;
}

.base-v2-feature-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 12px;
  margin-bottom: 12px;
}

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

.base-v2-section {
  margin-bottom: 12px;
}

.base-v2-section .stripcash-section-head {
  margin: 12px 0 8px;
  padding: 0 4px;
}

.base-v2-section .stripcash-section-head h2,
.base-v2-heading h1 {
  font-size: 26px;
}

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

.base-v2-card {
  border-radius: 0;
  background: #121218;
}

.base-v2-card img {
  aspect-ratio: 16 / 9;
}

.base-v2-card.featured img {
  aspect-ratio: 16 / 9;
}

.base-v2-card-flags {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 5px;
}

.base-v2-card-flags b {
  border-radius: 3px;
  padding: 3px 7px;
  color: #111;
  background: #ffc400;
  font-size: 12px;
  font-weight: 950;
}

.base-v2-card-flags b:first-child {
  color: #fff;
  background: #ff006a;
}

.base-v2-card .stripcash-card-info {
  padding: 46px 10px 10px;
}

.base-v2-card .stripcash-card-info strong {
  font-size: 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
}

.base-v2-card .stripcash-card-info em {
  font-style: normal;
  font-size: 13px;
}

.base-v2-heading {
  display: grid;
  gap: 8px;
  padding: 18px 8px;
}

.base-v2-heading a,
.base-v2-heading p {
  color: #aaaabd;
}

.base-v2-heading h1,
.base-v2-heading p {
  margin: 0;
}

.base-v2-category-grid {
  margin: 20px 4px 28px;
}

.base-template-v2-shell .seo-copy {
  max-width: none;
  margin: 28px 4px;
  border-color: #202024;
  background: #101014;
}

@media (max-width: 900px) {
  .admin-app {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

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

  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .metrics,
  .grid-form,
  .admin-grid.two,
  .provider-grid,
  .publish-grid,
  .category-overview,
  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stripcash-topbar {
    position: static;
    grid-template-columns: 34px minmax(0, 1fr) auto;
  }

  .stripcash-live-dot,
  .stripcash-live-count,
  .stripcash-toplink,
  .stripcash-pill,
  .stripcash-login {
    display: none;
  }

  .stripcash-search {
    grid-column: 1 / -1;
  }

  .stripcash-tabs {
    position: static;
    overflow-x: auto;
  }

  .stripcash-page {
    grid-template-columns: 1fr;
  }

  .stripcash-sidebar {
    position: static;
    height: auto;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid #242424;
  }

  .stripcash-sidebar-open .stripcash-sidebar {
    display: none;
  }

  .stripcash-side-primary,
  .stripcash-sidebar section {
    min-width: max-content;
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0;
    border-bottom: 0;
  }

  .stripcash-sidebar h2 {
    display: none;
  }

  .stripcash-main {
    padding: 16px;
  }

  .stripcash-intro {
    grid-template-columns: 1fr;
  }

  .stripcash-intro nav {
    justify-content: flex-start;
  }

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

  .stripcash-category-grid > div:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-model-detail,
  .stripcash-model-detail,
  .stripcash-room,
  .stripcash-profile-area {
    grid-template-columns: 1fr;
  }

  .stripcash-room {
    margin: -16px -16px 22px;
  }

  .stripcash-room-panel {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid #242428;
  }

  .stripcash-chat-panel {
    min-height: 420px;
  }

  .stripcash-chat-feed {
    justify-content: flex-start;
  }

  .stripcash-room-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .stripcash-room-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 560px) {
  .admin-shell {
    padding: 16px;
  }

  .admin-main {
    padding: 16px;
  }

  .side-nav {
    grid-template-columns: 1fr 1fr;
  }

  .metrics,
  .grid-form,
  .admin-grid.two,
  .provider-grid,
  .publish-grid,
  .category-overview,
  .model-grid,
  .row {
    grid-template-columns: 1fr;
  }

  .stripcash-promo {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .stripcash-grid,
  .stripcash-category-grid > div:last-child {
    grid-template-columns: 1fr;
  }

  .stripcash-room .model-video-stage {
    height: clamp(300px, 58vh, 560px);
    min-height: 0;
  }

  .stripcash-room-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .stripcash-room-actions a {
    justify-content: center;
  }
}

@media (max-width: 1180px) {
  .base-v2-nav {
    gap: 16px;
  }

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

@media (max-width: 900px) {
  .base-v2-topbar {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    min-height: auto;
    padding: 10px 14px;
  }

  .base-v2-logo {
    font-size: 22px;
  }

  .base-v2-nav {
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .base-v2-search {
    display: none;
  }

  .base-v2-page,
  .stripcash-sidebar-open .base-v2-page {
    grid-template-columns: 1fr;
  }

  .base-v2-sidebar {
    position: static;
    height: auto;
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 6px solid #15152d;
    padding: 10px;
  }

  .base-v2-side-primary,
  .base-v2-sidebar section {
    min-width: max-content;
    display: flex;
    padding: 0;
    margin: 0;
    border-bottom: 0;
  }

  .base-v2-sidebar a {
    min-height: 36px;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 15px;
  }

  .base-v2-main {
    padding: 0 10px 34px;
  }

  .base-v2-offer {
    grid-template-columns: 1fr auto;
    justify-content: stretch;
    margin: 0 -10px 10px;
  }

  .base-v2-offer span {
    display: none;
  }

  .base-v2-offer strong {
    font-size: 22px;
    white-space: normal;
  }

  .base-v2-feature-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .base-v2-events {
    display: none;
  }

  .base-v2-topbar {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .base-v2-offer {
    grid-template-columns: 1fr;
  }

  .base-v2-offer a {
    justify-content: center;
  }

  .base-v2-side-grid,
  .base-v2-grid {
    grid-template-columns: 1fr;
  }
}
