* {
  box-sizing: border-box;
}

:root {
  --bg: #050507;
  --panel: #101014;
  --panel-soft: #15151a;
  --border: rgba(255,255,255,.09);
  --text: #f8fafc;
  --soft: #c4c7cf;
  --muted: #858b97;
  --red: #ff304d;
  --orange: #ff7848;
  --gold: #ffc653;
  --green: #27df71;
  --sidebar-width: 218px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(255,81,38,.13),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      #0c0c10 0%,
      #050507 55%,
      #020203 100%
    );
  font-family:
    Arial,
    Helvetica,
    sans-serif;
}

a {
  color: inherit;
}


/* ============================================================
   PAGE
   ============================================================ */

.site-shell {
  display: grid;
  grid-template-columns:
    var(--sidebar-width)
    minmax(0,1fr);
  min-height: 100vh;
}


/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 18px 12px 30px;
  background:
    linear-gradient(
      180deg,
      #101014,
      #070709
    );
  border-right: 1px solid var(--border);
}

.brand {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: -.045em;
}

.brand span {
  color: #fff;
}

.brand strong {
  color: var(--orange);
}

.side-nav,
.category-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.side-nav {
  margin-bottom: 22px;
}

.side-nav a,
.category-nav a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 9px;
  color: #dfe3e9;
  font-size: .78rem;
  font-weight: 800;
  border: 1px solid transparent;
}

.side-nav a:hover,
.category-nav a:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,120,72,.22);
  color: #fff;
}

.sidebar-heading {
  margin: 14px 8px 8px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.more-categories {
  margin-top: 14px;
}

.more-categories summary {
  cursor: pointer;
  list-style: none;
  padding: 8px 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.035);
  border-radius: 9px;
  font-size: .78rem;
  font-weight: 900;
}

.more-categories summary::-webkit-details-marker {
  display: none;
}

.more-categories summary::before {
  content: "▾ ";
  color: var(--gold);
}

.category-nav-more {
  margin-top: 7px;
  padding-left: 5px;
}

.sidebar-card {
  margin-top: 22px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,120,72,.18);
  background:
    linear-gradient(
      145deg,
      rgba(255,48,77,.10),
      rgba(255,198,83,.04)
    );
}

.sidebar-card strong {
  font-size: .83rem;
}

.sidebar-card p {
  margin: 7px 0 12px;
  color: var(--soft);
  font-size: .72rem;
  line-height: 1.45;
}

.sidebar-button {
  display: inline-block;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,198,83,.32);
  color: var(--gold);
  font-size: .69rem;
  font-weight: 900;
}


/* ============================================================
   MAIN
   ============================================================ */

.main-content {
  min-width: 0;
  padding:
    12px
    14px
    32px;
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);

  background:
    linear-gradient(
      90deg,
      rgba(2,2,4,.94) 0%,
      rgba(2,2,4,.72) 27%,
      rgba(2,2,4,.18) 63%,
      rgba(2,2,4,.28) 100%
    ),
    url("/static/img/hero/moneyslaveherov1.png");

  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(0,0,0,.34)
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(640px, 62%);
  padding: 38px 34px 40px;
}

.hero-eyebrow {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
  margin-bottom: 10px;
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(
    2rem,
    4vw,
    3.8rem
  );
  line-height: .98;
  letter-spacing: -.055em;
  text-shadow:
    0 3px 20px rgba(0,0,0,.8);
}

.hero p {
  max-width: 550px;
  margin: 17px 0 0;
  color: #e0e2e7;
  font-size: 1rem;
  line-height: 1.55;
  text-shadow:
    0 2px 10px rgba(0,0,0,.85);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 23px;
}

.hero-primary {
  display: inline-flex;
  text-decoration: none;
  padding: 11px 17px;
  border-radius: 9px;
  color: #050507;
  font-size: .83rem;
  font-weight: 950;
  background:
    linear-gradient(
      135deg,
      var(--orange),
      var(--gold)
    );
  box-shadow:
    0 8px 30px
    rgba(255,94,48,.22);
}

.hero-live-count {
  color: #d7dae0;
  font-size: .82rem;
}

.hero-live-count strong {
  color: #fff;
}


/* ============================================================
   TRUST
   ============================================================ */

.trust-row {
  display: grid;
  grid-template-columns:
    repeat(4,minmax(0,1fr));
  gap: 8px;
  margin: 11px 0;
}

.trust-item {
  padding: 12px 14px;
  border-radius: 11px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: .88rem;
}

.trust-item span {
  color: var(--muted);
  font-size: .7rem;
}


/* ============================================================
   MODE 3 CONTENT
   ============================================================ */

.cms-content {
  margin: 16px 0;
  padding: 18px 20px;
  border-radius: 13px;
  border: 1px solid var(--border);
  background:
    rgba(255,255,255,.025);
  color: var(--soft);
  line-height: 1.65;
}

.cms-content h1,
.cms-content h2,
.cms-content h3 {
  color: #fff;
}

.cms-content a {
  color: var(--gold);
}

.homepage-seo-footer {
  margin-top: 24px;
}


/* ============================================================
   MODEL GRID
   ============================================================ */

.models-section {
  margin-top: 17px;
}

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

.section-kicker {
  color: var(--orange);
  font-size: .65rem;
  font-weight: 950;
  letter-spacing: .13em;
}

.section-heading h2 {
  margin: 4px 0 0;
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.section-count {
  color: var(--muted);
  font-size: .76rem;
}

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

.model-card {
  overflow: hidden;
  border-radius: 12px;
  background: var(--panel);
  border:
    1px solid
    rgba(255,255,255,.055);
  transition:
    transform .16s ease,
    border-color .16s ease;
}

.model-card:hover {
  transform: translateY(-2px);
  border-color:
    rgba(255,120,72,.34);
}

.model-card > a {
  display: block;
  text-decoration: none;
}

.model-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0a0a0d;
}

.model-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform .22s ease;
}

.model-card:hover img {
  transform: scale(1.025);
}

.model-image-gradient {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background:
    linear-gradient(
      transparent,
      rgba(0,0,0,.72)
    );
}

.model-badge,
.model-status {
  position: absolute;
  z-index: 3;
  font-size: .61rem;
  font-weight: 950;
  border-radius: 6px;
}

.model-badge {
  top: 7px;
  padding: 4px 6px;
  color: #fff;
  background: rgba(0,0,0,.78);
}

.badge-hd {
  left: 7px;
}

.badge-new {
  right: 7px;
  color: #111;
  background: var(--gold);
}

.model-status {
  bottom: 8px;
  left: 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  text-shadow:
    0 2px 8px #000;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 10px
    rgba(39,223,113,.8);
}

.model-info {
  padding: 10px 11px 12px;
}

.model-name {
  overflow: hidden;
  color: #fff;
  font-size: .92rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model-meta {
  display: flex;
  gap: 6px;
  min-height: 17px;
  margin-top: 4px;
  color: var(--muted);
  font-size: .7rem;
}

.watching {
  margin-top: 5px;
  color: #b8bcc5;
  font-size: .7rem;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  padding: 25px 4px 5px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .72rem;
}

.footer-brand {
  color: #d2d5dc;
  font-weight: 900;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1050px) {

  :root {
    --sidebar-width: 190px;
  }

  .hero {
    min-height: 280px;
  }

  .hero-content {
    width: 68%;
  }

}


@media (max-width: 800px) {

  .site-shell {
    display: block;
  }

  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
    padding: 12px;
    border-right: 0;
    border-bottom:
      1px solid var(--border);
  }

  .brand {
    margin-bottom: 10px;
  }

  .side-nav {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }

  .sidebar-heading,
  .category-nav-top,
  .more-categories,
  .sidebar-card {
    display: none;
  }

  .main-content {
    padding: 8px;
  }

  .hero {
    min-height: 250px;
    background-position: center;
  }

  .hero-content {
    width: 78%;
    padding: 25px 19px;
  }

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

}


@media (max-width: 520px) {

  .hero {
    min-height: 225px;
  }

  .hero-content {
    width: 88%;
    padding: 21px 16px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: .82rem;
  }

  .hero-primary {
    padding: 9px 12px;
  }

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

  .model-info {
    padding: 8px;
  }

  .model-name {
    font-size: .79rem;
  }

  .trust-row {
    gap: 6px;
  }

  .trust-item {
    padding: 9px;
  }

  .site-footer {
    flex-direction: column;
    gap: 5px;
  }

}


/* ============================================================
   LCM HOMEPAGE LAYOUT — COMPACT V4
   LCM ONLY
   ============================================================ */


/* ---------- MAIN CONTENT ---------- */

.main-content {
  min-width: 0;
  padding:
    10px
    12px
    32px;
}


/* ---------- HERO ---------- */

.hero {
  min-height: 0 !important;
  height: 245px !important;

  border-radius: 14px;

  background:
    linear-gradient(
      90deg,
      rgba(2,2,4,.91) 0%,
      rgba(2,2,4,.73) 22%,
      rgba(2,2,4,.31) 43%,
      rgba(2,2,4,.06) 65%,
      rgba(2,2,4,.10) 100%
    ),
    url("/static/img/hero/moneyslaveherov1.png");

  background-size: cover;
  background-position: center center;
}


/* keep content compact like CH / AR */
.hero-content {
  width: min(540px, 52%);
  padding: 25px 28px 22px;
}


.hero-eyebrow {
  margin-bottom: 7px;
  font-size: .66rem;
  letter-spacing: .15em;
}


.hero h1 {
  max-width: 500px;

  font-size: clamp(
    2rem,
    3.25vw,
    3rem
  );

  line-height: .96;
}


.hero p {
  max-width: 470px;

  margin-top: 11px;

  font-size: .88rem;
  line-height: 1.4;
}


.hero-actions {
  gap: 13px;
  margin-top: 16px;
}


.hero-primary {
  padding: 9px 15px;

  font-size: .78rem;
  border-radius: 8px;
}


.hero-live-count {
  font-size: .76rem;
}


/* ---------- TRUST STRIP ---------- */

.trust-row {
  gap: 6px;
  margin: 7px 0 8px;
}


.trust-item {
  min-height: 48px;

  padding: 8px 12px;

  border-radius: 9px;
}


.trust-item strong {
  font-size: .82rem;
}


.trust-item span {
  font-size: .65rem;
}


/* ---------- MODEL SECTION ---------- */

.models-section {
  margin-top: 9px;
}


.section-heading {
  margin-bottom: 8px;
}


.section-kicker {
  font-size: .61rem;
}


.section-heading h2 {
  margin-top: 2px;
  font-size: 1.18rem;
}


/* ---------- MODEL GRID ---------- */

/*
   Deliberate columns instead of auto-fill.
   Keeps every row visually aligned like the established sites.
*/

.grid {
  display: grid !important;

  grid-template-columns:
    repeat(6, minmax(0, 1fr)) !important;

  gap: 8px !important;

  align-items: start;
}


.model-card {
  min-width: 0;
  border-radius: 11px;
}


/*
   Chaturbate source thumbnails are 4:3.
   Keep that natural ratio; don't make the card artificially tall.
*/
.model-image-wrap {
  aspect-ratio: 4 / 3 !important;
}


.model-info {
  padding: 9px 10px 10px;
}


.model-name {
  font-size: .88rem;
}


