* {
  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/livecammodelsherov3.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/livecammodelsherov3.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/livecammodelsherov3.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/livecammodelsherov3.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/livecammodelsherov3.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/livecammodelsherov3.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/livecammodelsherov3.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/livecammodelsherov3.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;
}

