/* Sissy Exposed design system. Extracted from index.php on 2026-05-04. Source of truth for the new layout. */
:root {
  --bg: #000;
  --panel: #0a0a0a;
  --panel-2: #0d0d0d;
  --panel-3: #111111;
  --line: rgba(255, 20, 147, 0.15);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f0f0f0;
  --muted: #888;
  --dim: #555;
  --pink: #FF1493;
  --pink-2: #FF69B4;
  --violet: #FF1493;
  --green: #FF69B4;
  --amber: #FF1493;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --condensed: "Bebas Neue", Impact, sans-serif;
  --body: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--body);
  background:
    #000;
}


::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #FF1493; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #FF69B4; }
* { scrollbar-width: thin; scrollbar-color: #FF1493 #000; }

body::before {
  display: none;
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-shell {
  width: min(1920px, 100%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) minmax(220px, 320px) auto;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  min-width: 0;
}

.brand img {
  display: block;
  width: 192px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
  filter: saturate(1.2) drop-shadow(0 0 14px rgba(255, 45, 137, 0.35));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  white-space: nowrap;
}
.primary-nav::-webkit-scrollbar { display: none; }



.primary-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 20px 12px 18px;
  color: #ccc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: white;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: white;
}

.primary-nav a.active::after,
.primary-nav a:hover::after {
  content: '';
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  background: #FF1493;
  box-shadow: 0 0 12px #FF1493;
}

.search {
  display: grid;
  grid-template-columns: 1fr 72px;
  min-width: 0;
  border: 1px solid var(--line-soft);
  background: #050505;
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  padding: 8px 10px;
  font-size: 12px;
}

.search button,
.newsletter button {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--pink), #ef1671);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.account-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.solid-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 22px;
  border: 1px solid var(--line-soft);
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.solid-button {
  background: linear-gradient(135deg, #ff2f8e, #ec116b);
  border-color: transparent;
  box-shadow: 0 0 28px rgba(255, 45, 137, 0.2);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.01);
}

.large {
  min-height: 46px;
  padding-inline: 34px;
}

main {
  padding: 0 28px 28px;
}

.se-spot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  color: #555;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, transparent, rgba(255, 45, 137, 0.08), transparent),
    rgba(255, 255, 255, 0.01);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.top-ad {
  width: min(1280px, 100%);
  min-height: 38px;
  margin: 12px auto 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 10px;
}

.hero-panel,
.promo-card,
.module,
.side-card,
.site-footer {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 48%, rgba(255, 45, 137, 0.36), transparent 22rem),
    linear-gradient(110deg, rgba(255, 45, 137, 0.16), transparent 58%),
    #060606;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 3, 6, 0.08), rgba(5, 3, 6, 0.45) 46%, rgba(5, 3, 6, 0.78)),
    linear-gradient(0deg, rgba(5, 3, 6, 0.74), transparent 48%);
}

.corner {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
  filter: saturate(1.18) contrast(1.05);
}

.left-corner {
  left: -78px;
  bottom: -410px;
  width: min(56vw, 660px);
}

.right-corner {
  right: -110px;
  top: -330px;
  width: min(49vw, 610px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 52px 54px 34px;
}

.eyebrow,
.module-head a,
.promo-card span {
  color: var(--pink-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-family: var(--condensed);
  font-size: clamp(62px, 7vw, 126px);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(255, 45, 137, 0.18);
}

.hero-copy {
  max-width: 540px;
  margin-top: 20px;
  color: #ddd;
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 54px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 760px;
}

.metric {
  padding: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.35);
}

.metric strong {
  display: block;
  font-size: 19px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.stacked-promos {
  display: grid;
  gap: 10px;
}

.promo-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 175px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 8, 12, 0.85), rgba(10, 8, 12, 0.2)),
    radial-gradient(circle at 74% 34%, rgba(255, 45, 137, 0.34), transparent 12rem),
    #080808;
}

.promo-card strong {
  max-width: 270px;
  margin-top: 6px;
  font-size: 23px;
  line-height: 1.05;
  text-transform: uppercase;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(130px, 1fr));
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-card {
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 45, 137, 0.13), rgba(255, 255, 255, 0.01));
}

.category-card strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
}

.category-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 14px;
  margin-top: 14px;
}

.main-column,
.sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
}

.module,
.side-card {
  padding: 16px;
}

.module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.module-head h2 {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  color: #FF1493;
  letter-spacing: 1px;
}

.module-head.compact {
  margin-bottom: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

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

.experience-card {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at 70% 20%, rgba(255, 45, 137, 0.28), transparent 9rem),
    #080808;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background: none;
}

.experience-card > div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 148px;
  flex-direction: column;
  justify-content: flex-end;
}

.experience-card span {
  margin-bottom: auto;
  color: var(--pink-2);
  font-family: var(--condensed);
  font-size: 46px;
  line-height: 1;
}

.experience-card strong {
  font-size: 20px;
  text-transform: uppercase;
}

.experience-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.revolving-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 9px;
}