.model-meta,
.watching {
  font-size: .68rem;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */


/* large laptop / narrower desktop */
@media (max-width: 1320px) {

  .grid {
    grid-template-columns:
      repeat(5, minmax(0, 1fr)) !important;
  }

}


/* tablet landscape */
@media (max-width: 1050px) {

  .hero {
    height: 225px !important;
    min-height: 0 !important;
  }

  .hero-content {
    width: min(500px, 60%);
    padding: 22px 24px;
  }

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

}


/* tablet / mobile navigation layout */
@media (max-width: 800px) {

  .hero {
    height: 235px !important;
    min-height: 0 !important;

    background-position: center center;
  }

  .hero-content {
    width: 70%;
    padding: 22px;
  }

  .hero h1 {
    font-size: clamp(
      1.75rem,
      7vw,
      2.45rem
    );
  }

  .hero p {
    font-size: .82rem;
  }

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

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

}


/* phones */
@media (max-width: 520px) {

  .main-content {
    padding:
      7px
      7px
      24px;
  }

  .hero {
    height: 210px !important;
    min-height: 0 !important;
  }

  .hero-content {
    width: 78%;
    padding: 18px 16px;
  }

  .hero-eyebrow {
    font-size: .56rem;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero p {
    margin-top: 8px;
    font-size: .72rem;
  }

  .hero-actions {
    margin-top: 11px;
  }

  .hero-primary {
    padding: 8px 11px;
    font-size: .7rem;
  }

  .hero-live-count {
    font-size: .67rem;
  }

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

    gap: 6px !important;
  }

}




/* ============================================================
   LCM HOMEPAGE — FINAL ALIGNMENT V5
   LCM ONLY
   ============================================================ */


/* ------------------------------------------------------------
   HERO — SHORTER / BANNER-LIKE
   ------------------------------------------------------------ */

.hero {
  height: 235px !important;
  min-height: 0 !important;

  background-size: cover !important;
  background-position: center 48% !important;

  border-radius: 14px !important;
}


.hero-content {
  width: min(570px, 48%) !important;

  padding:
    23px
    30px
    22px !important;
}


.hero-eyebrow {
  margin-bottom: 7px !important;

  font-size: .64rem !important;
}


.hero h1 {
  max-width: 500px !important;

  font-size: clamp(
    2rem,
    3vw,
    3.05rem
  ) !important;

  line-height: .96 !important;
}


.hero p {
  margin-top: 11px !important;

  max-width: 500px !important;

  font-size: .88rem !important;
  line-height: 1.35 !important;
}


.hero-actions {
  margin-top: 14px !important;
  gap: 12px !important;
}


.hero-primary {
  padding: 9px 15px !important;

  font-size: .77rem !important;
}


/* ------------------------------------------------------------
   TRUST BAR
   DESIRED:
   | ● 8566 Live Models | 24/7 Live Streaming |
   | Global Performers | Live Interactive Shows |
   ------------------------------------------------------------ */

.trust-row {
  display: grid !important;

  grid-template-columns:
    repeat(4, minmax(0, 1fr)) !important;

  gap: 0 !important;

  margin:
    7px
    0
    10px !important;

  border:
    1px solid
    rgba(255,255,255,.09);

  border-radius: 10px;

  overflow: hidden;

  background:
    rgba(255,255,255,.018);
}


.trust-item {
  min-height: 38px !important;

  padding:
    7px
    12px !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;

  display: flex !important;
  align-items: center !important;
  gap: 5px !important;

  white-space: nowrap;
}


.trust-item + .trust-item {
  border-left:
    1px solid
    rgba(255,255,255,.075) !important;
}


.trust-item strong {
  display: inline !important;

  font-size: .78rem !important;
  line-height: 1 !important;
}


.trust-item span {
  display: inline !important;

  font-size: .70rem !important;
  line-height: 1 !important;

  color: var(--muted);
}


.trust-live-dot {
  display: inline-block !important;

  width: 8px;
  height: 8px;

  flex: 0 0 8px;

  border-radius: 50%;

  background: #26e86f;

  box-shadow:
    0 0 0 3px rgba(38,232,111,.10),
    0 0 8px rgba(38,232,111,.55);
}


/* ------------------------------------------------------------
   MODELS HEADER
   DESIRED:
   | LIVE NOW | Models Online Now |          | 8566 live |
   ------------------------------------------------------------ */

.models-section {
  margin-top: 7px !important;
}


.section-heading {
  display: grid !important;

  grid-template-columns:
    auto
    auto
    1fr
    auto !important;

  align-items: center !important;

  column-gap: 9px !important;

  margin-bottom: 8px !important;

  min-height: 28px;
}


.section-heading > div:first-child {
  display: contents !important;
}


.section-kicker {
  grid-column: 1;

  margin: 0 !important;

  font-size: .60rem !important;
  line-height: 1 !important;
}


.section-heading h2 {
  grid-column: 2;

  margin: 0 !important;

  font-size: 1.17rem !important;
  line-height: 1 !important;

  white-space: nowrap;
}


.section-count {
  grid-column: 4;

  margin: 0 !important;

  font-size: .72rem !important;
  line-height: 1 !important;

  white-space: nowrap;

  text-align: right;
}


/* ------------------------------------------------------------
   MODEL GRID — 5 WIDE DESKTOP
   ------------------------------------------------------------ */

.grid {
  display: grid !important;

  grid-template-columns:
    repeat(5, minmax(0, 1fr)) !important;

  gap: 8px !important;

  align-items: start;
}


.model-card {
  min-width: 0;

  border-radius: 10px !important;
}


.model-image-wrap {
  aspect-ratio: 4 / 3 !important;
}


.model-info {
  padding:
    8px
    9px
    9px !important;
}


.model-name {
  font-size: .86rem !important;
}


.model-meta,
.watching {
  font-size: .66rem !important;
}


/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */

@media (max-width: 1180px) {

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

}


@media (max-width: 900px) {

  .hero {
    height: 220px !important;
  }


  .hero-content {
    width: 62% !important;

    padding:
      20px
      22px !important;
  }


  .trust-row {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
  }


  .trust-item:nth-child(3) {
    border-left: 0 !important;
    border-top:
      1px solid
      rgba(255,255,255,.075) !important;
  }


  .trust-item:nth-child(4) {
    border-top:
      1px solid
      rgba(255,255,255,.075) !important;
  }


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

}


@media (max-width: 620px) {

  .hero {
    height: 205px !important;

    background-position:
      center center !important;
  }


  .hero-content {
    width: 76% !important;

    padding:
      17px
      15px !important;
  }


  .hero h1 {
    font-size:
      1.65rem !important;
  }


  .hero p {
    font-size:
      .72rem !important;
  }


  .section-heading {
    grid-template-columns:
      auto
      auto
      1fr
      auto !important;

    column-gap:
      6px !important;
  }


  .section-heading h2 {
    font-size:
      .98rem !important;
  }


  .section-kicker {
    font-size:
      .53rem !important;
  }


  .section-count {
    font-size:
      .62rem !important;
  }


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

    gap:
      6px !important;
  }

}



/* ============================================================
   LCM HERO V6
   Compact banner + artwork left + dark fade + content right
   LCM ONLY
   ============================================================ */

.hero {
  position: relative;

  height: 230px !important;
  min-height: 0 !important;

  overflow: hidden;

  border-radius: 16px;

  background-color: #050506;

  background-image:
    linear-gradient(
      90deg,
      rgba(5,5,6,0) 0%,
      rgba(5,5,6,0) 43%,
      rgba(5,5,6,.18) 50%,
      rgba(5,5,6,.55) 57%,
      rgba(5,5,6,.84) 63%,
      rgba(5,5,6,.97) 69%,
      #050506 76%,
      #050506 100%
    ),
    url("/static/img/hero/moneyslaveherov1.png");

  background-size:
    100% 100%,
    72% auto;

  background-position:
    center,
    left center;

  background-repeat:
    no-repeat,
    no-repeat;
}


/*
   Remove the old bottom-heavy overlay.
   The horizontal fade above now controls contrast.
*/
.hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.05) 0%,
      rgba(0,0,0,.03) 70%,
      rgba(0,0,0,.22) 100%
    ) !important;
}


/*
   Content lives on the right like DE / AR.
*/
.hero-content {
  position: relative;
  z-index: 2;

  width: 40% !important;
  max-width: 520px;

  margin-left: auto !important;

  padding:
    22px
    26px
    20px
    18px !important;
}


.hero-eyebrow {
  margin-bottom: 6px;

  font-size: .63rem !important;
  line-height: 1;

  letter-spacing: .14em;
}


.hero h1 {
  margin: 0;

  max-width: 500px;

  font-size:
    clamp(
      1.75rem,
      2.65vw,
      2.65rem
    ) !important;

  line-height: .98 !important;

  letter-spacing: -.045em;
}


.hero p {
  max-width: 480px;

  margin:
    10px
    0
    0 !important;

  font-size: .78rem !important;
  line-height: 1.4 !important;

  color: #dedfe4;
}


.hero-actions {
  margin-top: 12px !important;

  gap: 12px !important;
}


.hero-primary {
  padding:
    8px
    13px !important;

  font-size: .72rem !important;
}


.hero-live-count {
  font-size: .7rem !important;
}


/* ============================================================
   RESPONSIVE HERO
   ============================================================ */

@media (max-width: 1100px) {

  .hero {
    height: 220px !important;

    background-size:
      100% 100%,
      76% auto;
  }

  .hero-content {
    width: 43% !important;

    padding:
      20px
      20px
      18px
      16px !important;
  }

}


@media (max-width: 800px) {

  .hero {
    height: 225px !important;

    background-size:
      cover,
      cover;

    background-position:
      center,
      center;
  }

  .hero-content {
    width: 62% !important;

    margin-left: 0 !important;

    padding:
      20px
      18px !important;
  }

}


@media (max-width: 520px) {

  .hero {
    height: 205px !important;
  }

  .hero-content {
    width: 72% !important;
  }

  .hero h1 {
    font-size: 1.55rem !important;
  }

  .hero p {
    font-size: .68rem !important;
  }

}



/* ============================================================
   LCM HERO V6
   Compact banner + artwork left + dark fade + content right
   LCM ONLY
   ============================================================ */

.hero {
  position: relative;

  height: 230px !important;
  min-height: 0 !important;

  overflow: hidden;

  border-radius: 16px;

  background-color: #050506;

  background-image:
    linear-gradient(
      90deg,
      rgba(5,5,6,0) 0%,
      rgba(5,5,6,0) 43%,
      rgba(5,5,6,.18) 50%,
      rgba(5,5,6,.55) 57%,
      rgba(5,5,6,.84) 63%,
      rgba(5,5,6,.97) 69%,
      #050506 76%,
      #050506 100%
    ),
    url("/static/img/hero/moneyslaveherov1.png");

  background-size:
    100% 100%,
    72% auto;

  background-position:
    center,
    left center;

  background-repeat:
    no-repeat,
    no-repeat;
}


/*
   Remove the old bottom-heavy overlay.
   The horizontal fade above now controls contrast.
*/
.hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.05) 0%,
      rgba(0,0,0,.03) 70%,
      rgba(0,0,0,.22) 100%
    ) !important;
}


/*
   Content lives on the right like DE / AR.
*/
.hero-content {
  position: relative;
  z-index: 2;

  width: 40% !important;
  max-width: 520px;

  margin-left: auto !important;

  padding:
    22px
    26px
    20px
    18px !important;
}


.hero-eyebrow {
  margin-bottom: 6px;

  font-size: .63rem !important;
  line-height: 1;

  letter-spacing: .14em;
}


.hero h1 {
  margin: 0;

  max-width: 500px;

  font-size:
    clamp(
      1.75rem,
      2.65vw,
      2.65rem
    ) !important;

  line-height: .98 !important;

  letter-spacing: -.045em;
}


.hero p {
  max-width: 480px;

  margin:
    10px
    0
    0 !important;

  font-size: .78rem !important;
  line-height: 1.4 !important;

  color: #dedfe4;
}


.hero-actions {
  margin-top: 12px !important;

  gap: 12px !important;
}


.hero-primary {
  padding:
    8px
    13px !important;

  font-size: .72rem !important;
}


.hero-live-count {
  font-size: .7rem !important;
}


/* ============================================================
   RESPONSIVE HERO
   ============================================================ */

@media (max-width: 1100px) {

  .hero {
    height: 220px !important;

    background-size:
      100% 100%,
      76% auto;
  }

  .hero-content {
    width: 43% !important;

    padding:
      20px
      20px
      18px
      16px !important;
  }

}


@media (max-width: 800px) {

  .hero {
    height: 225px !important;

    background-size:
      cover,
      cover;

    background-position:
      center,
      center;
  }

  .hero-content {
    width: 62% !important;

    margin-left: 0 !important;

    padding:
      20px
      18px !important;
  }

}


