: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;
}

.category-audit-table .data-row {
  min-width: 1180px;
  grid-template-columns: 120px 160px 80px 90px 90px 150px minmax(220px, 2fr) 100px minmax(220px, 2fr);
}

.category-audit-opportunities .data-row {
  min-width: 940px;
  grid-template-columns: 120px 180px 90px 160px minmax(260px, 2fr) 110px;
}

.category-registry-table .data-row {
  min-width: 1420px;
  grid-template-columns: 130px 160px 180px 110px 90px 130px 80px 170px minmax(260px, 2fr) 80px 150px;
}

.category-translation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.translation-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 1px solid #eee7ec;
  border-radius: 6px;
  padding: 12px;
  background: #fff;
}

.translation-card legend {
  padding: 0 6px;
  font-weight: 800;
}

a.data-row {
  text-decoration: none;
}

.activity-row {
  grid-template-columns: 140px 110px 120px minmax(160px, 1fr) minmax(220px, 2fr);
}

.activity-row:hover,
.activity-row.is-selected {
  border-color: #9b1b63;
  background: #fbf4f8;
}

.seo-bulk-panel {
  margin: 10px 0 12px;
  padding: 12px;
  border: 1px solid #eee7ec;
  border-radius: 6px;
  background: #fbf8fa;
}

.seo-bulk-panel .panel-heading {
  align-items: center;
}

.seo-bulk-panel h3 {
  margin-bottom: 2px;
  font-size: 16px;
}

.seo-bulk-panel p {
  margin: 0;
}

.seo-bulk-panel .actions {
  gap: 8px;
}

.seo-bulk-panel button,
.seo-bulk-panel .button-link {
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
}

.seo-bulk-form {
  display: grid;
  gap: 8px;
}

.seo-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  padding-top: 2px;
}

.seo-bulk-actions button {
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
}

.seo-bulk-actions .secondary {
  border: 1px solid #d7cbd4;
  color: #8b1e5b;
  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 {
  min-width: 1240px;
  grid-template-columns: 34px 155px 80px 130px 75px 62px 70px 118px 78px 86px 105px 145px;
  gap: 7px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.25;
}

.seo-table .select-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-table input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group {
  border: 1px solid #ead6e2;
  border-radius: 8px;
  display: grid;
  gap: 0.45rem;
  padding: 0.7rem 0.8rem;
}

.checkbox-group legend {
  color: #3f3240;
  font-weight: 700;
  padding: 0 0.25rem;
}

.checkbox-option {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  margin: 0;
}

.checkbox-option input {
  width: auto;
  margin: 0;
}

.seo-table .data-row.table-head {
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 10px;
}

.seo-table .inline-actions {
  gap: 6px;
}

.seo-table .inline-actions button {
  min-height: 28px;
  padding: 0 9px;
  font-size: 12px;
}

.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 {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 3px 8px;
  background: #f3e6ef;
  color: #72204f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
}

.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;
}

.status-publish {
  background: #e4f5e9;
  color: #1d6a35;
}

.status-candidate {
  background: #e7efff;
  color: #244f9e;
}

.status-noindex {
  background: #fff1d6;
  color: #84540c;
}

.status-skip {
  background: #ece8ed;
  color: #5d5560;
}

.publication-status {
  display: grid;
  gap: 10px;
  margin: 14px 0;
  border: 1px solid #eadde6;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(63, 28, 52, 0.06);
}

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

.publication-status__header span,
.publication-status__header small {
  color: #695d68;
  font-size: 12px;
}

.publication-status__header strong {
  display: block;
  margin-top: 3px;
  color: #120b18;
  font-size: 18px;
}

.publication-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #f3e6ef;
}

.publication-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #9b1b68;
  transition: width 220ms ease;
}

.publication-status__meta {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.publication-status__meta dt {
  color: #695d68;
  font-size: 11px;
  font-weight: 800;
}

.publication-status__meta dd {
  min-width: 0;
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 800;
}

.detail-list {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 7px 12px;
  margin: 0;
  font-size: 12px;
}

@media (max-width: 900px) {
  .publication-status__header {
    display: grid;
  }

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

.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;
}

.bongacamsv1-shell {
  min-height: 100vh;
  color: #202124;
  background: #f3f3f3;
  font-family: Arial, Helvetica, sans-serif;
}

.bongacamsv1-shell a {
  color: inherit;
}

.bongacamsv1-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 54px;
  display: grid;
  grid-template-columns: 36px minmax(170px, auto) auto minmax(240px, 520px) auto auto;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-bottom: 1px solid #d5d5d5;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.bongacamsv1-menu {
  width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 7px;
  border: 1px solid #dadada;
  border-radius: 5px;
  background: #fafafa;
}

.bongacamsv1-menu span {
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: #4b4b4b;
}

.bongacamsv1-logo {
  min-width: 0;
  overflow: hidden;
  color: #f05a28;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bongacamsv1-live-count {
  color: #5f6368;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.bongacamsv1-search {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  height: 36px;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  background: #fff;
}