.feature-tile {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  padding: 14px;
  min-height: 100px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(145deg, rgba(255, 20, 122, 0.18), rgba(255, 20, 122, 0.06)),
    #060606;
}

.feature-tile.large {
  grid-row: span 2;
}

.feature-tile.wide {
  grid-column: span 2;
}

.feature-tile::before { display: none; }
}

.feature-tile > div {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  min-width: 0;
}

.feature-tile span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 7px;
  color: white;
  background: rgba(255, 20, 147, 0.9);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-tile strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
}

.feature-tile p {
  margin-top: 5px;
  color: #ccc;
  font-size: 12px;
  line-height: 1.5;
}

.content-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #050505;
}

.thumb {
  position: relative;
  min-height: 118px;
  background:
    linear-gradient(135deg, rgba(255, 20, 122, 0.86), rgba(255, 20, 122, 0.22)),
    linear-gradient(45deg, #342031 25%, transparent 25% 50%, #211520 50% 75%, transparent 75%);
  background-size: auto, 18px 18px;
}

.thumb::after { display: none !important; }

.content-card .card-body {
  padding: 10px;
}

.content-card h3 {
  min-height: 38px;
  font-size: 14px;
  line-height: 1.25;
}

.byline,
.card-meta,
.discussion-meta,
.activity-item span,
.rank-points {
  color: #ccc;
  font-size: 12px;
  line-height: 1.5;
}

.byline {
  margin-top: 4px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid var(--line-soft);
}

.split-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.creator-card {
  min-height: 160px;
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 6px;
  overflow: hidden;
  border: 3px solid #FF1493 !important;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92)),
    radial-gradient(circle at 50% 32%, rgba(255, 105, 184, 0.55), transparent 5rem),
    #090909;
}

.creator-card strong,
.rank-list strong {
  display: block;
  font-size: 13px;
}

.creator-card span {
  color: var(--pink-2);
  font-size: 11px;
}

.discussion-list,
.activity-grid,
.rank-list {
  display: grid;
  gap: 0;
}

.discussion-item,
.activity-item,
.rank-list li {
  display: grid;
  gap: 3px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: transparent;
}

.discussion-item {
  display: block;
}

.discussion-item strong {
  font-size: 13px;
}

.heat { display: none; }

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

.activity-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: #FF69B4;
}

.sidebar {
  min-width: 0;
}

.stats h2 {
  margin-bottom: 12px;
  color: var(--pink-2);
  font-size: 14px;
  text-transform: uppercase;
}

#statsGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.stat-cell {
  padding: 11px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.01);
}

.stat-cell strong {
  display: block;
  font-size: 18px;
}

.stat-cell span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.side-ad {
  min-height: 250px;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}

.rank-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: ranks;
}

.rank-list li {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  counter-increment: ranks;
}

.rank-list li::before {
  content: counter(ranks);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: white;
  border: 1px solid var(--line-soft);
  background: rgba(255, 45, 137, 0.18);
  font-size: 11px;
  font-weight: 900;
}

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

.tag-cloud a {
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.05);
  color: #e9d9e2;
  font-size: 12px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr minmax(280px, 360px);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 28px;
  border-right: 0;
  border-left: 0;
}

.site-footer img {
  width: 150px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}

.site-footer p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer nav a {
  color: #d5c5cf;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.newsletter label {
  color: var(--pink-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr 100px;
  border: 1px solid var(--line-soft);
}

.newsletter input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: white;
  background: rgba(255, 255, 255, 0.035);
  padding: 12px;
  font-size: 13px;
}