@media (max-width: 520px) {

  .hero {
    height: 205px !important;
  }

  .hero-content {
    width: 72% !important;
  }

  .hero h1 {
    font-size: 1.55rem !important;
  }

  .hero p {
    font-size: .68rem !important;
  }

}



/* ============================================================
   LCM HERO V7
   Zoom artwork OUT inside existing compact hero.
   Preserve right-side content and center/right fade.
   ============================================================ */

@media (min-width: 1101px) {

  .hero {
    height: 230px !important;
    min-height: 0 !important;

    /*
       Layer 1 = fade
       Layer 2 = artwork

       Size artwork by HEIGHT rather than width.
       100% auto displays the full image height inside the hero
       instead of effectively zooming/cropping it.
    */
    background-size:
      100% 100%,
      auto 100% !important;

    background-position:
      center center,
      left center !important;

    background-repeat:
      no-repeat,
      no-repeat !important;

    background-color: #050507;
  }

  .hero-content {
    width: 40% !important;
    max-width: 520px !important;

    margin-left: auto !important;

    padding:
      22px
      26px
      20px
      18px !important;
  }

}


/* Slightly narrower desktop / laptop */
@media (min-width: 801px) and (max-width: 1100px) {

  .hero {
    height: 220px !important;
    min-height: 0 !important;

    background-size:
      100% 100%,
      auto 100% !important;

    background-position:
      center center,
      left center !important;

    background-repeat:
      no-repeat,
      no-repeat !important;
  }

}




/* ============================================================
   LCM HERO V8
   Preserve V7 artwork scale.
   Extend image farther right and blend naturally into copy area.
   ============================================================ */

@media (min-width: 1101px) {

  .hero {
    height: 230px !important;
    min-height: 0 !important;

    background:
      linear-gradient(
        90deg,
        rgba(5,5,7,0) 0%,
        rgba(5,5,7,0) 43%,
        rgba(5,5,7,.10) 50%,
        rgba(5,5,7,.42) 58%,
        rgba(5,5,7,.78) 66%,
        rgba(5,5,7,.96) 74%,
        rgba(5,5,7,1) 82%,
        rgba(5,5,7,1) 100%
      ),
      url("/static/img/hero/moneyslaveherov1.png") !important;

    /*
       Keep image fully visible vertically,
       but allow it to occupy more horizontal space.
    */
    background-size:
      100% 100%,
      auto 108% !important;

    background-position:
      center center,
      -6px center !important;

    background-repeat:
      no-repeat,
      no-repeat !important;

    background-color: #050507 !important;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.02) 0%,
        rgba(0,0,0,.01) 72%,
        rgba(0,0,0,.18) 100%
      ) !important;
  }

  .hero-content {
    width: 39% !important;
    max-width: 500px !important;

    margin-left: auto !important;

    padding:
      20px
      24px
      18px
      16px !important;
  }

}


/* laptop */
@media (min-width: 801px) and (max-width: 1100px) {

  .hero {
    background:
      linear-gradient(
        90deg,
        rgba(5,5,7,0) 0%,
        rgba(5,5,7,0) 40%,
        rgba(5,5,7,.18) 50%,
        rgba(5,5,7,.68) 63%,
        rgba(5,5,7,.96) 76%,
        rgba(5,5,7,1) 100%
      ),
      url("/static/img/hero/moneyslaveherov1.png") !important;

    background-size:
      100% 100%,
      auto 106% !important;

    background-position:
      center center,
      left center !important;
  }

}




/* ============================================================
   LCM HERO V8
   Preserve V7 artwork scale.
   Extend image farther right and blend naturally into copy area.
   ============================================================ */

@media (min-width: 1101px) {

  .hero {
    height: 230px !important;
    min-height: 0 !important;

    background:
      linear-gradient(
        90deg,
        rgba(5,5,7,0) 0%,
        rgba(5,5,7,0) 43%,
        rgba(5,5,7,.10) 50%,
        rgba(5,5,7,.42) 58%,
        rgba(5,5,7,.78) 66%,
        rgba(5,5,7,.96) 74%,
        rgba(5,5,7,1) 82%,
        rgba(5,5,7,1) 100%
      ),
      url("/static/img/hero/moneyslaveherov1.png") !important;

    /*
       Keep image fully visible vertically,
       but allow it to occupy more horizontal space.
    */
    background-size:
      100% 100%,
      auto 108% !important;

    background-position:
      center center,
      -6px center !important;

    background-repeat:
      no-repeat,
      no-repeat !important;

    background-color: #050507 !important;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.02) 0%,
        rgba(0,0,0,.01) 72%,
        rgba(0,0,0,.18) 100%
      ) !important;
  }

  .hero-content {
    width: 39% !important;
    max-width: 500px !important;

    margin-left: auto !important;

    padding:
      20px
      24px
      18px
      16px !important;
  }

}


/* laptop */
@media (min-width: 801px) and (max-width: 1100px) {

  .hero {
    background:
      linear-gradient(
        90deg,
        rgba(5,5,7,0) 0%,
        rgba(5,5,7,0) 40%,
        rgba(5,5,7,.18) 50%,
        rgba(5,5,7,.68) 63%,
        rgba(5,5,7,.96) 76%,
        rgba(5,5,7,1) 100%
      ),
      url("/static/img/hero/moneyslaveherov1.png") !important;

    background-size:
      100% 100%,
      auto 106% !important;

    background-position:
      center center,
      left center !important;
  }

}




/* ============================================================
   LCM HERO V9
   Increase artwork scale without changing hero dimensions.
   Keep right-side copy and V8 fade/composition.
   ============================================================ */

@media (min-width: 1101px) {

  .hero {
    height: 230px !important;
    min-height: 0 !important;

    /*
       Layer 1 = existing fade
       Layer 2 = hero artwork

       125% height gives the artwork more visual weight
       without returning to the heavily cropped/zoomed version.
    */
    background-size:
      100% 100%,
      auto 125% !important;

    background-position:
      center center,
      left center !important;

    background-repeat:
      no-repeat,
      no-repeat !important;
  }

}


/* Laptop */
@media (min-width: 801px) and (max-width: 1100px) {

  .hero {
    background-size:
      100% 100%,
      auto 120% !important;

    background-position:
      center center,
      left center !important;
  }

}


/* ============================================================
   LCM HERO V10
   Larger artwork scale
   ============================================================ */

@media (min-width: 1101px) {

  .hero {
    background-size:
      100% 100%,
      auto 150% !important;

    background-position:
      center center,
      left center !important;
  }

}

@media (min-width: 801px) and (max-width: 1100px) {

  .hero {
    background-size:
      100% 100%,
      auto 140% !important;

    background-position:
      center center,
      left center !important;
  }

}



/* ============================================================
   LCM HERO V11
   Slightly reduce V10 zoom while widening artwork toward copy.
   Preserve 230px hero, right-side copy and fade.
   ============================================================ */

@media (min-width: 1101px) {

  .hero {
    height: 230px !important;
    min-height: 0 !important;

    /*
       Layer 1 = fade
       Layer 2 = artwork

       V10 was auto 150%.
       V11 slightly reduces vertical zoom while giving the
       artwork more horizontal reach toward the copy.
    */
    background-size:
      100% 100%,
      68% 140% !important;

    background-position:
      center center,
      left center !important;

    background-repeat:
      no-repeat,
      no-repeat !important;
  }

}


/* Laptop */
@media (min-width: 801px) and (max-width: 1100px) {

  .hero {
    background-size:
      100% 100%,
      70% 135% !important;

    background-position:
      center center,
      left center !important;
  }

}



/* ============================================================
   LCM HERO V12
   Slightly less zoom and slightly less horizontal stretch.
   ============================================================ */

@media (min-width: 1101px) {

  .hero {
    height: 230px !important;
    min-height: 0 !important;

    background-size:
      100% 100%,
      67% 135% !important;

    background-position:
      center center,
      left center !important;

    background-repeat:
      no-repeat,
      no-repeat !important;
  }

}


/* Laptop */
@media (min-width: 801px) and (max-width: 1100px) {

  .hero {
    background-size:
      100% 100%,
      68% 130% !important;

    background-position:
      center center,
      left center !important;
  }

}


/*
   Heading row is gone, so tighten transition
   from trust bar directly into model grid.
*/
.models-section {
  margin-top: 10px !important;
}



/* ============================================================
   LCM HERO V13
   Slightly reduce horizontal artwork stretch from V12.
   Keep vertical scale, hero height, fade and right-side copy.
   ============================================================ */

@media (min-width: 1101px) {

  .hero {
    height: 230px !important;
    min-height: 0 !important;

    background-size:
      100% 100%,
      65% 135% !important;

    background-position:
      center center,
      left center !important;

    background-repeat:
      no-repeat,
      no-repeat !important;
  }

}


/* Laptop */
@media (min-width: 801px) and (max-width: 1100px) {

  .hero {
    background-size:
      100% 100%,
      68% 132% !important;

    background-position:
      center center,
      left center !important;
  }

}


/* ============================================================
   LCM HERO V14
   Final fine tune:
   preserve 65% horizontal reach,
   reduce vertical stretch slightly.
   ============================================================ */

@media (min-width: 1101px) {

  .hero {
    height: 230px !important;
    min-height: 0 !important;

    background-size:
      100% 100%,
      65% 130% !important;

    background-position:
      center center,
      left center !important;

    background-repeat:
      no-repeat,
      no-repeat !important;
  }

}



/* ============================================================
   LCM LIVE DOT MOTION
   Subtle staggered pulse across model cards.
   ============================================================ */

@keyframes lcmLivePulse {
  0% {
    transform: scale(1);
    opacity: .78;
    box-shadow:
      0 0 0 0 rgba(32,224,95,.45);
  }

  45% {
    transform: scale(1.18);
    opacity: 1;
    box-shadow:
      0 0 0 4px rgba(32,224,95,.08);
  }

  100% {
    transform: scale(1);
    opacity: .82;
    box-shadow:
      0 0 0 0 rgba(32,224,95,0);
  }
}


.live-dot {
  animation-name: lcmLivePulse;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform-origin: center;
}


/* stagger durations */
.model-card:nth-child(7n+1) .live-dot {
  animation-duration: 1.85s;
  animation-delay: -.35s;
}

.model-card:nth-child(7n+2) .live-dot {
  animation-duration: 2.25s;
  animation-delay: -1.05s;
}

.model-card:nth-child(7n+3) .live-dot {
  animation-duration: 1.65s;
  animation-delay: -.72s;
}

.model-card:nth-child(7n+4) .live-dot {
  animation-duration: 2.55s;
  animation-delay: -1.55s;
}

.model-card:nth-child(7n+5) .live-dot {
  animation-duration: 2.05s;
  animation-delay: -.18s;
}

.model-card:nth-child(7n+6) .live-dot {
  animation-duration: 1.95s;
  animation-delay: -1.25s;
}

.model-card:nth-child(7n) .live-dot {
  animation-duration: 2.35s;
  animation-delay: -.88s;
}


/* respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .live-dot {
    animation: none !important;
  }
}




/* ============================================================
   LCM MODEL CARD META ROW
   Name on first row.
   Age/country left + viewers right on second row.
   ============================================================ */

.model-info {
  padding: 9px 10px 10px !important;
}

.model-name {
  margin-bottom: 5px !important;
  font-size: .88rem !important;
  font-weight: 900;
  line-height: 1.15;
}

.model-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.model-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  color: var(--muted);
  font-size: .67rem !important;
  white-space: nowrap;
}

.watching {
  margin: 0 !important;
  color: var(--muted);
  font-size: .67rem !important;
  white-space: nowrap;
  text-align: right;
}


/* small cards / phones */
@media (max-width: 520px) {

  .model-meta-row {
    gap: 5px;
  }

  .model-meta,
  .watching {
    font-size: .61rem !important;
  }

}



/* ============================================================
   LCM HOMEPAGE INFINITE MODEL LOADER
   ============================================================ */

.homepage-model-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 38px;
  padding: 10px 0;

  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
}