.bongacamsv1-search input {
  min-width: 0;
  border: 0;
  padding: 0 10px;
  color: #202124;
  background: transparent;
}

.bongacamsv1-search button {
  min-height: 34px;
  border-radius: 0 4px 4px 0;
  padding: 0 12px;
  color: #fff;
  background: #5b6370;
  font-size: 13px;
}

.bongacamsv1-login,
.bongacamsv1-signup {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.bongacamsv1-login {
  border: 1px solid #d5d5d5;
  background: #f8f8f8;
}

.bongacamsv1-signup {
  color: #fff;
  background: var(--bongacamsv1-accent);
}

.bongacamsv1-page {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
}

.bongacamsv1-sidebar {
  position: sticky;
  top: 54px;
  height: calc(100vh - 54px);
  overflow-y: auto;
  border-right: 1px solid #d8d8d8;
  background: #fff;
  padding: 10px 0 24px;
}

.bongacamsv1-sidebar-primary,
.bongacamsv1-sidebar section {
  display: grid;
  gap: 2px;
  padding: 0 10px 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
}

.bongacamsv1-sidebar h2 {
  margin: 8px 6px 6px;
  color: #8a8f98;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bongacamsv1-sidebar a {
  min-height: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
  padding: 5px 7px;
  color: #333;
  font-size: 13px;
}

.bongacamsv1-sidebar a.active,
.bongacamsv1-sidebar a:hover {
  background: #f1f2f4;
}

.bongacamsv1-sidebar b {
  color: #8c929c;
  font-size: 11px;
  font-weight: 700;
}

.bongacamsv1-main {
  min-width: 0;
  padding: 0 16px 48px;
}

.bongacamsv1-tabs {
  position: sticky;
  top: 54px;
  z-index: 25;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  margin: 0 -16px 14px;
  padding: 0 16px;
  border-bottom: 1px solid #dcdcdc;
  background: #f9f9f9;
}

.bongacamsv1-tabs a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 3px solid transparent;
  padding: 0 11px;
  color: #3c4043;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.bongacamsv1-tabs a.active {
  border-color: var(--bongacamsv1-accent);
  color: var(--bongacamsv1-accent);
}

.bongacamsv1-tabs b {
  color: #8a8f98;
  font-size: 12px;
}

.bongacamsv1-image-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.bongacamsv1-image-toggle span {
  color: #7a8089;
  font-size: 12px;
}

.bongacamsv1-image-toggle button {
  min-height: 28px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  padding: 0 9px;
  color: #5f6368;
  background: #fff;
  font-size: 12px;
}

.bongacamsv1-image-toggle button.active {
  color: #fff;
  background: #5b6370;
}

.bongacamsv1-heading {
  display: grid;
  gap: 6px;
  margin: 6px 0 12px;
}

.bongacamsv1-heading a {
  color: var(--bongacamsv1-accent);
  font-size: 13px;
  font-weight: 800;
}

.bongacamsv1-heading h1 {
  margin: 0;
  color: #202124;
  font-size: 24px;
  line-height: 1.18;
}

.bongacamsv1-heading p {
  max-width: 900px;
  margin: 0;
  color: #5f6368;
  font-size: 14px;
  line-height: 1.5;
}

.bongacamsv1-quick-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0 0 14px;
  padding: 10px;
  border: 1px solid #dedede;
  border-radius: 6px;
  background: #fff;
}

.bongacamsv1-quick-search strong {
  color: #3c4043;
  font-size: 13px;
}

.bongacamsv1-quick-search div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bongacamsv1-quick-search a {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  padding: 0 8px;
  color: #4e5661;
  background: #f1f2f4;
  font-size: 12px;
  font-weight: 700;
}

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

.bongacamsv1-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bongacamsv1-section-head h2 {
  margin: 0;
  color: #202124;
  font-size: 18px;
  line-height: 1.2;
}

.bongacamsv1-section-head span {
  color: #7a8089;
  font-size: 12px;
  font-weight: 800;
}

.bongacamsv1-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
  gap: 12px;
}

.bongacamsv1-card {
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.bongacamsv1-card a {
  position: relative;
  display: block;
  color: #fff;
}

.bongacamsv1-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #d9d9d9;
  transition: filter 160ms ease;
}

.bongacamsv1-card:hover img {
  filter: brightness(0.86);
}

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

.bongacamsv1-card-badges b {
  border-radius: 4px;
  padding: 3px 5px;
  color: #fff;
  background: rgba(240, 90, 40, 0.92);
  font-size: 10px;
  line-height: 1;
}

.bongacamsv1-card-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 3px;
  padding: 46px 9px 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

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

.bongacamsv1-card-info strong {
  font-size: 14px;
  line-height: 1.1;
}

.bongacamsv1-card-info small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.bongacamsv1-viewers {
  position: absolute;
  right: 7px;
  top: 7px;
  border-radius: 4px;
  padding: 3px 6px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  font-size: 11px;
  font-weight: 800;
}