@media (max-width: 1380px) {
  .topbar {
    grid-template-columns: 190px 1fr minmax(220px, 320px);
  }

  .account-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .stacked-promos {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 980px) {
  .topbar {
    position: static;
    grid-template-columns: 1fr;
    padding: 12px 16px;
  }

  .brand img {
    width: 220px;
  }

  main {
    padding: 0 14px 18px;
  }

  .hero-content {
    padding: 34px 24px 166px;
  }

  .hero-metrics {
    right: 16px;
    left: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .left-corner {
    width: 620px;
    left: -250px;
  }

  .right-corner {
    width: 520px;
    right: -260px;
  }

  .card-grid,
  .experience-grid,
  .revolving-grid,
  .creator-row,
  .activity-grid,
  .split-module,
  .sidebar,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .revolving-grid {
    grid-auto-rows: minmax(132px, auto);
  }

  .feature-tile.large,
  .feature-tile.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .stacked-promos {
    grid-template-columns: 1fr;
  }
}

/* Color and density correction: no gray/purple surfaces, compact bottom rows. */
:root {
  --bg: #000;
  --panel: #050505;
  --panel-2: #090909;
  --panel-3: #0c0006;
  --line: #ff147a;
  --line-soft: rgba(255, 20, 122, 0.42);
  --text: #fff;
  --muted: #fff;
  --dim: #ff147a;
  --pink: #ff147a;
  --pink-2: #ff3c97;
  --green: #b7ff00;
  --amber: #ff147a;
  --violet: #FF1493;
}

body,
.page-shell,
.topbar,
main,
.splash-dashboard,
.dashboard-main,
.sidebar,
.module,
.side-card,
.promo-card,
.hero-panel,
.content-card,
.feature-tile,
.creator-card,
.discussion-item,
.activity-item,
.category-card,
.stat-cell,
.rank-list li,
.se-spot,
.site-footer,
.search,
.newsletter div,
.newsletter input,
.search input {
  background-color: #000 !important;
  color: #fff !important;
}

.module,
.side-card,
.promo-card,
.hero-panel,
.content-card,
.feature-tile,
.creator-card,
.discussion-item,
.activity-item,
.category-card,
.stat-cell,
.rank-list li,
.se-spot,
.search,
.newsletter div,
.site-footer {
  border-color: rgba(255, 20, 122, 0.62) !important;
  box-shadow: 0 0 0 1px rgba(255, 20, 122, 0.08) inset, 0 10px 30px rgba(0, 0, 0, 0.75) !important;
}

.module,
.side-card {
  padding: 10px !important;
}

.module-head {
  margin-bottom: 8px !important;
}

.module-head h2,
.stats h2,
.category-card strong,
.promo-card span,
.module-head a,
.eyebrow,
.feature-tile span,
.DISABLED_thumb_after,
.heat,
.rank-list li::before {
  color: #ff147a !important;
}

.module-head h2,
.stats h2 {
  font-size: 13px !important;
  line-height: 1 !important;
}

p,
.hero-copy,
.promo-card p,
.byline,
.card-meta,
.discussion-meta,
.activity-item span,
.rank-points,
.stat-cell span,
.metric span,
.site-footer p,
.site-footer nav a,
.content-card h3,
.discussion-item strong,
.activity-item strong,
.creator-card strong,
.rank-list strong {
  color: #fff !important;
}

.se-spot {
  color: #ff147a !important;
}

.tag-cloud a {
  color: #fff !important;
  border-color: rgba(255, 20, 122, 0.7) !important;
  background: #050005 !important;
}

.solid-button,
.newsletter button,
.search button {
  color: #fff !important;
  background: #ff147a !important;
}

.ghost-button,
.hero-sub-actions a {
  color: #fff !important;
  background: #050005 !important;
  border-color: rgba(255, 20, 122, 0.72) !important;
}

.portal-row-bottom {
  align-items: start !important;
}

.portal-row-bottom .module {
  align-self: start !important;
}

.activity-grid,
.discussion-list,
.revolving-grid,
.rank-list {
  gap: 6px !important;
}

.activity-item,
.discussion-item,
.feature-tile,
.rank-list li {
  min-height: 0 !important;
  padding: 7px 8px !important;
}

.feature-tile {
  display: block !important;
}

.feature-tile > div {
  align-self: auto !important;
}

.feature-tile span {
  margin-bottom: 4px !important;
  padding: 2px 5px !important;
  color: #fff !important;
  background: #ff147a !important;
}

.feature-tile strong,
.discussion-item strong,
.activity-item strong {
  font-size: 11px !important;
  line-height: 1.2 !important;
}

.feature-tile p,
.discussion-meta,
.activity-item span {
  display: block !important;
  margin-top: 2px !important;
  font-size: 9px !important;
  line-height: 1.2 !important;
}

.squeaks-module .feature-tile p {
  display: none !important;
}

.activity-board .activity-grid {
  grid-template-columns: 1fr !important;
}

.forum-module .discussion-item {
  grid-template-columns: 1fr auto !important;
}

.card-grid {
  gap: 6px !important;
}

.content-card .card-body {
  padding: 7px !important;
}

.content-card h3 {
  min-height: 28px !important;
  font-size: 11px !important;
}

.thumb {
  min-height: 86px !important;
}

.creator-card {
  min-height: 112px !important;
  padding: 9px !important;
}

.side-ad {
  min-height: 128px !important;
}

#statsGrid {
  gap: 6px !important;
}

.stat-cell {
  padding: 8px !important;
}

.stat-cell strong {
  font-size: 15px !important;
}

.stat-cell span {
  font-size: 8px !important;
}

.rank-list li::before {
  background: #ff147a !important;
  color: #fff !important;
  border-color: #ff147a !important;
}

.metric,
.experience-card {
  background: #050005 !important;
}

/* Reference layout correction for desktop/laptop widths. */
@media (min-width: 1120px) {
  .topbar {
    grid-template-columns: 205px minmax(430px, 1fr) minmax(290px, 370px) 230px !important;
    align-items: center !important;
    min-height: 58px !important;
    padding: 6px 28px !important;
  }

  .brand img {
    width: 176px !important;
    height: 46px !important;
  }

  .primary-nav {
    gap: 13px !important;
    overflow: visible !important;
  }

  .primary-nav a {
    font-size: 10px !important;
    padding: 18px 0 15px !important;
  }

  .account-actions {
    grid-column: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 10px !important;
  }

  .account-actions .solid-button,
  .account-actions .ghost-button {
    min-width: 100px !important;
    min-height: 30px !important;
  }

  .search {
    height: 31px !important;
    grid-template-columns: 1fr 72px !important;
  }

  .splash-dashboard {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 330px !important;
    gap: 10px !important;
    align-items: start !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 8px !important;
  }

  .sidebar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .portal-row-top {
    display: grid !important;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr) !important;
    gap: 8px !important;
  }

  .portal-row-bottom {
    display: grid !important;
    grid-template-columns: minmax(230px, 0.88fr) minmax(280px, 1.05fr) minmax(250px, 0.9fr) !important;
    gap: 8px !important;
  }
}