.homepage-loader-dot {
  width: 7px;
  height: 7px;

  flex: 0 0 7px;

  border-radius: 50%;
  background: #20e05f;

  animation:
    lcmLivePulse
    1.7s
    ease-in-out
    infinite;
}


.homepage-model-sentinel {
  width: 100%;
  height: 1px;
  pointer-events: none;
}



/* ============================================================
   LCM CATEGORY PAGE V1
   ============================================================ */

.category-main {
  min-width: 0;
}


.category-header {
  margin-bottom: 12px;
  padding: 22px 24px;

  border-radius: 16px;

  border:
    1px solid
    rgba(255,255,255,.08);

  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(255,173,72,.10),
      transparent 30%
    ),
    radial-gradient(
      circle at 5% 0%,
      rgba(255,70,48,.12),
      transparent 32%
    ),
    #0b0b0e;
}


.category-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;

  margin-bottom: 14px;

  color: var(--muted);
  font-size: .69rem;
  font-weight: 750;
}


.category-breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
}


.category-kicker {
  margin-bottom: 6px;

  color: var(--orange);

  font-size: .62rem;
  font-weight: 950;

  letter-spacing: .14em;
}


.category-header h1 {
  margin: 0;

  color: #fff;

  font-size:
    clamp(
      1.8rem,
      3.25vw,
      3rem
    );

  line-height: 1;

  letter-spacing: -.045em;
}


.category-subtitle {
  max-width: 920px;

  margin:
    11px
    0
    0;

  color: #cfd2d9;

  font-size: .88rem;
  line-height: 1.55;
}


.category-live-count {
  display: flex;
  align-items: center;
  gap: 7px;

  margin-top: 15px;

  color: var(--muted);
  font-size: .74rem;
}


.category-live-count strong {
  color: #fff;
}


.category-seo-block {
  margin: 12px 0;

  padding: 20px 22px;

  border:
    1px solid
    rgba(255,255,255,.075);

  border-radius: 14px;

  background:
    rgba(255,255,255,.022);

  color: var(--soft);

  font-size: .88rem;
  line-height: 1.7;
}


.category-seo-block h1,
.category-seo-block h2,
.category-seo-block h3 {
  color: #fff;
}


.category-seo-block h2:first-child,
.category-seo-block h3:first-child {
  margin-top: 0;
}


.category-seo-block a {
  color: var(--gold);
}


.category-grid-heading {
  display: flex;

  justify-content: space-between;
  align-items: end;

  gap: 14px;

  margin:
    16px
    0
    9px;
}


.category-grid-heading h2 {
  margin:
    3px
    0
    0;

  font-size: 1.2rem;

  letter-spacing: -.03em;
}


.category-models-section {
  margin-top: 10px;
}


.category-empty {
  padding: 28px;

  text-align: center;

  border:
    1px solid
    rgba(255,255,255,.08);

  border-radius: 14px;

  color: var(--muted);

  background:
    rgba(255,255,255,.025);
}


.category-empty a {
  display: block;

  margin-top: 8px;

  color: var(--gold);
}


.category-related {
  margin-top: 20px;

  padding: 20px;

  border:
    1px solid
    rgba(255,255,255,.075);

  border-radius: 14px;

  background:
    rgba(255,255,255,.022);
}


.category-related h2 {
  margin:
    0
    0
    14px;

  font-size: 1rem;
}


.category-related-links {
  display: flex;
  flex-wrap: wrap;

  gap: 7px;
}


.category-related-links a {
  display: inline-flex;

  align-items: center;

  padding:
    7px
    10px;

  border:
    1px solid
    rgba(255,181,72,.20);

  border-radius: 999px;

  color: #d9dce2;

  background:
    rgba(255,255,255,.025);

  text-decoration: none;

  font-size: .72rem;
  font-weight: 800;
}


.category-related-links a:hover {
  color: var(--gold);

  border-color:
    rgba(255,181,72,.45);
}


.category-keyword-section {
  margin-top: 15px;

  padding: 16px 18px;

  border:
    1px solid
    rgba(255,255,255,.06);

  border-radius: 12px;

  background:
    rgba(255,255,255,.018);
}


.category-keyword-title {
  margin-bottom: 8px;

  color: #fff;

  font-size: .75rem;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: .08em;
}


.category-keyword-text {
  color: #858a94;

  font-size: .68rem;
  line-height: 1.65;

  overflow-wrap: anywhere;
}


.category-semantic-support {
  margin-top: 12px;

  color: #777c86;

  font-size: .72rem;
  line-height: 1.65;
}


/*
   Highlight current sidebar category.
*/
.category-nav a.active {
  color: #fff;

  background:
    rgba(255,111,60,.12);

  border-color:
    rgba(255,111,60,.28);
}


/*
   Category pages use same deliberate five-column desktop grid
   as homepage.
*/
.category-main .grid {
  display: grid !important;

  grid-template-columns:
    repeat(
      5,
      minmax(0,1fr)
    ) !important;

  gap: 8px !important;
}


@media (max-width: 1320px) {

  .category-main .grid {
    grid-template-columns:
      repeat(
        4,
        minmax(0,1fr)
      ) !important;
  }

}


@media (max-width: 1050px) {

  .category-main .grid {
    grid-template-columns:
      repeat(
        3,
        minmax(0,1fr)
      ) !important;
  }

}


@media (max-width: 800px) {

  .category-header {
    padding: 18px;
  }


  .category-main .grid {
    grid-template-columns:
      repeat(
        3,
        minmax(0,1fr)
      ) !important;
  }

}


@media (max-width: 520px) {

  .category-main .grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0,1fr)
      ) !important;
  }

}




/* ============================================================
   LCM MODEL CARD ACTIONS V1
   Primary affiliate CTA + secondary internal profile link
   ============================================================ */

.model-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 8px 9px 10px;
}

.model-card-actions a {
  box-sizing: border-box;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  border-radius: 8px;
  white-space: nowrap;
}

.model-chat-button {
  border: 1px solid rgba(255, 55, 80, .85);
  color: #ff4961;
  background: rgba(255, 55, 80, .035);
  padding: 0 14px;
}

.model-chat-button:hover {
  background: rgba(255, 55, 80, .12);
  border-color: #ff4961;
}

.model-profile-button {
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.035);
  padding: 0 11px;
}

.model-profile-button:hover {
  color: #fff;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.25);
}

@media (max-width: 520px) {
  .model-card-actions {
    gap: 6px;
    padding: 7px 7px 9px;
  }

  .model-card-actions a {
    min-height: 32px;
    font-size: 11px;
  }

  .model-chat-button {
    padding-left: 8px;
    padding-right: 8px;
  }

  .model-profile-button {
    padding-left: 8px;
    padding-right: 8px;
  }
}



/* ============================================================
   LCM MODEL CARD ACTIONS V2
   Compact card footer cleanup
   ============================================================ */

.model-info {
  padding-bottom: 7px !important;
}

.model-meta-row {
  margin-top: 3px;
  gap: 8px;
}

.model-card-actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 6px !important;
  align-items: center;

  padding:
    0
    9px
    9px !important;
}

.model-card-actions a {
  min-height: 29px !important;
  height: 29px;

  border-radius: 7px !important;

  font-size: 10px !important;
  font-weight: 850 !important;
  letter-spacing: .025em;

  line-height: 1 !important;
}

.model-chat-button {
  padding:
    0
    11px !important;

  border:
    1px solid
    rgba(255, 67, 91, .72) !important;

  background:
    rgba(255, 67, 91, .025) !important;

  color: #ff526a !important;
}

.model-chat-button:hover {
  background:
    rgba(255, 67, 91, .10) !important;

  border-color:
    rgba(255, 80, 100, .95) !important;
}

.model-profile-button {
  min-width: 66px;

  padding:
    0
    9px !important;

  border:
    1px solid
    rgba(255,255,255,.10) !important;

  background:
    rgba(255,255,255,.018) !important;

  color:
    rgba(255,255,255,.65) !important;
}

.model-profile-button:hover {
  color: #fff !important;

  background:
    rgba(255,255,255,.06) !important;

  border-color:
    rgba(255,255,255,.18) !important;
}


/* tighten overall card footer */
.model-name {
  margin-bottom: 2px;
}

.watching,
.model-meta {
  line-height: 1.2;
}


/* mobile */
@media (max-width: 520px) {

  .model-card-actions {
    gap: 5px !important;

    padding:
      0
      7px
      7px !important;
  }

  .model-card-actions a {
    height: 27px;
    min-height: 27px !important;

    font-size: 9px !important;
  }

  .model-profile-button {
    min-width: 58px;
  }

}



/* ============================================================
   LCM MODEL CARD PROPORTION V3
   Restore visual balance after compact action pass.
   Keep CHAT NOW + PROFILE layout.
   ============================================================ */


/* ---------- IMAGE ---------- */

.model-image-wrap {
  width: 100% !important;
  height: auto !important;

  aspect-ratio: 4 / 3 !important;

  overflow: hidden;
}


.model-image-wrap img {
  display: block !important;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center center !important;
}


/* ---------- MODEL INFO ---------- */

.model-info {
  padding:
    9px
    10px
    8px !important;
}


.model-name {
  margin: 0 0 5px !important;

  font-size: .92rem !important;
  font-weight: 850 !important;
  line-height: 1.15 !important;

  color: #fff;
}


.model-meta-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  gap: 10px !important;

  margin-top: 0 !important;
}


.model-meta {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;

  min-width: 0;

  font-size: .72rem !important;
  line-height: 1.25 !important;

  color: rgba(255,255,255,.58) !important;
}


.watching {
  margin-left: auto;

  white-space: nowrap;

  font-size: .72rem !important;
  line-height: 1.25 !important;

  color: rgba(255,255,255,.62) !important;
}


/* ---------- ACTION ROW ---------- */

.model-card-actions {
  display: grid !important;

  grid-template-columns:
    minmax(0, 1fr)
    72px !important;

  gap: 7px !important;

  padding:
    0
    10px
    10px !important;
}


.model-card-actions a {
  height: 31px !important;
  min-height: 31px !important;

  border-radius: 7px !important;

  font-size: 10.5px !important;
  font-weight: 850 !important;

  letter-spacing: .02em;
}


.model-chat-button {
  padding:
    0
    12px !important;
}


.model-profile-button {
  width: 72px !important;
  min-width: 72px !important;

  padding:
    0
    8px !important;
}


/* ---------- MOBILE ---------- */

@media (max-width: 520px) {

  .model-info {
    padding:
      8px
      8px
      7px !important;
  }

  .model-name {
    font-size: .84rem !important;
  }

  .model-meta,
  .watching {
    font-size: .66rem !important;
  }

  .model-card-actions {
    grid-template-columns:
      minmax(0, 1fr)
      62px !important;

    gap: 5px !important;

    padding:
      0
      8px
      8px !important;
  }

  .model-card-actions a {
    height: 29px !important;
    min-height: 29px !important;

    font-size: 9.5px !important;
  }

  .model-profile-button {
    width: 62px !important;
    min-width: 62px !important;
  }

}



/* ============================================================
   LCM MODEL NAME IMAGE OVERLAY V1
   Username lower-right on image
   ============================================================ */

.model-image-wrap {
  position: relative !important;
}

.model-name-overlay {
  position: absolute;
  right: 10px;
  bottom: 8px;

  z-index: 4;

  max-width: 72%;

  color: #fff;

  font-size: .92rem;
  font-weight: 900;
  line-height: 1.05;

  text-align: right;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  text-shadow:
    0 1px 3px rgba(0,0,0,.95),
    0 2px 8px rgba(0,0,0,.85);
}


/*
   Footer now only contains:
   age/country ........ viewers
*/
.model-info {
  padding:
    7px
    10px
    6px !important;
}

.model-meta-row {
  margin: 0 !important;
}

.model-meta,
.watching {
  font-size: .72rem !important;
  line-height: 1.15 !important;
}


/* buttons stay compact */
.model-card-actions {
  padding:
    0
    10px
    8px !important;
}