.bongacamsv1-scroll-sentinel {
  min-height: 1px;
}

.bongacamsv1-more {
  justify-self: center;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  padding: 0 18px;
  color: #3c4043;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.bongacamsv1-shell .seo-copy {
  max-width: 980px;
  margin: 26px 0 0;
  padding: 18px;
  border: 1px solid #dedede;
  border-radius: 6px;
  color: #4b5058;
  background: #fff;
  font-size: 14px;
  line-height: 1.65;
}

.bongacamsv1-room,
.bongacamsv1-profile-area {
  margin-top: 0;
}

.bongacamsv1-shell .stripcash-profile-card,
.bongacamsv1-shell .stripcash-profile-side,
.bongacamsv1-shell .stripcash-room-panel {
  border-color: #dedede;
  background: #fff;
  color: #202124;
}

.striphours-shell {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 78% 8%, rgba(117, 45, 222, 0.5), transparent 34%),
    radial-gradient(circle at 14% 28%, rgba(22, 58, 156, 0.42), transparent 28%),
    linear-gradient(135deg, #081032 0%, #1d1160 48%, #38146f 100%);
}

.striphours-shell a {
  color: inherit;
}

.striphours-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(150px, 240px) minmax(0, 1fr) minmax(210px, 330px) auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(54, 41, 111, 0.94);
  backdrop-filter: blur(14px);
}

.striphours-logo {
  overflow: hidden;
  color: #fff;
  font-size: 24px;
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 2px 0 #9b54ff;
}

.striphours-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  overflow-x: auto;
  white-space: nowrap;
}

.striphours-nav a {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: #f5f1ff;
  font-weight: 750;
}

.striphours-nav a.active,
.striphours-nav a:hover {
  border-color: #fff;
  color: #fff;
}

.striphours-search {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

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

.striphours-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

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

.striphours-search button::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
}

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

.striphours-live-count {
  color: #dfd7ff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.striphours-main {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 28px clamp(12px, 4vw, 44px) 54px;
}

.striphours-model-section {
  display: grid;
  gap: 16px;
}

.striphours-section-head {
  min-height: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.striphours-section-head h1 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

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

.striphours-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(13, 15, 42, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.striphours-card a {
  position: relative;
  display: block;
  color: #fff;
}

.striphours-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: #11132c;
  transition: transform 180ms ease, filter 180ms ease;
}

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

.striphours-viewers {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  font-size: 13px;
  font-weight: 800;
}

.striphours-card-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 54px 14px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
}

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

.striphours-card-info strong {
  font-size: 18px;
  line-height: 1.1;
}

.striphours-card-info small {
  color: #dad4ea;
  font-size: 12px;
}

.striphours-card-stats {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 10px;
  transform: translateY(28px);
}

.striphours-card-stats b {
  color: #eee8ff;
  font-size: 11px;
}

.striphours-scroll-sentinel {
  min-height: 1px;
}

.striphours-shell .seo-copy {
  max-width: none;
  margin: 32px 0 0;
  padding: 0;
  border: 0;
  color: #d9d1f4;
  background: transparent;
  font-size: 15px;
}

.striphours-shell .seo-copy p {
  max-width: 920px;
}

.striphours-room,
.striphours-profile-area {
  margin-top: 0;
}

@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;
  }

  .bongacamsv1-topbar {
    position: static;
    grid-template-columns: 34px minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 8px 10px;
  }

  .bongacamsv1-live-count,
  .bongacamsv1-login {
    display: none;
  }

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

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

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

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

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

  .bongacamsv1-sidebar h2 {
    display: none;
  }

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

  .bongacamsv1-tabs {
    position: static;
    margin: 0 -10px 12px;
    padding: 0 10px;
  }

  .bongacamsv1-image-toggle {
    margin-left: 0;
  }

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

@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;
  }

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

  .bongacamsv1-signup {
    grid-column: 1 / -1;
  }

  .bongacamsv1-quick-search {
    grid-template-columns: 1fr;
  }

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

  .bongacamsv1-heading h1 {
    font-size: 21px;
  }
}

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

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

  .striphours-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 10px 14px;
  }

  .striphours-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .striphours-nav a {
    min-height: 38px;
  }

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

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

  .bongacamsv1-topbar {
    grid-template-columns: 36px minmax(150px, auto) auto minmax(180px, 1fr) auto;
  }

  .bongacamsv1-login {
    display: none;
  }
}

@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;
  }

  .striphours-topbar {
    grid-template-columns: 1fr;
  }

  .striphours-live-count {
    display: none;
  }

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

  .striphours-card-info strong {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .bongacamsv1-topbar {
    position: static;
    grid-template-columns: 34px minmax(0, 1fr) auto auto;
  }
}

@media (max-width: 560px) {
  .bongacamsv1-topbar {
    grid-template-columns: 34px minmax(0, 1fr);
  }
}