.top-ad {
  height: 34px !important;
  min-height: 34px !important;
}

.hero-panel {
  min-height: 278px !important;
  background-size: auto, 470px auto, auto !important;
}

.hero-content {
  width: min(530px, 60%) !important;
  margin-left: 40% !important;
  padding: 30px 24px 24px !important;
}

h1 {
  font-size: clamp(50px, 5vw, 82px) !important;
}

.stacked-promos {
  gap: 8px !important;
}

.promo-card {
  min-height: 135px !important;
  padding: 16px !important;
}

.promo-card strong {
  font-size: 24px !important;
}

.category-strip {
  gap: 6px !important;
  margin-top: 8px !important;
}

.category-card {
  min-height: 54px !important;
  padding: 9px !important;
}

.module,
.side-card {
  padding: 9px !important;
}

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

.thumb {
  min-height: 78px !important;
}

.content-card h3 {
  min-height: 24px !important;
  font-size: 10px !important;
}

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

.creator-card {
  min-height: 112px !important;
}

.activity-item,
.discussion-item {
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 42px !important;
  padding: 6px 8px !important;
  border-bottom: 1px solid rgba(255, 20, 122, 0.28) !important;
}

.activity-item div,
.discussion-item div {
  min-width: 0 !important;
}

.feed-avatar {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  border: 1px solid #ff147a !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 55% 35%, rgba(255, 60, 151, 0.9), transparent 36%),
    #120007 !important;
  box-shadow: 0 0 10px rgba(255, 20, 122, 0.28) !important;
}

.activity-item strong,
.discussion-item strong,
.feature-tile strong {
  display: block !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.activity-item span:not(.feed-avatar),
.discussion-meta,
.feature-tile p {
  color: #fff !important;
  opacity: 0.9 !important;
}

.revolving-grid {
  gap: 5px !important;
}

.feature-tile {
  min-height: 42px !important;
  padding: 6px 8px !important;
}

.feature-tile span {
  font-size: 8px !important;
}

.side-ad {
  height: 145px !important;
  min-height: 145px !important;
}

.square-ad {
  height: 180px !important;
  min-height: 180px !important;
}

.tall-ad {
  height: 260px !important;
  min-height: 260px !important;
}

.stats {
  padding-bottom: 8px !important;
}

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

.stat-cell {
  padding: 6px !important;
}

.tag-cloud {
  gap: 5px !important;
}

.tag-cloud a {
  padding: 5px 8px !important;
  border-radius: 3px !important;
  font-size: 9px !important;
}

@media (max-width: 1119px) {
  .hero-content {
    width: auto !important;
    margin-left: 0 !important;
  }

  .splash-dashboard,
  .hero-grid,
  .portal-row-top,
  .portal-row-bottom {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .search,
  .newsletter div {
    grid-template-columns: 1fr;
  }

  .account-actions,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .solid-button,
  .ghost-button {
    padding-inline: 12px;
  }

  h1 {
    font-size: 60px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .category-strip {
    grid-template-columns: repeat(8, 142px);
  }
}

/* Splash-reference restyle: compact black/magenta directory chrome. */
:root {
  --bg: #050505;
  --panel: #101010;
  --panel-2: #151015;
  --panel-3: #1b1018;
  --line: rgba(255, 24, 125, 0.58);
  --line-soft: rgba(255, 255, 255, 0.12);
  --text: #f5edf2;
  --muted: #a69ca3;
  --dim: #6e646b;
  --pink: #ff147a;
  --pink-2: #ff3f9b;
  --violet: #FF1493;
  --shadow: 0 14px 50px rgba(0, 0, 0, 0.76);
}

body {
  background:
    linear-gradient(rgba(255, 20, 122, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 20, 122, 0.014) 1px, transparent 1px),
    radial-gradient(circle at 18% 5%, rgba(255, 20, 122, 0.12), transparent 34rem),
    radial-gradient(circle at 78% 2%, rgba(255, 20, 122, 0.08), transparent 28rem),
    #050505;
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
}


::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #FF1493; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #FF69B4; }
* { scrollbar-width: thin; scrollbar-color: #FF1493 #000; }

body::before {
  opacity: 0.34;
  background:
    radial-gradient(circle at 16% 42%, rgba(255, 20, 122, 0.08), transparent 18rem),
    radial-gradient(circle at 84% 62%, rgba(255, 20, 122, 0.06), transparent 22rem);
  mask-image: none;
}

.topbar {
  min-height: 66px;
  padding: 8px 32px;
  border-bottom-color: rgba(255, 20, 122, 0.2);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(8, 8, 9, 0.94));
  box-shadow: 0 1px 0 rgba(255, 20, 122, 0.18), 0 16px 40px rgba(0, 0, 0, 0.66);
}

.brand img {
  width: 178px;
  height: 52px;
  filter: saturate(1.45) contrast(1.15) drop-shadow(0 0 16px rgba(255, 20, 122, 0.48));
}

.primary-nav {
  gap: 14px;
}

.primary-nav a {
  padding: 22px 0 18px;
  color: #f0e7ed;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.primary-nav a.active {
  color: var(--pink);
}

.primary-nav a.active::after,
.primary-nav a:hover::after {
  right: 0;
  left: 0;
  bottom: 12px;
  background: var(--pink);
}

.search {
  height: 32px;
  border-color: rgba(255, 255, 255, 0.14);
  background: #0d0d0f;
}

.search input {
  padding: 8px 12px;
  font-size: 11px;
}

.search button {
  font-size: 0;
}

.search button::before {
  content: "Search";
  font-size: 10px;
}

.solid-button,
.ghost-button {
  min-height: 34px;
  border-radius: 2px;
  border-color: rgba(255, 20, 122, 0.72);
  font-size: 11px;
  letter-spacing: 0.8px;
}

.solid-button {
  background: linear-gradient(180deg, #ff2b88, #f00f70);
  box-shadow: 0 0 22px rgba(255, 20, 122, 0.24);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.01);
}

main {
  padding: 0 28px 10px;
}

.se-spot {
  min-height: 34px;
  border-color: rgba(255, 20, 122, 0.34);
  color: #9b8f97;
  background:
    linear-gradient(90deg, transparent 3%, rgba(255, 20, 122, 0.08), transparent 97%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px),
    #0d0d0e;
  font-size: 13px;
  letter-spacing: 7px;
}

.top-ad {
  width: min(1280px, 100%);
  margin: 8px auto;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 10px;
}

.hero-panel,
.promo-card,
.module,
.side-card,
.site-footer {
  border-color: rgba(255, 20, 122, 0.28);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.012)),
    #0d0d0e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.035) inset, 0 18px 46px rgba(0, 0, 0, 0.54);
}

.hero-panel {
  min-height: 304px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.15), rgba(5, 5, 5, 0.84) 58%, rgba(5, 5, 5, 0.94)),
    radial-gradient(circle at 22% 42%, rgba(255, 20, 122, 0.5), transparent 17rem),
    linear-gradient(135deg, rgba(255, 20, 122, 0.2), transparent 48%),
    #100a0f;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  
  background-size: 420px auto;
  background-position: 4% 38%;
  background-repeat: no-repeat;
  filter: saturate(1.35) contrast(1.08);
}