.model-card-actions a {
  height: 28px !important;
  min-height: 28px !important;
}


/* MOBILE */
@media (max-width: 520px) {

  .model-name-overlay {
    right: 7px;
    bottom: 7px;

    max-width: 68%;

    font-size: .82rem;
  }

}



/* ============================================================
   LCM MODEL IMAGE RESTORE V5
   Give imagery more vertical presence again.
   Preserve footer/actions.
   ============================================================ */

@media (min-width: 1051px) {

  .model-image-wrap {
    aspect-ratio: 4 / 3 !important;

    min-height: 205px !important;
  }

}


/* wider desktop */
@media (min-width: 1350px) {

  .model-image-wrap {
    min-height: 215px !important;
  }

}


/* laptops */
@media (min-width: 801px) and (max-width: 1050px) {

  .model-image-wrap {
    min-height: 190px !important;
  }

}


/* preserve normal responsive behavior on mobile */
@media (max-width: 800px) {

  .model-image-wrap {
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
  }

}


/* keep lower card area tight */
.model-info {
  padding:
    7px
    10px
    5px !important;
}

.model-card-actions {
  padding:
    0
    10px
    8px !important;
}



/* ============================================================
   LCM CATEGORY PAGE V2
   Premium category header + cleaner content hierarchy
   ============================================================ */


/*
   seo_intro already appears in the category hero.
   Don't immediately repeat the same copy in another large box.
*/
.category-before-grid {
  display: none !important;
}


/* ---------- CATEGORY HERO ---------- */

.category-hero {
  position: relative;

  margin:
    0
    0
    16px;

  padding:
    25px
    28px
    23px;

  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,.075);

  border-radius: 16px;

  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(255,145,55,.09),
      transparent 30%
    ),
    radial-gradient(
      circle at 5% 0%,
      rgba(255,55,70,.08),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(31,12,15,.96),
      rgba(10,10,12,.98) 46%,
      rgba(14,13,11,.98)
    );
}


.category-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 7px;

  margin-bottom: 14px;

  color:
    rgba(255,255,255,.42);

  font-size: .72rem;
  font-weight: 700;
}


.category-breadcrumbs a {
  color: #f1bd53;
  text-decoration: none;
}


.category-breadcrumbs a:hover {
  color: #ffd47c;
}


.category-eyebrow,
.category-hero .section-kicker {
  display: block;

  margin-bottom: 7px;

  color: #ff7656;

  font-size: .65rem;
  font-weight: 950;

  letter-spacing: .14em;
  text-transform: uppercase;
}


.category-hero h1 {
  max-width: 900px;

  margin:
    0
    0
    11px;

  color: #fff;

  font-size:
    clamp(
      2rem,
      3.4vw,
      3.35rem
    );

  line-height: .98;

  letter-spacing: -.045em;
}


.category-hero p,
.category-hero-intro {
  max-width: 1050px;

  margin: 0;

  color:
    rgba(255,255,255,.78);

  font-size: .94rem;

  line-height: 1.62;
}


.category-live-count {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  margin-top: 15px;

  color:
    rgba(255,255,255,.56);

  font-size: .76rem;
}


.category-live-count strong {
  color: #fff;
}


.category-live-count::before {
  content: "";

  width: 7px;
  height: 7px;

  flex: 0 0 7px;

  border-radius: 999px;

  background: #29df76;

  box-shadow:
    0 0 0 4px rgba(41,223,118,.08),
    0 0 12px rgba(41,223,118,.52);
}


/* ---------- GRID START ---------- */

.category-models-section,
.category-grid-section {
  margin-top: 12px !important;
}


/* Make heading cleaner / less CMS-ish */
.category-models-heading,
.category-section-heading {
  margin-bottom: 12px;
}


.category-models-heading h2,
.category-section-heading h2 {
  margin:
    3px
    0
    0;

  color: #fff;

  font-size: 1.35rem;

  letter-spacing: -.025em;
}


.category-section-eyebrow {
  display: block;

  color: #ff7656;

  font-size: .62rem;
  font-weight: 950;

  letter-spacing: .13em;

  text-transform: uppercase;
}


/* ---------- LONG SEO CONTENT ---------- */

.category-long-content {
  margin-top: 22px !important;

  padding:
    22px
    24px !important;

  border-radius: 14px !important;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.025),
      rgba(255,255,255,.012)
    ) !important;
}


.category-long-content h2 {
  margin:
    0
    0
    12px !important;

  font-size: 1.28rem !important;

  letter-spacing: -.02em;
}


.category-long-content > div {
  color:
    rgba(255,255,255,.74);

  font-size: .9rem;

  line-height: 1.65;
}


/* ---------- FAQ ---------- */

.category-faq-section {
  margin-top: 18px;

  padding:
    21px
    22px
    22px;

  border:
    1px solid
    rgba(255,255,255,.075);

  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.028),
      rgba(255,255,255,.012)
    );
}


.category-faq-list {
  display: flex;
  flex-direction: column;

  gap: 8px;

  margin-top: 14px;
}


.category-faq-item {
  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,.08);

  border-radius: 10px;

  background:
    rgba(0,0,0,.23);
}


.category-faq-item summary {
  position: relative;

  cursor: pointer;

  list-style: none;

  padding:
    14px
    42px
    14px
    15px;

  color: #f3f3f5;

  font-size: .87rem;
  font-weight: 800;

  line-height: 1.35;
}


.category-faq-item summary::-webkit-details-marker {
  display: none;
}


.category-faq-item summary::after {
  content: "+";

  position: absolute;

  right: 15px;
  top: 50%;

  transform:
    translateY(-50%);

  color: #f3b64b;

  font-size: 1.15rem;
  font-weight: 700;
}


.category-faq-item[open] summary::after {
  content: "−";
}


.category-faq-item[open] summary {
  border-bottom:
    1px solid
    rgba(255,255,255,.065);
}


.category-faq-answer {
  padding:
    0
    15px
    14px;
}


.category-faq-answer p {
  margin:
    12px
    0
    0;

  color:
    rgba(255,255,255,.67);

  font-size: .84rem;

  line-height: 1.6;
}


/* ---------- RELATED SEARCH KEYWORDS ---------- */

.category-keyword-section {
  margin-top: 18px !important;

  padding:
    19px
    21px !important;

  border-radius: 14px !important;
}


.category-keyword-section h2,
.category-keyword-section h3 {
  margin-top: 0 !important;

  font-size: .82rem !important;

  letter-spacing: .09em;

  text-transform: uppercase;
}


/* ---------- MOBILE ---------- */

@media (max-width: 800px) {

  .category-hero {
    padding:
      21px
      20px
      20px;
  }

  .category-hero h1 {
    font-size: 2.05rem;
  }

}


@media (max-width: 520px) {

  .category-hero {
    padding:
      18px
      16px;
  }

  .category-hero h1 {
    font-size: 1.75rem;
  }

  .category-hero p,
  .category-hero-intro {
    font-size: .82rem;
  }

  .category-faq-section,
  .category-long-content,
  .category-keyword-section {
    padding:
      16px
      15px !important;
  }

}



/* ============================================================
   LCM STICKY TRUST BAR V1
   Homepage trust/status strip stays visible while scrolling.
   ============================================================ */

@media (min-width: 801px) {

  .trust-row {
    position: sticky !important;

    top: 0 !important;

    z-index: 40 !important;

    margin:
      8px
      0
      9px !important;

    backdrop-filter:
      blur(12px);

    -webkit-backdrop-filter:
      blur(12px);

    background:
      rgba(15, 8, 9, .94) !important;

    border-radius: 11px;

    box-shadow:
      0 6px 18px
      rgba(0,0,0,.22);
  }

}


/*
   Keep mobile normal.
   A sticky four-column strip on a phone would be annoying.
*/
@media (max-width: 800px) {

  .trust-row {
    position: static !important;
  }

}



/* ============================================================
   LCM MODEL PROFILE V1
   Internal SEO page. Affiliate only on image/CTA.
   ============================================================ */

.model-profile-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;

  margin:
    5px
    0
    13px;

  color: var(--muted);
  font-size: .72rem;
}

.model-profile-breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
}


.model-profile {
  display: grid;

  grid-template-columns:
    minmax(320px, .9fr)
    minmax(360px, 1.1fr);

  gap: 22px;

  padding: 20px;

  border:
    1px solid
    var(--border);

  border-radius: 16px;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(255,150,60,.08),
      transparent 34%
    ),
    rgba(255,255,255,.02);
}


.model-profile-image {
  position: relative;

  overflow: hidden;

  border-radius: 13px;

  background: #09090b;
}

.model-profile-image a {
  display: block;
}

.model-profile-image img {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 4 / 3;

  object-fit: cover;
}


.model-profile-hd {
  position: absolute;

  top: 10px;
  left: 10px;

  padding:
    5px
    7px;

  border-radius: 7px;

  color: #fff;

  background:
    rgba(5,5,7,.84);

  font-size: .7rem;
  font-weight: 900;
}


.model-profile-live {
  position: absolute;

  left: 12px;
  bottom: 11px;

  display: flex;
  align-items: center;

  gap: 6px;

  color: #fff;

  font-size: .76rem;
  font-weight: 900;

  text-shadow:
    0 2px 8px #000;
}


.model-profile-content {
  display: flex;
  flex-direction: column;

  justify-content: center;

  min-width: 0;
}


.model-profile-eyebrow {
  margin-bottom: 7px;

  color: var(--orange);

  font-size: .66rem;
  font-weight: 950;

  letter-spacing: .14em;
}


.model-profile-content h1 {
  margin:
    0
    0
    17px;

  color: #fff;

  font-size:
    clamp(
      2rem,
      3.5vw,
      3.35rem
    );

  line-height: .98;

  letter-spacing: -.045em;

  overflow-wrap: anywhere;
}


.model-profile-stats {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 18px;
}


.model-profile-stats > div {
  min-width: 95px;

  padding:
    9px
    11px;

  border:
    1px solid
    var(--border);

  border-radius: 9px;

  background:
    rgba(255,255,255,.025);
}

.model-profile-stats strong,
.model-profile-stats span {
  display: block;
}

.model-profile-stats strong {
  color: #fff;

  font-size: .84rem;
}

.model-profile-stats span {
  margin-top: 2px;

  color: var(--muted);

  font-size: .65rem;
}


.model-profile-detail {
  display: flex;

  gap: 9px;

  margin-bottom: 13px;

  color: var(--soft);

  font-size: .82rem;
}

.model-profile-detail > span {
  color: var(--muted);
}


.model-profile-subject {
  margin:
    5px
    0
    18px;

  padding:
    13px
    14px;

  border-left:
    2px solid
    var(--orange);

  background:
    rgba(255,255,255,.02);

  border-radius:
    0
    9px
    9px
    0;
}

.model-profile-detail-label {
  margin-bottom: 5px;

  color: var(--muted);

  font-size: .64rem;
  font-weight: 900;

  letter-spacing: .09em;

  text-transform: uppercase;
}

.model-profile-subject p {
  margin: 0;

  color: var(--soft);

  font-size: .82rem;

  line-height: 1.52;
}


.model-profile-chat {
  width: fit-content;

  padding:
    11px
    17px;

  border-radius: 9px;

  color: #08080a;

  background:
    linear-gradient(
      135deg,
      var(--orange),
      var(--gold)
    );

  text-decoration: none;

  font-size: .78rem;
  font-weight: 950;
}


.model-profile-note {
  margin-top: 7px;

  color: var(--muted);

  font-size: .64rem;
}


.model-profile-seo {
  margin-top: 18px;

  padding:
    18px
    20px;

  border:
    1px solid
    var(--border);

  border-radius: 13px;

  background:
    rgba(255,255,255,.018);

  color: var(--soft);

  line-height: 1.62;
}

.model-profile-seo h2 {
  margin-top: 0;

  color: #fff;

  font-size: 1.25rem;
}

.model-profile-seo p:last-child {
  margin-bottom: 0;
}


@media (max-width: 900px) {

  .model-profile {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 520px) {

  .model-profile {
    gap: 15px;

    padding: 12px;
  }

  .model-profile-content h1 {
    font-size: 2rem;
  }

}



/* ============================================================
   LCM MODEL PROFILE NAVIGATION V1
   Previous / current / next
   ============================================================ */

.model-profile-image {
  position: relative !important;
  padding-top: 42px;
}


.model-profile-navigation {
  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  z-index: 10;

  display: grid;

  grid-template-columns:
    minmax(0,1fr)
    auto
    minmax(0,1fr);

  align-items: center;

  min-height: 42px;

  padding:
    0
    12px;

  border-bottom:
    1px solid
    rgba(255,255,255,.10);

  background:
    linear-gradient(
      180deg,
      rgba(10,10,12,.92),
      rgba(10,10,12,.80)
    );

  backdrop-filter:
    blur(8px);

  -webkit-backdrop-filter:
    blur(8px);
}


.model-profile-navigation a {
  display: flex;
  align-items: center;

  gap: 6px;

  min-width: 0;

  color:
    rgba(255,255,255,.86);

  text-decoration: none;

  font-size: .72rem;
}


.model-profile-navigation a:hover {
  color: #fff;
}


.model-nav-prev {
  justify-content: flex-start;
}


.model-nav-next {
  justify-content: flex-end;

  text-align: right;
}


.model-nav-direction {
  color: var(--gold);

  font-size: .68rem;
  font-weight: 800;

  white-space: nowrap;
}


.model-profile-navigation strong {
  min-width: 0;

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;

  font-size: .72rem;
}


.model-nav-current {
  max-width: 180px;

  padding:
    0
    12px;

  color: #fff;

  font-size: .78rem;
  font-weight: 900;

  text-align: center;

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;
}


.model-nav-empty {
  display: block;
}


/*
   Preserve image sizing now that nav lives above it.
*/
.model-profile-image > a {
  display: block;
}


.model-profile-image > a img {
  width: 100%;
  height: auto;

  aspect-ratio: 4 / 3;

  object-fit: cover;
}


/* mobile */
@media (max-width: 600px) {

  .model-profile-image {
    padding-top: 38px;
  }

  .model-profile-navigation {
    min-height: 38px;

    padding:
      0
      8px;
  }

  .model-nav-direction {
    font-size: .62rem;
  }

  .model-profile-navigation strong {
    display: none;
  }

  .model-nav-current {
    max-width: 130px;

    padding:
      0
      8px;

    font-size: .7rem;
  }

}



/* ============================================================
   LCM MODEL PROFILE NAV V2
   Clean Previous | Current | Next
   ============================================================ */

.model-profile-image {
  padding-top: 44px !important;
}


.model-profile-navigation {
  position: absolute !important;

  top: 0;
  left: 0;
  right: 0;

  height: 44px;
  min-height: 44px !important;

  display: grid !important;

  grid-template-columns:
    1fr
    auto
    1fr !important;

  align-items: center;

  padding:
    0
    14px !important;

  border-bottom:
    1px solid
    rgba(255,255,255,.08);

  background:
    linear-gradient(
      180deg,
      rgba(8,8,10,.96),
      rgba(8,8,10,.90)
    ) !important;

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);
}


.model-profile-navigation a {
  display: block !important;

  color:
    rgba(255,255,255,.78) !important;

  font-size: .72rem !important;
  font-weight: 850 !important;

  text-decoration: none;

  white-space: nowrap;
}


.model-profile-navigation a:hover {
  color: #fff !important;
}


.model-nav-prev {
  justify-self: start;
  text-align: left;
}


.model-nav-next {
  justify-self: end;
  text-align: right;
}


.model-nav-current {
  max-width: 210px !important;

  padding:
    0
    16px !important;

  color: #fff !important;

  font-size: .78rem !important;
  font-weight: 950 !important;

  text-align: center;

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;
}


/* remove obsolete nested nav-name styling */
.model-nav-direction,
.model-profile-navigation strong {
  display: none !important;
}


@media (max-width: 600px) {

  .model-profile-image {
    padding-top: 40px !important;
  }

  .model-profile-navigation {
    height: 40px;
    min-height: 40px !important;

    padding:
      0
      9px !important;
  }

  .model-profile-navigation a {
    font-size: .65rem !important;
  }

  .model-nav-current {
    max-width: 115px !important;

    padding:
      0
      8px !important;

    font-size: .7rem !important;
  }

}



/* ============================================================
   LCM MODEL PROFILE NAV V3
   Overlay navigation on top edge of image
   ============================================================ */


/*
   Remove the artificial space V1/V2 reserved above the image.
*/
.model-profile-image {
  padding-top: 0 !important;
  position: relative !important;
}


/*
   Navigation now floats over the image itself.
*/
.model-profile-navigation {
  position: absolute !important;

  top: 0 !important;
  left: 0 !important;
  right: 0 !important;

  z-index: 20 !important;

  height: 44px !important;
  min-height: 44px !important;

  display: grid !important;

  grid-template-columns:
    1fr
    auto
    1fr !important;

  align-items: center !important;

  padding:
    0
    14px !important;

  border: 0 !important;
  border-bottom:
    1px solid
    rgba(255,255,255,.08) !important;

  border-radius:
    13px
    13px
    0
    0 !important;

  background:
    linear-gradient(
      180deg,
      rgba(5,5,7,.94) 0%,
      rgba(5,5,7,.78) 72%,
      rgba(5,5,7,.38) 100%
    ) !important;

  backdrop-filter:
    blur(5px);

  -webkit-backdrop-filter:
    blur(5px);
}


/* left / right links */
.model-profile-navigation a {
  display: block !important;

  color:
    rgba(255,255,255,.88) !important;

  font-size: .72rem !important;
  font-weight: 850 !important;

  line-height: 1 !important;

  text-decoration: none !important;

  text-shadow:
    0 1px 4px rgba(0,0,0,.95);

  white-space: nowrap;
}


.model-profile-navigation a:hover {
  color: #fff !important;
}


.model-nav-prev {
  justify-self: start !important;
  text-align: left !important;
}


.model-nav-next {
  justify-self: end !important;
  text-align: right !important;
}


/* current model centered */
.model-nav-current {
  max-width: 210px !important;

  padding:
    0
    16px !important;

  color: #fff !important;

  font-size: .78rem !important;
  font-weight: 950 !important;

  line-height: 1 !important;

  text-align: center !important;

  text-shadow:
    0 1px 5px rgba(0,0,0,.95);

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/*
   Keep the profile image at full natural area.
*/
.model-profile-image > a {
  display: block !important;
}

.model-profile-image > a img {
  display: block !important;

  width: 100% !important;
  height: auto !important;

  aspect-ratio: 4 / 3 !important;

  object-fit: cover !important;
}


/*
   Give HD badge enough clearance from nav.
*/
.model-profile-hd {
  top: 53px !important;
}


/*
   LIVE remains at bottom-left.
*/
.model-profile-live {
  bottom: 11px !important;
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

  .model-profile-navigation {
    height: 40px !important;
    min-height: 40px !important;

    padding:
      0
      9px !important;
  }

  .model-profile-navigation a {
    font-size: .64rem !important;
  }

  .model-nav-current {
    max-width: 115px !important;

    padding:
      0
      7px !important;

    font-size: .69rem !important;
  }

  .model-profile-hd {
    top: 48px !important;
  }

}



/* ============================================================
   LCM MODEL PROFILE ENRICHMENT V1
   Additional Chaturbate feed information
   ============================================================ */

.model-profile-enrichment {
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.model-profile-enrichment-title {
  margin-bottom: 11px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.model-profile-enrichment-item {
  min-width: 0;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  background: rgba(255,255,255,.025);
}

.model-profile-enrichment-item span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.model-profile-enrichment-item strong {
  display: block;
  overflow-wrap: anywhere;
  color: rgba(255,255,255,.91);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.model-profile-tags {
  margin-top: 13px;
}

.model-profile-tags-label {
  margin-bottom: 8px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.model-profile-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.model-profile-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(255,73,97,.24);
  border-radius: 999px;
  background: rgba(255,73,97,.055);
  color: #ff7b8c;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 650px) {

  .model-profile-enrichment-grid {
    grid-template-columns: 1fr;
  }

}


/* ============================================================
   LCM PROFILE ENRICHMENT LAYOUT V2 FIX
   Enrichment is full-width below primary profile hero.
   ============================================================ */

.model-profile-enrichment-section {
  margin-top: 22px;
}

.model-profile-enrichment-section .model-profile-enrichment {
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 801px) {
  .model-profile-enrichment-section .model-profile-enrichment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) and (min-width: 701px) {
  .model-profile-enrichment-section .model-profile-enrichment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .model-profile-enrichment-section {
    margin-top: 14px;
  }

  .model-profile-enrichment-section .model-profile-enrichment-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   LCM MODEL PROFILE TAG LINKS V2
   Internal category links from model profile tags.
   ============================================================ */

a.model-profile-tag {
  text-decoration: none;
  transition:
    border-color .15s ease,
    background .15s ease,
    color .15s ease,
    transform .15s ease;
}

a.model-profile-tag:hover {
  border-color: rgba(255,150,60,.52);
  background: rgba(255,150,60,.11);
  color: var(--gold);
  transform: translateY(-1px);
}




/* ============================================================
   LCM MODEL PROFILE RELATED MODELS V1
   ============================================================ */

.model-profile-related {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.model-profile-related-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 13px;
}

.model-profile-related-header h2 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.model-profile-related-header span {
  color: var(--muted);
  font-size: .68rem;
}

.model-profile-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 11px;
}

.model-profile-related-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(255,255,255,.02);
  color: inherit;
  text-decoration: none;
  transition:
    border-color .15s ease,
    transform .15s ease,
    background .15s ease;
}

.model-profile-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,150,60,.42);
  background: rgba(255,150,60,.04);
}

.model-profile-related-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #09090b;
}

.model-profile-related-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-profile-related-live {
  position: absolute;
  left: 8px;
  bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: .62rem;
  font-weight: 900;
  text-shadow: 0 1px 5px #000;
}

.model-profile-related-info {
  min-width: 0;
  padding: 9px 10px 10px;
}

.model-profile-related-info strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: .76rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model-profile-related-info span {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: .63rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .model-profile-related-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 700px) {
  .model-profile-related-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .model-profile-related-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}



/* ============================================================
   MONEYSLAVE FULL HERO BANNER
   Final override — intentionally last in file.
   ============================================================ */

.hero {
    height: 430px !important;
    min-height: 430px !important;

    background-image:
        url("/static/img/hero/moneyslaveherov1.png") !important;

    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;

    padding: 0 !important;
}

/* The artwork already contains its own headline/copy/CTA. */
.hero-overlay,
.hero-content {
    display: none !important;
}