.hero-panel::after {
  background:
    linear-gradient(90deg, transparent 0 30%, rgba(5, 5, 5, 0.7) 54%, rgba(5, 5, 5, 0.96)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.86), transparent 58%);
}

.corner {
  opacity: 0.38;
  filter: saturate(1.35) contrast(1.1);
}

.left-corner {
  left: -250px;
  bottom: -560px;
  width: 760px;
}

.right-corner {
  right: -250px;
  top: -390px;
  width: 690px;
}

.hero-content {
  max-width: 650px;
  margin-left: 42%;
  padding: 38px 34px 92px;
}

.eyebrow,
.module-head a,
.promo-card span {
  color: #ff9bc6;
  font-size: 12px;
  letter-spacing: 4px;
}

h1 {
  max-width: 560px;
  color: #fff5f8;
  font-family: Impact, "Bebas Neue", sans-serif;
  font-size: clamp(54px, 5.4vw, 86px);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(255, 20, 122, 0.24);
}

h1 span {
  display: block;
  color: var(--pink);
  font-style: italic;
}

.hero-copy {
  max-width: 500px;
  margin-top: 12px;
  color: #d6cbd2;
  font-size: 14px;
  line-height: 1.45;
}

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

.large {
  min-height: 36px;
  padding-inline: 28px;
}

.hero-metrics {
  right: 18px;
  bottom: 14px;
  left: 42%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  padding: 9px 10px;
  border-color: rgba(255, 20, 122, 0.24);
  background: rgba(0, 0, 0, 0.46);
}

.metric strong {
  color: #fff;
  font-size: 17px;
}

.metric span {
  color: #b9aeb5;
  font-size: 9px;
  letter-spacing: 0.8px;
}

.stacked-promos {
  gap: 10px;
}

.promo-card {
  min-height: 147px;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(8, 8, 9, 0.98), rgba(8, 8, 9, 0.48)),
    radial-gradient(circle at 80% 30%, rgba(255, 20, 122, 0.36), transparent 10rem),
    #0e0e10;
}

.promo-card.daily {
  background-image:
    linear-gradient(90deg, rgba(8, 8, 9, 0.98), rgba(8, 8, 9, 0.36)),
    url("../Home%20_%20Sissy%20Exposed_files/profile-1777187104-f7f41c2d.jpeg");
  background-size: auto, cover;
  background-position: center;
}