/* Larger desktop screens */
@media (min-width: 1500px) {
    .hero {
        height: 500px !important;
        min-height: 500px !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}


/* Normal laptops / desktop */
@media (min-width: 900px) and (max-width: 1499px) {
    .hero {
        height: 420px !important;
        min-height: 420px !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}


/* Tablets */
@media (min-width: 600px) and (max-width: 899px) {
    .hero {
        height: 340px !important;
        min-height: 340px !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}


/* Phones */
@media (max-width: 599px) {
    .hero {
        height: 260px !important;
        min-height: 260px !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}


/* ============================================================
   MONEYSLAVE HERO V2
   Preserve complete 2:1 artwork — NO CROPPING
   ============================================================ */

.hero {
    width: 100% !important;

    /* Let the artwork determine hero height */
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 2 / 1 !important;

    background-image:
        url("/static/img/hero/moneyslaveherov1.png") !important;

    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #050505 !important;

    padding: 0 !important;
}

/* Artwork contains all hero messaging */
.hero-overlay,
.hero-content {
    display: none !important;
}

/* Override all previous responsive hero-height rules */
@media (min-width: 1500px),
       (min-width: 900px) and (max-width: 1499px),
       (min-width: 600px) and (max-width: 899px),
       (max-width: 599px) {

    .hero {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 2 / 1 !important;

        background-size: contain !important;
        background-position: center center !important;
    }
}


/* ============================================================
   IAMAMONEYSLAVE GLOBAL BRAND THEME V1
   Black / Gold / Luxury

   IMPORTANT:
   No .hero selectors are included in this block.
   Existing homepage hero is intentionally frozen.
   ============================================================ */

:root {
    --ms-black: #050505;
    --ms-black-soft: #0a0a0d;
    --ms-panel: #0e0e12;
    --ms-panel-2: #131317;

    --ms-gold: #d6aa4c;
    --ms-gold-bright: #efc86c;
    --ms-gold-soft: #a98135;
    --ms-gold-dark: #6f5222;

    --ms-text: #f5f1e8;
    --ms-text-soft: #c9c2b5;
    --ms-muted: #8f897f;

    --ms-border: rgba(214,170,76,.24);
    --ms-border-strong: rgba(214,170,76,.48);

    --ms-shadow:
        0 14px 40px rgba(0,0,0,.38);
}


/* ------------------------------------------------------------
   PAGE FOUNDATION
   ------------------------------------------------------------ */

html,
body {
    background:
        radial-gradient(
            circle at top right,
            rgba(214,170,76,.035),
            transparent 28%
        ),
        #050505 !important;

    color: var(--ms-text) !important;
}

body {
    accent-color: var(--ms-gold) !important;
}


/* ------------------------------------------------------------
   SIDEBAR / PRIMARY NAVIGATION
   ------------------------------------------------------------ */

.sidebar,
.site-sidebar,
aside {
    background:
        linear-gradient(
            180deg,
            #0d0d11 0%,
            #070709 100%
        ) !important;

    border-right:
        1px solid var(--ms-border) !important;
}

.sidebar a,
.site-sidebar a,
aside a {
    color: #ddd7cb !important;
}

.sidebar a:hover,
.site-sidebar a:hover,
aside a:hover {
    color: var(--ms-gold-bright) !important;
}

.sidebar .active,
.site-sidebar .active,
.sidebar a.active,
.site-sidebar a.active {
    color: var(--ms-gold-bright) !important;

    background:
        linear-gradient(
            90deg,
            rgba(214,170,76,.13),
            rgba(214,170,76,.025)
        ) !important;

    border-color:
        var(--ms-border-strong) !important;
}


/* ------------------------------------------------------------
   BRAND / LOGO TEXT
   ------------------------------------------------------------ */

.brand,
.site-brand,
.logo,
.sidebar-brand {
    color: #f7f3e9 !important;
}

.brand strong,
.site-brand strong,
.logo strong,
.sidebar-brand strong {
    color: var(--ms-gold-bright) !important;
}


/* ------------------------------------------------------------
   MAIN PAGE AREA
   ------------------------------------------------------------ */

.main-content,
.page-content,
.content,
main {
    color: var(--ms-text) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #f8f4eb;
}

.section-kicker,
.eyebrow,
.kicker {
    color: var(--ms-gold) !important;
}

a {
    transition:
        color .16s ease,
        border-color .16s ease,
        background .16s ease,
        transform .16s ease;
}


/* ------------------------------------------------------------
   TRUST / QUICK INFO STRIP
   ------------------------------------------------------------ */

.trust-row {
    background:
        linear-gradient(
            180deg,
            #100b0b,
            #090707
        ) !important;

    border:
        1px solid rgba(214,170,76,.18) !important;

    box-shadow:
        0 8px 24px rgba(0,0,0,.24) !important;
}

.trust-item {
    border-color:
        rgba(214,170,76,.16) !important;
}

.trust-item strong {
    color: #fff !important;
}

.trust-item span {
    color: #aaa296 !important;
}

.trust-live-dot {
    box-shadow:
        0 0 12px rgba(50,230,110,.58);
}


/* ------------------------------------------------------------
   GENERAL PANELS / CARDS
   ------------------------------------------------------------ */

.card,
.panel,
.content-card,
.model-card,
.category-card,
.profile-card,
.info-card {
    background:
        linear-gradient(
            180deg,
            #121216 0%,
            #0a0a0d 100%
        ) !important;

    border:
        1px solid rgba(214,170,76,.16) !important;

    box-shadow:
        var(--ms-shadow) !important;
}

.card:hover,
.model-card:hover,
.category-card:hover {
    border-color:
        rgba(214,170,76,.42) !important;
}


/* ------------------------------------------------------------
   MODEL GRID
   ------------------------------------------------------------ */

.model-card {
    overflow: hidden;
}

.model-card a {
    color: inherit;
}

.model-card-title,
.model-card-name,
.model-name {
    color: #fff !important;
}

.model-card-meta,
.model-meta,
.card-meta {
    color: #aaa399 !important;
}

.model-card:hover .model-card-name,
.model-card:hover .model-name {
    color: var(--ms-gold-bright) !important;
}


/* ------------------------------------------------------------
   LABELS / PILLS / BADGES
   ------------------------------------------------------------ */

.badge,
.pill,
.tag,
.status-badge,
.category-pill {
    border-color:
        rgba(214,170,76,.30) !important;
}

.badge:not(.live):not(.online),
.pill,
.tag,
.category-pill {
    background:
        rgba(214,170,76,.10) !important;

    color:
        #e8c778 !important;
}


/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */

button,
.button,
.btn,
.primary-button,
.cta-button,
.profile-cta,
.category-cta {
    border-color:
        rgba(214,170,76,.64) !important;
}

button:not(.secondary),
.button:not(.secondary),
.btn-primary,
.primary-button,
.cta-button,
.profile-cta {
    background:
        linear-gradient(
            180deg,
            #efc86c 0%,
            #c49339 100%
        ) !important;

    color:
        #090806 !important;

    box-shadow:
        0 7px 22px rgba(188,137,43,.18) !important;
}

button:hover,
.button:hover,
.btn:hover,
.primary-button:hover,
.cta-button:hover,
.profile-cta:hover {
    border-color:
        var(--ms-gold-bright) !important;
}


/* ------------------------------------------------------------
   CATEGORY PAGES
   ------------------------------------------------------------ */

.category-hero {
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(214,170,76,.11),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #111115,
            #08080a
        ) !important;

    border:
        1px solid var(--ms-border) !important;

    box-shadow:
        var(--ms-shadow) !important;
}

.category-hero h1 {
    color:
        #f7f2e8 !important;
}

.category-hero .section-kicker {
    color:
        var(--ms-gold) !important;
}

.category-hero p,
.category-hero-intro {
    color:
        var(--ms-text-soft) !important;
}


/* ------------------------------------------------------------
   MODEL PROFILE PAGES
   ------------------------------------------------------------ */

.model-profile,
.model-profile-main,
.profile-main,
.profile-shell,
.profile-section,
.model-profile-section {
    color:
        var(--ms-text) !important;
}

.model-profile-card,
.profile-details,
.profile-info,
.model-profile-info,
.model-profile-enrichment,
.model-profile-related {
    background:
        linear-gradient(
            180deg,
            #111115,
            #09090c
        ) !important;

    border-color:
        var(--ms-border) !important;
}

.model-profile h1,
.profile-main h1,
.model-profile-name {
    color:
        #f9f5ec !important;
}

.model-profile a,
.profile-main a {
    color:
        var(--ms-gold-bright);
}

.model-profile a:hover,
.profile-main a:hover {
    color:
        #ffe099;
}


/* ------------------------------------------------------------
   PROFILE ATTRIBUTE / ENRICHMENT SECTIONS
   ------------------------------------------------------------ */

.profile-attribute,
.profile-fact,
.enrichment-item,
.detail-item {
    border-color:
        rgba(214,170,76,.15) !important;
}

.profile-attribute strong,
.profile-fact strong,
.enrichment-item strong,
.detail-item strong {
    color:
        #ead096 !important;
}


/* ------------------------------------------------------------
   FORMS / INPUTS
   ------------------------------------------------------------ */

input,
select,
textarea {
    background:
        #0b0b0e !important;

    border:
        1px solid rgba(214,170,76,.24) !important;

    color:
        #f3eee3 !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color:
        rgba(214,170,76,.70) !important;

    outline:
        none !important;

    box-shadow:
        0 0 0 3px rgba(214,170,76,.08) !important;
}


/* ------------------------------------------------------------
   DIVIDERS
   ------------------------------------------------------------ */

hr,
.divider,
.section-divider {
    border-color:
        rgba(214,170,76,.16) !important;
}


/* ------------------------------------------------------------
   FOOTERS
   ------------------------------------------------------------ */

footer,
.site-footer,
.footer {
    background:
        #060607 !important;

    color:
        #8f887e !important;

    border-top:
        1px solid rgba(214,170,76,.17) !important;
}

footer a,
.site-footer a,
.footer a {
    color:
        #caa654 !important;
}

footer a:hover,
.site-footer a:hover,
.footer a:hover {
    color:
        var(--ms-gold-bright) !important;
}


/* ------------------------------------------------------------
   SCROLLBARS
   ------------------------------------------------------------ */

* {
    scrollbar-color:
        #8e6c2d #0b0b0e;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background:
        #09090b;
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            #a47c32,
            #684d21
        );

    border-radius:
        10px;

    border:
        2px solid #09090b;
}


/* ============================================================
   END IAMAMONEYSLAVE GLOBAL THEME

   HERO INTENTIONALLY NOT MODIFIED ABOVE.
   ============================================================ */


/* ============================================================
   IAMAMONEYSLAVE — FINDOM FAQ
   ============================================================ */

.findom-faq {
  width: 100%;
  padding: 56px 32px 64px;
}

.findom-faq-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.findom-faq-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.findom-faq-eyebrow {
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.findom-faq-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.findom-faq-heading p {
  margin: 0;
  max-width: 760px;
  line-height: 1.7;
  opacity: 0.82;
}

.findom-faq-list {
  display: grid;
  gap: 10px;
}

.findom-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.findom-faq-item summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 750;
  line-height: 1.35;
}

.findom-faq-item summary::-webkit-details-marker {
  display: none;
}

.findom-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.45rem;
  font-weight: 400;
  opacity: 0.75;
}

.findom-faq-item[open] summary::after {
  content: "−";
}

.findom-faq-answer {
  padding: 0 20px 19px;
}

.findom-faq-answer p {
  margin: 0;
  max-width: 940px;
  line-height: 1.72;
  opacity: 0.82;
}

@media (max-width: 700px) {
  .findom-faq {
    padding: 42px 18px 50px;
  }

  .findom-faq-item summary {
    padding: 16px 48px 16px 16px;
  }

  .findom-faq-answer {
    padding: 0 16px 17px;
  }
}



/* IAMAMONEYSLAVE FAVORITES PORT */
/* ============================================================
   LIVECAMMODELS FAVORITES V1
   ============================================================ */


/* Sidebar --------------------------------------------------- */

.favorites-nav-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.favorites-nav-star {
  color: #ffb34f;
  font-size: 16px;
  line-height: 1;
}

.favorites-nav-link.active {
  color: #ffb34f !important;
}


/* Page star ------------------------------------------------- */

.main-content {
  position: relative;
}

.page-star-button {
  position: absolute !important;
  top: 16px !important;
  right: 18px !important;

  width: auto !important;

  z-index: 30 !important;
}

.page-star-button .page-star-icon {
  font-size: 19px;
  line-height: 1;
}

.page-star-button.is-starred {
  border-color:
    rgba(255, 179, 79, .70) !important;

  color: #ffb34f !important;

  background:
    rgba(255, 179, 79, .10) !important;
}


/* Favorites page ------------------------------------------- */

.favorites-main {
  padding-bottom: 80px;
}

.favorites-header {
  padding:
    34px 34px 28px;

  border:
    1px solid rgba(255,255,255,.08);

  border-radius: 22px;

  background:
    linear-gradient(
      125deg,
      rgba(255, 100, 55, .10),
      rgba(255, 179, 79, .04),
      rgba(255,255,255,.015)
    );
}

.favorites-kicker {
  margin-bottom: 8px;

  color: #ff884f;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: .15em;
}

.favorites-header h1 {
  margin: 0;

  font-size:
    clamp(34px, 5vw, 58px);

  line-height: 1;
}

.favorites-header p {
  margin:
    13px 0 0;

  color:
    rgba(255,255,255,.68);

  font-size: 16px;
}


.favorites-section {
  margin-top: 34px;

  padding-top: 28px;

  border-top:
    1px solid rgba(255,255,255,.08);
}

.favorites-section-heading h2 {
  margin:
    0 0 20px;

  font-size: 25px;
}


/* Saved pages ---------------------------------------------- */

.favorite-pages-grid {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fill,
      minmax(230px, 1fr)
    );

  gap: 12px;
}

.favorite-page-card {
  position: relative;

  min-width: 0;

  border:
    1px solid rgba(255,255,255,.09);

  border-radius: 14px;

  background:
    rgba(255,255,255,.025);

  overflow: hidden;
}

.favorite-page-card:hover {
  border-color:
    rgba(255,179,79,.40);

  background:
    rgba(255,179,79,.045);
}

.favorite-page-link {
  display: flex;

  align-items: center;

  gap: 12px;

  min-height: 76px;

  padding:
    14px 42px 14px 16px;

  color: inherit;

  text-decoration: none;
}

.favorite-page-star {
  flex: 0 0 auto;

  color: #ffb34f;

  font-size: 24px;
}

.favorite-page-copy {
  display: flex;

  flex-direction: column;

  min-width: 0;

  gap: 5px;
}

.favorite-page-copy strong {
  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;
}

.favorite-page-copy small {
  color:
    rgba(255,255,255,.48);

  text-transform: uppercase;

  letter-spacing: .08em;
}


/* Model groups --------------------------------------------- */

.favorite-model-group {
  margin-top: 26px;
}

.favorite-model-subheading {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 14px;

  font-size: 20px;
  font-weight: 850;
}

.favorite-online-grid {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fill,
      minmax(230px, 1fr)
    );

  gap: 14px;
}

.favorite-live-card {
  position: relative;

  min-width: 0;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,.09);

  border-radius: 14px;

  background: #09090b;
}

.favorite-live-card:hover {
  transform:
    translateY(-2px);

  border-color:
    rgba(255,179,79,.40);
}

.favorite-model-link {
  display: block;

  color: inherit;

  text-decoration: none;
}

.favorite-live-image {
  position: relative;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #08080a;
}

.favorite-live-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.favorite-live-badge {
  position: absolute;

  left: 10px;
  bottom: 9px;

  display: flex;

  align-items: center;

  gap: 5px;

  font-size: 12px;
  font-weight: 900;

  color: white;

  text-shadow:
    0 1px 5px black;
}

.favorite-live-info {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

  padding: 12px 14px;
}

.favorite-live-info strong {
  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;
}

.favorite-live-info span {
  flex: 0 0 auto;

  color:
    rgba(255,255,255,.52);

  font-size: 12px;
}


/* Offline favorites ---------------------------------------- */

.favorite-offline-group {
  margin-top: 34px;

  padding-top: 24px;

  border-top:
    1px solid rgba(255,255,255,.055);
}

.favorite-offline-heading {
  color:
    rgba(255,255,255,.56);

  font-size: 17px;
}

.favorite-offline-grid {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fill,
      minmax(180px, 1fr)
    );

  gap: 10px;
}

.favorite-offline-card {
  position: relative;

  min-width: 0;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,.055);

  border-radius: 12px;

  background:
    rgba(255,255,255,.018);
}

.favorite-offline-card:hover {
  border-color:
    rgba(255,255,255,.14);

  background:
    rgba(255,255,255,.03);
}

.favorite-offline-image {
  position: relative;

  aspect-ratio: 16 / 10;

  overflow: hidden;

  background: #101014;
}

.favorite-offline-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  opacity: .55;

  filter:
    grayscale(.55);
}

.favorite-offline-badge {
  position: absolute;

  left: 9px;
  bottom: 8px;

  padding:
    4px 7px;

  border-radius: 6px;

  background:
    rgba(10,10,13,.80);

  color:
    rgba(255,255,255,.74);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .08em;
}

.favorite-offline-info {
  display: flex;

  flex-direction: column;

  gap: 4px;

  padding: 10px 12px;
}

.favorite-offline-info strong {
  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;

  color:
    rgba(255,255,255,.78);

  font-size: 14px;
}

.favorite-offline-info span {
  color:
    rgba(255,255,255,.42);

  font-size: 11px;
}


/* Remove control ------------------------------------------- */

.favorite-remove {
  position: absolute;

  top: 7px;
  right: 7px;

  z-index: 8;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 27px;
  height: 27px;

  padding: 0;

  border:
    1px solid rgba(255,255,255,.11);

  border-radius: 50%;

  background:
    rgba(8,8,11,.78);

  color:
    rgba(255,255,255,.65);

  font-size: 18px;

  cursor: pointer;
}

.favorite-remove:hover {
  color: white;

  border-color:
    rgba(255,179,79,.48);
}


/* Empty state ---------------------------------------------- */

.favorites-empty {
  margin-top: 34px;

  padding:
    60px 24px;

  text-align: center;

  border:
    1px solid rgba(255,255,255,.07);

  border-radius: 18px;

  background:
    rgba(255,255,255,.018);
}

.favorites-empty-star {
  margin-bottom: 10px;

  color:
    rgba(255,179,79,.76);

  font-size: 48px;
}

.favorites-empty h2 {
  margin:
    0 0 8px;

  font-size: 26px;
}

.favorites-empty p {
  margin:
    0 0 22px;

  color:
    rgba(255,255,255,.55);
}


/* Mobile ---------------------------------------------------- */

@media (max-width: 760px) {

  .page-star-button {
    position: static !important;

    margin:
      8px 0 14px 0 !important;
  }

  .favorites-header {
    padding:
      24px 20px;
  }

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

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

  .favorite-live-info {
    align-items: flex-start;

    flex-direction: column;
  }

}



/* ============================================================
   LIVECAMMODELS — FAVORITE PAGE VISUAL CARDS V2
   Match the Favorites model-card visual language
   ============================================================ */

.favorite-pages-grid {
  display: grid !important;

  grid-template-columns:
    repeat(
      auto-fill,
      minmax(230px, 1fr)
    ) !important;

  gap: 14px !important;
}


/*
 * Same basic shell as online favorite model cards.
 */
.favorite-page-card {
  position: relative !important;

  min-width: 0 !important;

  overflow: hidden !important;

  border:
    1px solid rgba(255,255,255,.09) !important;

  border-radius: 14px !important;

  background: #09090b !important;

  transition:
    transform .16s ease,
    border-color .16s ease !important;
}


.favorite-page-card:hover {
  transform:
    translateY(-2px) !important;

  border-color:
    rgba(255,179,79,.40) !important;

  background: #09090b !important;
}


.favorite-page-link {
  display: block !important;

  min-height: 0 !important;

  padding: 0 !important;

  color: inherit !important;

  text-decoration: none !important;
}


/*
 * SAME 4:3 IMAGE PROPORTION AS FAVORITE MODEL CARDS.
 */
.favorite-page-preview {
  position: relative !important;

  width: 100% !important;

  aspect-ratio: 4 / 3 !important;

  overflow: hidden !important;

  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 139, 72, .16),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      #181318,
      #09090b 62%
    ) !important;
}


.favorite-page-preview img {
  width: 100% !important;
  height: 100% !important;

  display: block !important;

  object-fit: cover !important;

  transition:
    transform .22s ease !important;
}


.favorite-page-card:hover
.favorite-page-preview img {
  transform:
    scale(1.025) !important;
}


/*
 * Nice fallback while preview loads / if none exists.
 */
.favorite-page-preview-fallback {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 7px;

  color:
    rgba(255,179,79,.90);
}


.favorite-page-preview-fallback span {
  font-size: 50px;

  line-height: 1;
}


.favorite-page-preview-fallback small {
  color:
    rgba(255,255,255,.46);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .12em;

  text-transform: uppercase;
}


.favorite-page-preview.has-preview
.favorite-page-preview-fallback {
  display: none;
}


/*
 * Footer mirrors favorite model card.
 */
.favorite-page-info {
  display: flex !important;

  flex-direction: column !important;

  gap: 3px !important;

  padding:
    11px 14px 12px !important;
}


.favorite-page-info strong {
  overflow: hidden !important;

  text-overflow: ellipsis !important;

  white-space: nowrap !important;

  font-size: 14px !important;
}


.favorite-page-info span {
  color:
    rgba(255,255,255,.48) !important;

  font-size: 11px !important;

  font-weight: 700 !important;

  letter-spacing: .08em !important;

  text-transform: uppercase !important;
}


/*
 * Keep the remove button positioned exactly like model favorites.
 */
.favorite-page-card .favorite-remove {
  top: 7px !important;
  right: 7px !important;

  z-index: 10 !important;
}


@media (max-width: 760px) {

  .favorite-pages-grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      ) !important;
  }

}



/* ============================================================
   FAVORITES — PAGE PREVIEW 2x2 MODEL COLLAGE
   ============================================================ */

.favorite-page-preview {
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  background: #09090b !important;
}

.favorite-page-collage {
  width: 100%;
  height: 100%;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  grid-template-rows:
    repeat(2, minmax(0, 1fr));

  gap: 2px;

  background: #111115;
}

.favorite-page-collage-cell {
  min-width: 0;
  min-height: 0;

  overflow: hidden;

  background: #09090b;
}

.favorite-page-collage-cell img {
  width: 100% !important;
  height: 100% !important;

  display: block !important;

  object-fit: cover !important;

  transform: none !important;
}

.favorite-page-card:hover
.favorite-page-collage-cell img {
  transform: scale(1.035) !important;
}



/* ============================================================
   IAMAMONEYSLAVE — MODEL STAR BUTTON FIX
   Keep page-star behavior unchanged.
   Compact utility control, upper-right of model profile.
   ============================================================ */

.model-profile-content {
  position: relative !important;
}


/*
 * MODEL ONLY.
 * Do not touch .page-star-button.
 */
#modelStarButton.model-star-button {
  position: absolute !important;

  top: 0 !important;
  right: 0 !important;

  display: inline-flex !important;

  align-items: center !important;
  justify-content: center !important;

  gap: 7px !important;

  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;

  margin: 0 !important;

  padding:
    7px 11px !important;

  border:
    1px solid rgba(255, 190, 70, .42) !important;

  border-radius:
    999px !important;

  background:
    rgba(255, 185, 65, .055) !important;

  color:
    rgba(255,255,255,.82) !important;

  box-shadow:
    none !important;

  font-size:
    12px !important;

  font-weight:
    800 !important;

  line-height:
    1 !important;

  white-space:
    nowrap !important;

  cursor: pointer !important;

  z-index:
    20 !important;
}


#modelStarButton.model-star-button:hover {
  border-color:
    rgba(255, 190, 70, .72) !important;

  background:
    rgba(255, 185, 65, .10) !important;

  color:
    #ffffff !important;
}


#modelStarButton.model-star-button.is-starred {
  border-color:
    rgba(255, 190, 70, .78) !important;

  background:
    rgba(255, 185, 65, .12) !important;

  color:
    #ffbd45 !important;
}


#modelStarButton .model-star-icon {
  display:
    inline-block !important;

  flex:
    0 0 auto !important;

  font-size:
    19px !important;

  line-height:
    1 !important;
}


#modelStarButton .model-star-label {
  display:
    inline-block !important;

  line-height:
    1 !important;
}


/*
 * Give the eyebrow room so it never collides with the utility.
 */
.model-profile-eyebrow {
  padding-right:
    135px !important;
}


/*
 * Do not push the actual performer name around.
 */
.model-profile-content > h1 {
  padding-right:
    0 !important;
}


/*
 * Narrow layouts: put the control back into normal flow.
 */
@media (max-width: 760px) {

  #modelStarButton.model-star-button {
    position:
      static !important;

    margin:
      5px 0 15px !important;

    padding:
      8px 11px !important;
  }

  .model-profile-eyebrow {
    padding-right:
      0 !important;
  }

}