.promo-card.community {
  background-image:
    linear-gradient(90deg, rgba(8, 8, 9, 0.98), rgba(8, 8, 9, 0.42)),
    url("../Home%20_%20Sissy%20Exposed_files/1777816057-38dab51c.png");
  background-size: auto, cover;
  background-position: center;
}

.promo-card strong {
  max-width: 250px;
  color: #fff;
  font-size: 23px;
}

.category-strip {
  margin-top: 10px;
  grid-template-columns: repeat(8, minmax(132px, 1fr));
}

.category-card {
  min-height: 60px;
  border-color: rgba(255, 20, 122, 0.42);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 20, 122, 0.16), rgba(255, 20, 122, 0.035)),
    #101011;
}

.category-card strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.category-card span {
  font-size: 10px;
}

.content-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 12px;
  margin-top: 10px;
}

.main-column,
.sidebar {
  gap: 10px;
}

.module,
.side-card {
  padding: 12px;
}

.module-head {
  margin-bottom: 10px;
}

.module-head h2,
.stats h2 {
  color: var(--pink);
  font-size: 14px;
  letter-spacing: 1.5px;
}

.module-head a {
  font-size: 10px;
  letter-spacing: 1.4px;
}

.experience-grid,
.card-grid {
  gap: 8px;
}

.experience-card,
.content-card,
.feature-tile,
.creator-card,
.discussion-item,
.activity-item,
.rank-list li,
.stat-cell {
  border-color: rgba(255, 20, 122, 0.34);
  border-radius: 2px;
  background-color: #0e0e10;
}

.experience-card {
  min-height: 132px;
  padding: 14px;
}

.experience-card > div {
  min-height: 104px;
}

.experience-card span {
  color: var(--pink);
  font-size: 32px;
  text-shadow: 0 0 20px rgba(255, 20, 122, 0.35);
}

.experience-card strong {
  color: white;
  font-size: 16px;
}

.experience-card p {
  color: #b5aab1;
  font-size: 11px;
}

.thumb {
  min-height: 102px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88)),
    url("../Home%20_%20Sissy%20Exposed_files/1777831731-68b3ceeb.jpg");
  background-size: cover;
  background-position: center;
}






.thumb::after {
  top: 6px;
  left: 6px;
  border-radius: 1px;
  background: var(--pink);
  font-size: 9px;
  letter-spacing: 0.6px;
}

.content-card .card-body {
  padding: 8px;
}

.content-card h3 {
  min-height: 34px;
  color: white;
  font-size: 12px;
}

.byline,
.card-meta,
.discussion-meta,
.activity-item span,
.rank-points {
  font-size: 10px;
}

.revolving-grid {
  grid-auto-rows: 118px;
  gap: 8px;
}

.feature-tile {
  padding: 12px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at 78% 20%, rgba(255, 20, 122, 0.3), transparent 9rem),
    #0e0e10;
}

.feature-tile strong {
  color: white;
  font-size: 15px;
}

.feature-tile p {
  color: #b5aab1;
  font-size: 11px;
}

.creator-card {
  min-height: 132px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9)),
    url("../Home%20_%20Sissy%20Exposed_files/profile-1774763919-86f73fe6.jpeg");
  background-size: cover;
  background-position: center;
}

.creator-card:nth-child(2) {  }
.creator-card:nth-child(3) {  }
.creator-card:nth-child(4) {  }

.creator-card strong,
.rank-list strong {
  color: white;
  font-size: 12px;
}

.creator-card span {
  color: var(--pink-2);
  font-size: 10px;
}

.discussion-item,
.activity-item,
.rank-list li {
  padding: 9px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)), #0d0d0f;
}

.discussion-item strong,
.activity-item strong {
  color: #f4edf1;
  font-size: 12px;
}

.heat {
  color: var(--pink);
  font-size: 11px;
}

.side-ad {
  min-height: 150px;
  color: #91868e;
}

#statsGrid {
  gap: 7px;
}

.stat-cell {
  padding: 10px;
  background: #0d0d0f;
}

.stat-cell strong {
  color: white;
  font-size: 17px;
}

.stat-cell span {
  color: #b5aab1;
  font-size: 9px;
}

.tag-cloud a {
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: linear-gradient(180deg, #343438, #1f1f22);
  color: #f0e7ed;
  font-size: 11px;
}

.site-footer {
  margin-top: 10px;
  padding: 16px 28px;
  background: linear-gradient(180deg, rgba(20, 20, 22, 0.95), rgba(6, 6, 7, 0.98));
}

.site-footer img {
  width: 128px;
  filter: saturate(1.45) contrast(1.1) drop-shadow(0 0 12px rgba(255, 20, 122, 0.4));
}

@media (max-width: 1380px) {
  .hero-content {
    margin-left: 30%;
  }

  .hero-metrics {
    left: 30%;
  }
}

@media (max-width: 980px) {
  .hero-content {
    margin-left: 0;
    padding: 34px 24px 166px;
  }

  .hero-metrics {
    left: 16px;
  }

  .hero-panel::before {
    opacity: 0.12;
    background-position: center;
  }
}

/* Final splash lock: black + hot pink, compact, no panel bleed. */
:root {
  --bg: #020202;
  --panel: #090909;
  --panel-2: #0d0b0c;
  --panel-3: #13070d;
  --line: rgba(255, 20, 122, 0.78);
  --line-soft: rgba(255, 20, 122, 0.24);
  --text: #fff7fb;
  --muted: #b8a9b1;
  --dim: #796b72;
  --pink: #ff147a;
  --pink-2: #ff3c97;
  --violet: #FF1493;
  --green: #ff147a;
  --amber: #ff147a;
}

html,
body {
  background: #020202 !important;
}

body {
  color: var(--text);
  background-image:
    radial-gradient(circle at 15% 0%, rgba(255, 20, 122, 0.13), transparent 28rem),
    radial-gradient(circle at 78% 8%, rgba(255, 20, 122, 0.09), transparent 24rem),
    linear-gradient(#020202, #020202) !important;
}


::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #FF1493; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #FF69B4; }
* { scrollbar-width: thin; scrollbar-color: #FF1493 #000; }

body::before {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 20, 122, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 20, 122, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.page-shell,
main,
.splash-dashboard,
.dashboard-main,
.sidebar,
.hero-grid,
.portal-row,
.module,
.side-card,
.promo-card,
.hero-panel,
.content-card,
.feature-tile,
.creator-card,
.discussion-item,
.activity-item,
.category-card,
.stat-cell,
.rank-list li {
  min-width: 0;
}

.module,
.side-card,
.promo-card,
.hero-panel,
.content-card,
.feature-tile,
.creator-card,
.discussion-item,
.activity-item,
.category-card,
.stat-cell,
.rank-list li,
.se-spot,
.topbar,
.site-footer {
  overflow: hidden;
  border-color: var(--line-soft) !important;
  background-color: #090909 !important;
}

.topbar {
  grid-template-columns: 210px minmax(520px, 1fr) minmax(260px, 360px) auto;
  gap: 18px;
  background: #030303 !important;
}

.brand img,
.site-footer img {
  filter: hue-rotate(-18deg) saturate(2.2) contrast(1.25) brightness(1.08) drop-shadow(0 0 18px rgba(255, 20, 122, 0.58));
}

.search,
.newsletter div {
  border-color: rgba(255, 20, 122, 0.32);
  background: #090909;
}

.search button,
.newsletter button,
.solid-button {
  background: linear-gradient(180deg, #ff2e8b, #f0066a) !important;
}

.splash-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 12px;
  align-items: start;
}

.dashboard-main {
  display: grid;
  gap: 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 10px;
}

.hero-panel {
  position: relative !important;
  min-height: 480px !important;
  border: 1px solid var(--line-soft);
  background-color: #070707 !important;
  background-image: url("/uploads/mistress-hexi-portrait.jpeg") !important;
  background-size: cover !important;
  background-position: left 30% !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}
.hero-panel::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  /* Light overlay - lets Hexi photo show through clearly, only darkens far right */
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 80%, rgba(0,0,0,0.88) 100%) !important;
  pointer-events: none !important;
  opacity: 1 !important;
  filter: none !important;
}
.hero-panel::after { display: none !important; }
.hero-panel > * { position: relative !important; z-index: 1 !important; }
/* Goddess profile gets HER avatar as the hero background (override design system) */
body.page-goddess-profile .hero-panel {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.85)),
    url("/uploads/goddess-avatar-1776161658.jpg"),
    #070707 !important;
}

.hero-panel::before,
.hero-panel::after {
  content: none !important;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, 58%);
  margin-left: 43%;
  padding: 36px 26px 26px;
}

h1 {
  font-size: clamp(58px, 5.5vw, 96px);
  line-height: 0.86;
  color: #fff6fa;
}

h1 span {
  color: var(--pink) !important;
}

.hero-copy {
  color: #e4d7de;
  font-size: 13px;
}

.hero-sub-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.hero-sub-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 18px;
  border: 1px solid rgba(255, 20, 122, 0.32);
  color: #d7cbd2;
  background: rgba(255, 255, 255, 0.02);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card {
  min-height: 147px;
  border: 1px solid var(--line-soft);
}

.promo-card span,
.module-head h2,
.stats h2,
.module-head a,
.category-card strong,
.creator-card span,
.heat {
  color: var(--pink) !important;
}

.promo-card strong {
  color: #fff;
  font-family: Impact, "Bebas Neue", sans-serif;
  font-size: 28px;
  line-height: 0.98;
  letter-spacing: 0.6px;
}

.promo-card p {
  max-width: 245px;
  margin-top: 8px;
  color: #d8cbd2;
  font-size: 12px;
  line-height: 1.35;
}

.category-strip {
  grid-template-columns: repeat(8, minmax(128px, 1fr));
}

.category-card {
  min-height: 58px;
  background:
    linear-gradient(180deg, rgba(255, 20, 122, 0.18), rgba(255, 20, 122, 0.035)),
    #0b0b0b !important;
}

.second-ad {
  margin: 0;
  width: 100%;
}

.portal-row {
  display: grid;
  gap: 10px;
}

.portal-row-top {
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.9fr);
}

.portal-row-bottom {
  grid-template-columns: minmax(250px, 0.85fr) minmax(280px, 1fr) minmax(260px, 0.9fr);
}

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

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

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

.revolving-grid {
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
}

.feature-tile,
.activity-item,
.discussion-item {
  min-height: 52px;
}

.feature-tile.large,
.feature-tile.wide {
  grid-row: auto;
  grid-column: auto;
}

.feature-tile p {
  display: none;
}

.feature-tile strong,
.discussion-item strong,
.activity-item strong,
.content-card h3 {
  overflow-wrap: anywhere;
}

.sidebar {
  display: grid;
  gap: 10px;
}

.side-ad {
  min-height: 150px;
}

.site-footer {
  border-color: rgba(255, 20, 122, 0.22) !important;
  background: #060606 !important;
}

@media (max-width: 1380px) {
  .splash-dashboard,
  .hero-grid,
  .portal-row-top,
  .portal-row-bottom {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: auto;
    margin-left: 0;
    padding: 34px 22px;
  }

  .hero-panel {
    background-position: center !important;
  }

  .card-grid,
  .creator-row,
  .sidebar {
    grid-template-columns: 1fr;
  }
}

/* Final test-page chrome lock: SEO text brand, compact reference menu, no purple. */
:root {
  --bg: #000;
  --panel: #050505;
  --panel-2: #050505;
  --panel-3: #050005;
  --line: #FF1493;
  --line-soft: rgba(255,20,147,0.55);
  --text: #fff;
  --muted: #fff;
  --dim: #FF1493;
  --pink: #FF1493;
  --pink-2: #FF1493;
  --violet: #FF1493;
  --green: #b7ff00;
  --amber: #FF1493;
}

body,
.page-shell,
main,
.topbar,
.module,
.side-card,
.promo-card,
.hero-panel,
.content-card,
.creator-card,
.feature-tile,
.discussion-item,
.activity-item,
.category-card,
.stat-cell,
.rank-list li,
.se-spot,
.site-footer,
.search,
.search input,
.newsletter input {
  background-color: #000 !important;
  color: #fff !important;
}

.topbar {
  position: sticky !important;
  top: 0 !important;
  display: grid !important;
  grid-template-columns: 200px minmax(0, 1fr) minmax(220px, 320px) auto !important;
  min-height: 60px !important;
  gap: 14px !important;
  padding: 8px 24px !important;
  border-bottom: 1px solid rgba(255,20,147,0.55) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,0.85) !important;
}

.brand span {
  display: inline-block !important;
  color: #FF1493 !important;
  font-size: 28px !important;
  line-height: 1 !important;
  text-shadow: 0 0 14px rgba(255,20,147,0.68) !important;
  white-space: nowrap !important;
}

.primary-nav {
  display: flex !important;
  gap: 14px !important;
  min-width: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  align-items: center !important;
  scrollbar-width: none !important;
}
.primary-nav::-webkit-scrollbar { display: none !important; }

.primary-nav a {
  color: #fff !important;
  padding: 18px 0 15px !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: #FF1493 !important;
}

.primary-nav a.active::after,
.primary-nav a:hover::after {
  right: 0 !important;
  left: 0 !important;
  bottom: 9px !important;
  background: #FF1493 !important;
}

.search {
  height: 32px !important;
  border: 1px solid rgba(255,20,147,0.72) !important;
  grid-template-columns: 1fr 72px !important;
}

.search button,
.solid-button,
.newsletter button {
  background: #FF1493 !important;
  border-color: #FF1493 !important;
  color: #fff !important;
}

.ghost-button {
  background: #050005 !important;
  border-color: rgba(255,20,147,0.72) !important;
  color: #fff !important;
}

.module,
.side-card,
.promo-card,
.hero-panel,
.content-card,
.creator-card,
.feature-tile,
.discussion-item,
.activity-item,
.category-card,
.stat-cell,
.rank-list li,
.se-spot,
.site-footer {
  border: 1px solid rgba(255,20,147,0.55) !important;
  border-radius: 3px !important;
  box-shadow: 0 0 0 1px rgba(255,20,147,0.08) inset, 0 10px 28px rgba(0,0,0,0.72) !important;
  overflow: hidden !important;
}

.module-head h2,
.stats h2,
.promo-card span,
.category-card strong,
.module-head a,
.feature-tile span,
.heat,
h1 span,
.eyebrow {
  color: #FF1493 !important;
}

p,
span,
li,
.hero-copy,
.byline,
.card-meta,
.discussion-meta,
.activity-item span,
.rank-points,
.stat-cell span,
.site-footer a,
.site-footer p {
  color: #fff !important;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr !important;
  }
  .primary-nav {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
}

/* === HERO HEXI IMAGE FIX === */
/* Must come last to beat all prior background-color: #000 overrides */
.hero-panel {
  background:
    linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.65) 65%, rgba(0,0,0,0.92) 100%),
    url("/uploads/mistress-hexi-portrait.jpeg") left 30% / cover no-repeat,
    #070707 !important;
}
.hero-panel::before,
.hero-panel::after {
  content: none !important;
}

